@font-face {
  font-family: "Astromax";
  src: url("/assets/fonts/astromax.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-0: #040615;
  --bg-1: #100d34;
  --bg-2: #1c1750;
  --panel: rgba(16, 12, 39, 0.76);
  --panel-strong: rgba(23, 18, 51, 0.86);
  --panel-solid: rgba(12, 9, 31, 0.92);
  --line: rgba(160, 132, 255, 0.22);
  --line-strong: rgba(205, 190, 255, 0.2);
  --text: #f4f7ff;
  --muted: #cdc8ea;
  --muted-strong: #ece5ff;
  --violet: #a084ff;
  --violet-strong: #855fff;
  --violet-soft: #e1d4ff;
  --gold: #ffe600;
  --gold-soft: #fff07a;
  --danger: #ff9dac;
  --success: #aaffc3;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --radius-hero-left: 34px 34px 34px 124px;
  --radius-hero-right: 34px 124px 34px 34px;
  --radius-panel: 30px;
  --radius-card: 24px;
  --container: 1180px;
  --body-font: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  --title-font: "Astromax", "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--body-font);
  color: var(--text);
  background-color: var(--bg-0);
}

[hidden] {
  display: none !important;
}

.page-background-image {
  position: fixed;
  inset: 0;
  background: url("/assets/images/SpaceLegends.png") center top / cover no-repeat;
  opacity: 0.98;
  filter: brightness(0.46) saturate(1.04) contrast(1.08);
  transition:
    opacity 0.28s ease-out,
    filter 0.28s ease-out;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.page-background-effects {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.shooting-star {
  position: absolute;
  top: -16vh;
  right: -14vw;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transform-origin: center center;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.72));
}

.shooting-star::before,
.shooting-star::after {
  content: "";
  position: absolute;
}

.shooting-star::before {
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.94),
    0 0 28px rgba(255, 255, 255, 0.6);
}

.shooting-star::after {
  top: 50%;
  left: 50%;
  width: clamp(140px, 15vw, 230px);
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  transform-origin: 0% 50%;
  transform: translate(0, -50%) rotate(-45deg) scaleX(0.14);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.34) 46%, rgba(255, 255, 255, 0));
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.32);
}

.shooting-star.is-active {
  animation: estrela-cadente 0.88s cubic-bezier(0.12, 0.72, 0.28, 1) forwards;
}

.shooting-star.is-active::before {
  animation: estrela-cadente-nucleo 0.88s ease-out forwards;
}

.shooting-star.is-active::after {
  animation: estrela-cadente-cauda 0.88s cubic-bezier(0.12, 0.72, 0.28, 1) forwards;
}

@keyframes estrela-cadente {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.88);
  }

  8% {
    opacity: 1;
  }

  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(-94vw - 260px), calc(90vh + 180px), 0) scale(1);
  }
}

@keyframes estrela-cadente-nucleo {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  12% {
    opacity: 1;
    transform: scale(1.04);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.92);
  }
}

@keyframes estrela-cadente-cauda {
  0% {
    opacity: 0;
    transform: translate(0, -50%) rotate(-45deg) scaleX(0.14);
  }

  16% {
    opacity: 1;
    transform: translate(0, -50%) rotate(-45deg) scaleX(0.62);
  }

  58% {
    opacity: 1;
    transform: translate(0, -50%) rotate(-45deg) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translate(0, -50%) rotate(-45deg) scaleX(0.34);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 2;
}

body.page-loading .page-shell {
  opacity: 0;
  transform: translateY(20px) scale(0.992);
}

body.page-ready .page-shell,
body:not(.page-loading) .page-shell {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-leaving .page-shell {
  opacity: 0;
  transform: translateY(10px) scale(0.994);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 9, 31, 0.72);
  border-bottom: 1px solid rgba(160, 132, 255, 0.12);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1;
}

.brand-mark {
  width: 58px;
  height: 58px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(160, 132, 255, 0.3))
    drop-shadow(0 0 28px rgba(255, 230, 0, 0.08));
}

.brand-kicker,
.eyebrow,
.panel-kicker,
.feature-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--violet-soft);
}

.brand-title {
  display: block;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: 1.06rem;
  letter-spacing: 0.09em;
  color: var(--gold);
  line-height: 0.96;
}

.hero-copy .eyebrow,
.hero-panel .panel-kicker,
.transmission-card > .eyebrow {
  display: block;
  width: 100%;
  text-align: center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3rem;
}

.nav-link {
  position: relative;
  color: var(--muted);
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--violet-soft), transparent);
  transition: transform 0.24s ease;
}

.nav-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link-legal {
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 14px rgba(255, 230, 0, 0.54);
}

.nav-link-legal::after {
  background: linear-gradient(90deg, transparent, rgba(255, 230, 0, 0.9), transparent);
}

.nav-link-legal:hover {
  color: #fff6a8;
}

.accent-link {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.accent-link:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 230, 0, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #fff173, #ffe600 42%, #ffcf28);
  color: #1b1022;
  box-shadow: 0 14px 34px rgba(255, 230, 0, 0.22);
}

.button-secondary {
  background: linear-gradient(135deg, rgba(132, 92, 255, 0.22), rgba(79, 45, 205, 0.24));
  border-color: rgba(160, 132, 255, 0.26);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(84, 52, 209, 0.18);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.button-block {
  width: 100%;
}

.hero-section,
.content-section,
.cta-section,
.auth-main,
.download-main,
.error-main,
.legal-main {
  padding: 5.4rem 0;
}

.hero-section {
  padding-bottom: 3rem;
}

.feature-section {
  padding-bottom: 4.3rem;
}

#destaques.content-section {
  padding-top: 1.8rem;
}

.transmission-section {
  padding-top: 4.2rem;
  padding-bottom: 3.2rem;
}

.journey-section {
  padding-top: 2.9rem;
}

.hero-logo-stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding-inline: 1rem;
  gap: 1rem;
}

.hero-main-logo {
  width: min(100%, 760px);
  max-height: 48vh;
  aspect-ratio: 64 / 30;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(160, 132, 255, 0.24))
    drop-shadow(0 22px 48px rgba(0, 0, 0, 0.52));
}

.hero-logo-countdown {
  display: grid;
  gap: 0.55rem;
  width: min(100%, 720px);
  justify-items: center;
  text-align: center;
}

.hero-logo-countdown-title {
  margin: 0;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(0.94rem, 1.55vw, 1.32rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.hero-logo-countdown-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--muted-strong);
}

.hero-countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(100%, 620px);
}

.countdown-segment {
  min-width: 0;
  padding: 0.95rem 1rem 0.9rem;
  border-radius: 22px;
  border: 1px solid rgba(160, 132, 255, 0.22);
  background: linear-gradient(180deg, rgba(22, 18, 58, 0.76), rgba(10, 8, 28, 0.92));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.countdown-value {
  display: block;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(1.04rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.countdown-label {
  display: block;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  color: var(--muted);
}

.hero-logo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-grid,
.auth-layout,
.download-layout,
.transmission-layout {
  display: grid;
  gap: 1.35rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.92fr);
  align-items: stretch;
}

.auth-layout,
.download-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transmission-layout {
  grid-template-columns: minmax(310px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.feature-card,
.universe-card,
.journey-card,
.transmission-card,
.cta-panel,
.auth-panel,
.download-hero,
.download-panel,
.error-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 16, 48, 0.74), rgba(8, 7, 26, 0.92));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
  padding: 2.1rem;
}

.hero-copy {
  border-radius: var(--radius-hero-left);
}

.hero-panel {
  border-radius: var(--radius-hero-right);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.hero-copy,
.hero-panel,
.feature-card,
.universe-card,
.journey-card,
.transmission-card,
.stat-card,
.signal-item {
  container-type: inline-size;
}

.transmission-card,
.cta-panel,
.auth-panel,
.download-hero,
.download-panel,
.error-panel {
  border-radius: var(--radius-panel);
  padding: 1.85rem;
}

.feature-card,
.universe-card,
.journey-card {
  border-radius: var(--radius-card);
  padding: 1.45rem;
}

.hero-copy::before,
.hero-panel::before,
.feature-card::before,
.universe-card::before,
.journey-card::before,
.transmission-card::before,
.auth-panel::before,
.download-hero::before,
.download-panel::before,
.cta-panel::before,
.error-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 132, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-copy h1,
.auth-panel h1,
.download-hero h1,
.error-panel h1 {
  margin: 1rem 0 1.2rem;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(1.14rem, 2.05vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.hero-copy h1 {
  margin-inline: auto;
  font-size: clamp(1.1rem, 5.4cqi, 1.95rem);
  text-align: center;
  text-wrap: balance;
}

.transmission-card h2,
.section-heading h2,
.auth-panel h2,
.download-panel h2,
.cta-panel h2 {
  margin: 0.8rem 0 1rem;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(0.98rem, 1.72vw, 1.48rem);
  line-height: 1.16;
  letter-spacing: 0.03em;
}

.transmission-card h2 {
  margin-inline: auto;
  font-size: clamp(0.98rem, 4.8cqi, 1.48rem);
  text-align: center;
  text-wrap: balance;
}

.hero-description,
.hero-note,
.panel-text,
.section-heading p,
.feature-card p,
.universe-card p,
.journey-card p,
.transmission-card p,
.auth-panel p,
.download-hero p,
.error-panel p,
.footer-copy {
  color: var(--muted);
  line-height: 1.82;
}

.hero-note {
  max-width: 58ch;
  color: var(--muted-strong);
}

.hero-actions,
.download-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(205, 190, 255, 0.16);
  background: linear-gradient(180deg, rgba(58, 38, 118, 0.34), rgba(30, 18, 66, 0.48));
  text-align: center;
}

.hero-stats .stat-card:nth-child(4) {
  border-radius: 18px 18px 18px 86px;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(1rem, 9cqi, 1.18rem);
  color: var(--gold);
  text-align: center;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.65;
  text-align: center;
}

.panel-title {
  margin: 0.7rem 0 1rem;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(0.9rem, 4.1cqi, 1.1rem);
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-align: center;
  text-wrap: balance;
}

.signal-list {
  display: grid;
  gap: 0.8rem;
}

.signal-item {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(160, 132, 255, 0.14);
  background: rgba(7, 10, 24, 0.3);
  text-align: center;
}

.signal-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

.signal-item strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold-soft);
  font-size: clamp(0.92rem, 7cqi, 1rem);
  text-align: center;
}

.panel-signature {
  margin-top: auto;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2 {
  margin-inline: auto;
}

.section-heading p {
  margin-inline: auto;
  max-width: 62ch;
}

.section-heading-journey {
  min-height: clamp(7.5rem, 10vw, 9.25rem);
  display: grid;
  align-content: center;
  margin-bottom: 1.4rem;
}

.feature-grid,
.universe-grid,
.journey-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-grid,
.universe-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card h3,
.universe-card h3,
.journey-card h3 {
  margin: 1rem 0 0.75rem;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(0.9rem, 5.25cqi, 1rem);
  line-height: 1.28;
  letter-spacing: 0.04em;
  text-align: center;
  text-wrap: balance;
}

.feature-card,
.universe-card,
.journey-card,
.transmission-card {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.feature-card:hover,
.universe-card:hover,
.journey-card:hover,
.transmission-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 192, 255, 0.28);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
}

.feature-tag {
  color: var(--gold-soft);
  display: block;
  width: 100%;
  text-align: center;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 212px;
  height: 100%;
}

.feature-card p {
  margin-bottom: 0;
}

.feature-card-2 {
  border-radius: 24px 104px 24px 24px;
}

.feature-card-3 {
  border-radius: 24px 24px 24px 104px;
}

.transmission-card {
  align-self: stretch;
  border-radius: 32px 32px 32px 112px;
}

.transmission-card p + p {
  margin-top: 1rem;
}

.content-section-alt {
  background: linear-gradient(
    180deg,
    rgba(160, 132, 255, 0.02) 0%,
    rgba(160, 132, 255, 0.07) 24%,
    rgba(103, 71, 193, 0.05) 58%,
    rgba(160, 132, 255, 0) 100%
  );
}

.universe-card-2 {
  border-radius: 24px 104px 24px 24px;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.auth-panel-copy,
.download-panel {
  background: linear-gradient(180deg, rgba(25, 23, 66, 0.84), rgba(10, 8, 31, 0.94));
}

.bullet-list {
  margin: 1.45rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted-strong);
  line-height: 1.9;
}

.auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(160, 132, 255, 0.18);
  background: rgba(7, 10, 24, 0.7);
  color: var(--text);
}

.field input:focus {
  outline: 2px solid rgba(160, 132, 255, 0.32);
  border-color: rgba(205, 190, 255, 0.3);
}

.field-error {
  color: var(--danger);
}

.form-message {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 14px;
}

.form-message-error {
  border: 1px solid rgba(255, 157, 172, 0.2);
  background: rgba(255, 157, 172, 0.12);
  color: #ffdbe1;
}

.form-message-success {
  border: 1px solid rgba(170, 255, 195, 0.2);
  background: rgba(170, 255, 195, 0.12);
  color: #dcffe7;
}

.auth-link-row {
  margin-top: 1.2rem;
  color: var(--muted);
}

.auth-link-row a {
  color: var(--gold-soft);
}

.inline-note,
.download-note {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  line-height: 1.8;
}

.inline-note {
  background: rgba(160, 132, 255, 0.12);
  border: 1px solid rgba(160, 132, 255, 0.16);
  color: var(--muted-strong);
}

.download-note {
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 230, 0, 0.16);
  background: rgba(255, 230, 0, 0.06);
  color: var(--muted-strong);
}

.legal-layout {
  max-width: 880px;
  margin-inline: auto;
}

.legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 16, 48, 0.78), rgba(8, 7, 26, 0.94));
  box-shadow: var(--shadow);
}

.legal-card {
  border-radius: 34px 124px 34px 34px;
  padding: 2rem;
}

.legal-card-single {
  max-width: 100%;
  border-radius: 34px 124px 34px 112px;
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 132, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.legal-intro {
  text-align: center;
}

.legal-intro h1 {
  margin: 0.8rem auto 1rem;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(0.92rem, 1.45vw, 1.32rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.legal-card h2 {
  margin: 0 auto 0.85rem;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(0.8rem, 1.05vw, 0.94rem);
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-align: center;
}

.legal-intro p,
.legal-card p {
  color: var(--muted);
  line-height: 1.82;
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.legal-intro p + p,
.legal-card p + p {
  margin-top: 1rem;
}

.legal-intro p {
  margin-inline: auto;
  max-width: 72ch;
}

.legal-block {
  max-width: 78ch;
  margin: 0 auto;
  padding-top: 1.8rem;
}

.legal-block + .legal-block {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(160, 132, 255, 0.14);
}

.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted-strong);
  line-height: 1.9;
}

.legal-block .legal-list {
  max-width: 74ch;
}

.legal-list li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.legal-list li + li {
  margin-top: 0.75rem;
}

.legal-link {
  color: var(--gold-soft);
}

.legal-link:hover {
  color: var(--gold);
}

.legal-signature {
  margin-top: 1.25rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  text-align: center;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  grid-template-columns: 1.45fr 1fr 1fr;
  padding-top: 2rem;
  border-top: 1px solid rgba(160, 132, 255, 0.12);
}

.footer-title {
  margin: 0 0 0.85rem;
  font-family: var(--title-font);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.footer-link {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.footer-link:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  color: rgba(215, 202, 229, 0.72);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: transform, opacity;
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal-delay-1 {
  transition-delay: 0.04s;
}

.reveal-delay-2 {
  transition-delay: 0.09s;
}

.reveal-delay-3 {
  transition-delay: 0.14s;
}

.reveal-delay-4 {
  transition-delay: 0.19s;
}

@media (max-width: 980px) {
  .header-row,
  .cta-panel,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .auth-layout,
  .download-layout,
  .transmission-layout,
  .feature-grid,
  .universe-grid,
  .journey-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .feature-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .hero-section,
  .content-section,
  .cta-section,
  .auth-main,
  .download-main,
  .error-main,
  .legal-main {
    padding: 3.7rem 0;
  }

  .hero-section {
    padding-bottom: 2.1rem;
  }

  .feature-section {
    padding-bottom: 3.2rem;
  }

  #destaques.content-section {
    padding-top: 1.25rem;
  }

  .transmission-section {
    padding-top: 3.2rem;
    padding-bottom: 2.5rem;
  }

  .journey-section {
    padding-top: 2rem;
  }

  .section-heading-journey {
    min-height: auto;
    margin-bottom: 1.2rem;
  }

  .legal-intro p,
  .legal-card p,
  .legal-list li {
    text-align: left;
    hyphens: manual;
  }

  .hero-copy,
  .hero-panel,
  .transmission-card,
  .cta-panel,
  .auth-panel,
  .download-hero,
  .download-panel,
  .error-panel,
  .legal-hero,
  .legal-card,
  .feature-card,
  .universe-card,
  .journey-card {
    padding: 1.4rem;
  }

  .hero-copy {
    border-radius: 28px;
  }

  .hero-panel {
    border-radius: 28px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-logo-stage {
    margin-bottom: 1.35rem;
  }

  .hero-logo-actions {
    width: 100%;
  }

  .hero-main-logo {
    width: min(100%, 520px);
    max-height: none;
  }

  .hero-countdown-timer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 420px);
  }

  .header-actions,
  .hero-actions,
  .download-actions,
  .cta-actions {
    width: 100%;
  }

  .header-actions .button,
  .hero-logo-actions .button,
  .hero-actions .button,
  .download-actions .button,
  .cta-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body.page-loading .page-shell {
    opacity: 1;
    transform: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .shooting-star,
  .shooting-star.is-active {
    opacity: 0;
    animation: none;
    will-change: auto;
  }
}
