/* ==========================================================================
   ROTA EXPERIENCE — Design System
   Identidade: Preto profundo + Vermelho estratégico + Tipografia clara
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Cores base */
  --black: #080808;
  --black-2: #111111;
  --black-3: #171717;
  --black-4: #1e1e1e;
  --red: #c1121f;
  --red-bright: #e01e2d;
  --red-deep: #8a0d16;
  --white: #ffffff;
  --gray: #b8b8b8;
  --gray-dim: #8a8a8a;

  /* Superfícies e traços */
  --surface: var(--black);
  --surface-raised: rgba(17, 17, 17, 0.72);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --red-veil: rgba(193, 18, 31, 0.14);
  --red-glow: rgba(193, 18, 31, 0.35);

  /* Tipografia */
  --font-sans: "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;

  /* Escala */
  --step--1: clamp(0.8rem, 0.77rem + 0.15vw, 0.875rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.25rem + 0.75vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.45rem + 1.5vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.6vw, 3.6rem);
  --step-5: clamp(2.5rem, 1.7rem + 4vw, 4.75rem);

  /* Ritmo (base 8px) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;

  /* Formas */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(72px, 9vw, 140px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  /* Impede scroll horizontal causado pelos brilhos decorativos */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Regras de autor com display explícito venceriam o [hidden] do navegador */
[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--red);
  color: var(--white);
}

/* ---------- LAYOUT ---------- */
.shell {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
  overflow: clip;
}

.section--tint {
  background: linear-gradient(180deg, var(--black) 0%, #0c0c0c 50%, var(--black) 100%);
}

.section--panel {
  background: var(--black-2);
  border-block: 1px solid var(--hairline);
}

.section__head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.rule {
  height: 1px;
  border: 0;
  background: var(--hairline);
  margin: 0;
}

/* ---------- TIPOGRAFIA ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red);
}

.kicker--center::before {
  display: none;
}

.h1 {
  font-size: var(--step-5);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.h2 {
  font-size: var(--step-4);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.h3 {
  font-size: var(--step-2);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.h4 {
  font-size: var(--step-1);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lead {
  font-size: var(--step-1);
  line-height: 1.62;
  color: var(--gray);
  font-weight: 400;
}

.body {
  color: var(--gray);
}

.muted {
  color: var(--gray-dim);
}

.accent {
  color: var(--red-bright);
}

.tiny {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
}

/* ---------- BOTÕES ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--white);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    box-shadow 0.35s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.3s var(--ease);
}

.btn:hover {
  background: var(--red-bright);
  box-shadow: 0 12px 40px -12px var(--red-glow);
  transform: translateY(-2px);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--black);
}

.btn--light:hover {
  background: #f2f2f2;
  box-shadow: 0 12px 40px -14px rgba(0, 0, 0, 0.6);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 13px 26px;
  font-size: 0.8rem;
}

.btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- CARDS ---------- */
.card {
  position: relative;
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.card--hover:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 18, 31, 0.5);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(193, 18, 31, 0.18);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--red-veil);
  border: 1px solid rgba(193, 18, 31, 0.32);
  color: var(--red-bright);
  margin-bottom: var(--sp-3);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card--hover:hover .card__icon {
  background: var(--red);
  color: var(--white);
}

/* Selo numerado decorativo */
.card__index {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.16);
}

/* ---------- CHIP / BADGE ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(193, 18, 31, 0.4);
  background: var(--red-veil);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd9dc;
}

.chip svg {
  width: 15px;
  height: 15px;
  color: var(--red-bright);
}

.chip--neutral {
  border-color: var(--hairline-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gray);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(224, 30, 45, 0.7);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 30, 45, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(224, 30, 45, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 30, 45, 0);
  }
}

/* ---------- ORNAMENTOS ---------- */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.glow--red {
  background: rgba(193, 18, 31, 0.22);
}

.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: min(16.6667%, 180px) 100%;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.7;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.nav__links a {
  position: relative;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding-block: 6px;
  transition: color 0.25s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red-bright);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__cta {
  display: none;
  white-space: nowrap;
}

.nav__burger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--hairline-strong);
  color: var(--white);
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav__burger span + span {
  margin-top: 5px;
}

body.menu-open .nav__burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.menu-open .nav__burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav__burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-4) var(--gutter) var(--sp-5);
  display: grid;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0.3s;
}

body.menu-open .drawer {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.drawer a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--hairline);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.drawer .btn {
  margin-top: var(--sp-3);
}

@media (min-width: 1080px) {
  .nav__links,
  .nav__cta {
    display: flex;
  }
  .nav__burger {
    display: none;
  }
  .drawer {
    display: none;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(100svh, 960px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(28px, 5vw, 64px));
  padding-bottom: clamp(56px, 7vw, 104px);
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
  background: radial-gradient(120% 120% at 12% 8%, #101010 0%, var(--black) 55%);
}

/* ---------- Iluminação de palco ---------- */
.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Luz principal, vinda de cima à direita */
.hero__key {
  position: absolute;
  top: -34%;
  right: -12%;
  width: min(1000px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.38) 0%, rgba(193, 18, 31, 0.14) 44%, transparent 70%);
  filter: blur(30px);
}

/* Contraluz baixa, para separar a figura do fundo */
.hero__rim {
  position: absolute;
  bottom: -28%;
  right: 22%;
  width: min(620px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 30, 45, 0.3) 0%, transparent 66%);
  filter: blur(60px);
}

/* Feixes verticais discretos */
.hero__beams {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0 1px,
    transparent 1px 152px
  );
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 62%, transparent 96%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 62%, transparent 96%);
  opacity: 0.75;
}

/* ---------- Figura do palestrante ---------- */
.hero__figure {
  position: absolute;
  right: 0;
  bottom: 0;
  top: calc(var(--nav-h) + 4px);
  z-index: 1;
  margin: 0;
  width: clamp(440px, 56vw, 880px);
  pointer-events: none;
  /* O fundo preto da foto some sobre a luz vermelha: ele emerge da penumbra.
     "lighten" preserva a pele e os tons claros do retrato — ao contrário de
     "screen", que estouraria os brilhos do rosto. */
  mix-blend-mode: lighten;
}

.hero__figure img {
  width: 100%;
  height: 100%;
  /* Enquadramento de busto: ele ocupa a cena de perto, não à distância */
  object-fit: cover;
  object-position: 54% 0%;
  filter: contrast(1.06) saturate(0.95);
  mask-image: linear-gradient(96deg, transparent 0%, rgba(0, 0, 0, 0.4) 15%, #000 40%);
  -webkit-mask-image: linear-gradient(96deg, transparent 0%, rgba(0, 0, 0, 0.4) 15%, #000 40%);
  animation: heroFigure 2.4s var(--ease) both;
}

@keyframes heroFigure {
  from {
    opacity: 0;
    transform: scale(1.07);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Véu lateral que garante leitura do texto */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    var(--black) 0%,
    rgba(8, 8, 8, 0.94) 26%,
    rgba(8, 8, 8, 0.55) 46%,
    rgba(8, 8, 8, 0) 66%
  );
}

/* Base escura: a figura se apoia na penumbra e conduz à faixa de informações */
.hero__floor {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 32%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.85) 62%, var(--black) 100%);
}

/* Marcação lateral, tipo claquete */
.hero__slate {
  position: absolute;
  left: calc(var(--gutter) - 26px);
  top: 50%;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 14px;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.hero__slate::after {
  content: "";
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
}

@media (min-width: 1240px) {
  .hero__slate {
    display: flex;
  }
}

/* ---------- Conteúdo ---------- */
.hero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero__content {
  max-width: min(660px, 54vw);
  display: grid;
  justify-items: start;
}

.hero__content > * {
  max-width: 100%;
}

.hero__eyebrow,
.hero__when,
.hero__title-a,
.hero__title-b,
.hero__sub,
.hero__actions,
.hero__speaker {
  animation: heroRise 0.9s var(--ease) both;
}

.hero__eyebrow {
  animation-delay: 0.05s;
}
.hero__when {
  animation-delay: 0.14s;
}
.hero__title-a {
  animation-delay: 0.22s;
}
.hero__title-b {
  animation-delay: 0.32s;
}
.hero__sub {
  animation-delay: 0.44s;
}
.hero__actions {
  animation-delay: 0.56s;
}
.hero__speaker {
  animation-delay: 0.66s;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 18px 8px 15px;
  border: 1px solid rgba(193, 18, 31, 0.45);
  border-radius: var(--r-pill);
  background: rgba(193, 18, 31, 0.12);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffdfe2;
}

.hero__when {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.66rem + 0.28vw, 0.86rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero__when::after {
  content: "";
  flex: 1;
  min-width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.hero__title {
  margin-top: clamp(20px, 2.4vw, 30px);
  display: grid;
  gap: clamp(4px, 0.6vw, 10px);
  font-size: clamp(1.9rem, 1.1rem + 2.5vw, 3.05rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__title-a {
  color: var(--white);
}

.hero__title-b {
  color: var(--red-bright);
  background: linear-gradient(96deg, #ff5560 0%, #e01e2d 42%, #a50f1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  margin-top: clamp(22px, 2.6vw, 32px);
  max-width: 54ch;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.16rem);
  line-height: 1.62;
  color: var(--gray);
}

.hero__actions {
  margin-top: clamp(28px, 3.2vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__speaker {
  margin-top: clamp(30px, 3.4vw, 44px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dim);
}

.hero__speaker strong {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero__speaker-line {
  width: 40px;
  height: 1px;
  background: var(--red);
  flex: none;
}

/* ---------- Indicador de rolagem ---------- */
.scroll-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-hint__line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, var(--red-bright));
  animation: hintDrop 2.2s var(--ease) infinite;
}

@keyframes hintDrop {
  0%,
  100% {
    transform: scaleY(0.4);
    transform-origin: top;
    opacity: 0.3;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}

@media (max-height: 780px) {
  .scroll-hint {
    display: none;
  }
}

/* ---------- Tablet ---------- */
@media (max-width: 1080px) {
  .hero__content {
    max-width: min(560px, 58vw);
  }

  .hero__sub {
    max-width: 48ch;
  }

  .hero__figure {
    width: clamp(320px, 44vw, 520px);
  }
}

/* ---------- Mobile: figura como faixa inferior da cena ---------- */
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: calc(var(--nav-h) + 34px);
    /* Espaço reservado para a figura ocupar a base da cena */
    padding-bottom: clamp(300px, 78vw, 420px);
  }

  .hero__content,
  .hero__sub {
    max-width: none;
  }

  .hero__figure {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: clamp(330px, 84vw, 450px);
  }

  .hero__figure img {
    object-fit: cover;
    object-position: 52% 0%;
    /* Dissolve nas quatro direções: sem recorte visível, sem card */
    mask-image: radial-gradient(78% 88% at 62% 58%, #000 34%, rgba(0, 0, 0, 0.45) 68%, transparent 92%);
    -webkit-mask-image: radial-gradient(78% 88% at 62% 58%, #000 34%, rgba(0, 0, 0, 0.45) 68%, transparent 92%);
  }

  /* Na versão mobile o nome dele já aparece na faixa de informações logo abaixo */
  .hero__speaker {
    display: none;
  }

  .hero__scrim {
    background: linear-gradient(180deg, var(--black) 0%, rgba(8, 8, 8, 0.94) 22%, rgba(8, 8, 8, 0.4) 46%, transparent 66%);
  }

  .hero__floor {
    height: 26%;
    background: linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.72) 58%, var(--black) 100%);
  }

  .hero__key {
    top: auto;
    bottom: -18%;
    right: -26%;
    width: min(700px, 118vw);
  }

  .hero__rim {
    right: 6%;
    bottom: -10%;
    width: min(440px, 76vw);
  }

  .hero__beams {
    opacity: 0.4;
  }

  .hero__when {
    margin-top: 18px;
    letter-spacing: 0.14em;
  }

  .hero__when::after {
    display: none;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__figure img,
  .hero__eyebrow,
  .hero__when,
  .hero__title-a,
  .hero__title-b,
  .hero__sub,
  .hero__actions,
  .hero__speaker {
    animation: none;
  }
}

/* ---------- FAIXA DE INFORMAÇÕES DO EVENTO ---------- */
.factbar {
  position: relative;
  z-index: 2;
  background: var(--black-2);
  border-block: 1px solid var(--hairline);
}

.factbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.fact {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(22px, 2.6vw, 30px) clamp(18px, 2.4vw, 30px);
  border-right: 1px solid var(--hairline);
}

.fact:last-child {
  border-right: 0;
}

.fact svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--red-bright);
  margin-top: 3px;
}

/* ---------- Local e horário em destaque ---------- */
.fact--key {
  background: linear-gradient(180deg, rgba(193, 18, 31, 0.09), rgba(193, 18, 31, 0) 72%);
}

.fact--key::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(193, 18, 31, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.15s;
}

.factbar.is-in .fact--key::after {
  transform: scaleX(1);
}

.fact__ico {
  position: relative;
  flex: none;
  width: 40px;
  height: 40px;
  margin-top: -2px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(193, 18, 31, 0.34);
  background: rgba(193, 18, 31, 0.13);
}

.fact__ico svg {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.fact--key .fact__value {
  font-size: 1.12rem;
}

/* Ping de GPS: a localização se anuncia */
.fact__ping {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(224, 30, 45, 0.55);
  opacity: 0;
}

.factbar.is-in .fact__ping {
  animation: gpsPing 3.4s var(--ease) infinite;
}

.factbar.is-in .fact__ping:nth-of-type(2) {
  animation-delay: 0.7s;
}

@keyframes gpsPing {
  0% {
    transform: scale(0.86);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  55%,
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* Relógio que percorre o dia do evento: 09h → 18h */
.clock__h,
.clock__m {
  transform-box: view-box;
  transform-origin: 12px 12px;
}

.clock__h {
  transform: rotate(240deg); /* 08h */
}

.clock__m {
  transform: rotate(0deg);
}

.factbar.is-in .clock__h {
  animation: clockHour 2.9s var(--ease) 0.25s both;
}

.factbar.is-in .clock__m {
  animation: clockMinute 2.9s var(--ease) 0.25s both;
}

/* 08h → 19h: 11 horas de evento */
@keyframes clockHour {
  from {
    transform: rotate(240deg);
  }
  to {
    transform: rotate(570deg);
  }
}

@keyframes clockMinute {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(3960deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .factbar.is-in .fact__ping {
    animation: none;
  }
  .factbar.is-in .clock__h {
    animation: none;
    transform: rotate(210deg);
  }
  .factbar.is-in .clock__m {
    animation: none;
  }
  .fact--key::after {
    transform: scaleX(1);
  }
}

.fact__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 3px;
}

.fact__value {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.fact__value small {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .fact:last-child {
    border-bottom: 0;
  }
}

/* ==========================================================================
   NARRATIVA (faculdade → por isso nasceu → o que é)
   ========================================================================== */
.narrative {
  display: grid;
  gap: clamp(36px, 5vw, 64px);
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.narrative__quote {
  font-size: var(--step-3);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.028em;
}

.narrative__quote span {
  color: var(--gray);
  font-weight: 400;
}

.narrative__pivot {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.narrative__pivot .h3 {
  max-width: 22ch;
}

.arrow-down {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--red));
  margin-inline: auto;
}

/* ==========================================================================
   O PROBLEMA — grade de identificação
   ========================================================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}

/* Três colunas em largura total (seção do problema) */
@media (min-width: 1000px) {
  .pain-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-cell {
  background: var(--black);
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: background-color 0.35s var(--ease);
}

.pain-cell:hover {
  background: #0f0f0f;
}

.pain-cell__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(193, 18, 31, 0.35);
  color: var(--red-bright);
  background: var(--red-veil);
}

.pain-cell__mark svg {
  width: 16px;
  height: 16px;
}

.pain-cell p {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pain-verdict {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(193, 18, 31, 0.3);
  background: linear-gradient(120deg, rgba(193, 18, 31, 0.16), rgba(8, 8, 8, 0) 62%);
  text-align: center;
}

/* ==========================================================================
   O EVENTO
   ========================================================================== */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-text {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .split--wide-media {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .split--flip > *:first-child {
    order: 2;
  }
}

.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  background: var(--black-2);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.04);
}

.media-frame--tall {
  aspect-ratio: 4 / 5;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
}

/* Gradação para fotos reais de evento: integra ambientes claros à cena escura
   sem descaracterizar a foto. */
.media-frame--grade img {
  filter: contrast(1.08) saturate(0.84) brightness(0.84);
}

.media-frame--grade::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(205deg, rgba(193, 18, 31, 0.18), transparent 58%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.55), transparent 62%);
}

.media-frame__caption {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: 0;
  padding: clamp(20px, 2.6vw, 30px);
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.4) 60%, transparent);
  font-size: 0.9rem;
  color: var(--gray);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline);
}

.stat__value {
  font-size: var(--step-2);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--red-bright);
  line-height: 1.1;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-top: 4px;
}

.checklist {
  display: grid;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.checklist svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
  color: var(--red-bright);
}

/* ==========================================================================
   IDENTITY SHOWCASE — apresentação da marca na seção "Conheça o ROTA"
   O logo é horizontal com fundo transparente; precisa de um palco escuro
   que o centralize sem cortar, diferente das fotos que usam object-fit:cover.
   ========================================================================== */
.identity-showcase {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  background:
    radial-gradient(circle at 30% 55%, rgba(193, 18, 31, 0.12), transparent 60%),
    radial-gradient(circle at 75% 35%, rgba(193, 18, 31, 0.07), transparent 50%),
    var(--black);
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 56px);
  transition: border-color 0.5s var(--ease);
}

.identity-showcase:hover {
  border-color: rgba(193, 18, 31, 0.4);
}

.identity-showcase__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(193, 18, 31, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  pointer-events: none;
}

.identity-showcase:hover .identity-showcase__glow {
  opacity: 1;
}

.identity-showcase img {
  width: 85%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 40px rgba(193, 18, 31, 0.18));
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}

.identity-showcase:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 50px rgba(193, 18, 31, 0.3));
}

/* ==========================================================================
   O QUE VOCÊ VAI VIVER
   ========================================================================== */
.live-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

@media (min-width: 1100px) {
  .live-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.live-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--black-2);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.live-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.live-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 18, 31, 0.4);
}

.live-card:hover::after {
  transform: scaleX(1);
}

.live-card__step {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--red-bright);
}

.live-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.live-card p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ==========================================================================
   NETWORKING
   ========================================================================== */
.networking {
  position: relative;
  overflow: hidden;
  background: var(--black-2);
}

.net-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}

.net-collage__main {
  aspect-ratio: 4 / 5;
}

.net-collage__sub {
  aspect-ratio: 4 / 5;
  align-self: end;
}

/* Uma única foto real ocupando a coluna, sem sobreposição */
.net-collage--solo {
  display: block;
}

.net-collage--solo .net-collage__main {
  aspect-ratio: 4 / 5;
  max-height: 640px;
}

@media (min-width: 900px) {
  .net-collage {
    display: block;
    position: relative;
    padding-bottom: 96px;
    padding-right: 40px;
  }

  .net-collage--solo {
    padding-bottom: 0;
    padding-right: 0;
  }

  .net-collage__main {
    aspect-ratio: 4 / 5;
    max-height: 620px;
  }

  .net-collage__sub {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    aspect-ratio: 1 / 1;
    border-color: rgba(193, 18, 31, 0.35);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.95);
  }
}

.net-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.net-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  color: var(--gray);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
    background-color 0.3s var(--ease);
}

.net-point:hover {
  border-color: rgba(193, 18, 31, 0.5);
  background: var(--red-veil);
  color: var(--white);
}

.net-point span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  flex: none;
}

/* ==========================================================================
   PALESTRANTE
   ========================================================================== */
.speaker {
  position: relative;
  background: radial-gradient(120% 90% at 82% 12%, rgba(193, 18, 31, 0.16), transparent 58%),
    var(--black);
}

.speaker__portrait {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  aspect-ratio: 3 / 4;
  background: #0a0a0a;
}

.speaker__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.05) saturate(0.95);
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
}

.speaker__portrait:hover img {
  transform: scale(1.03);
  filter: contrast(1.08) saturate(1.05);
}

.speaker__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.9) 0%, transparent 45%);
}

.speaker__tag {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 2.4vw, 28px);
  bottom: clamp(18px, 2.4vw, 28px);
  right: clamp(18px, 2.4vw, 28px);
}

.speaker__tag .name {
  font-size: var(--step-2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.speaker__tag .role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 8px;
}

.speaker__quote {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-left: 3px solid var(--red);
  background: rgba(193, 18, 31, 0.08);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

/* ==========================================================================
   PROGRAMAÇÃO — timeline
   ========================================================================== */
.timeline {
  /* Padrão aceso: se o JS não rodar, o cronograma aparece completo.
     O JS adiciona .is-live e assume o controle do percurso. */
  --tl-p: 1;
  position: relative;
}

.timeline__track {
  display: grid;
  gap: 0;
}

/* ---------- Trilho, progresso e cabeça de leitura (sempre verticais) ---------- */
.timeline__rail {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--hairline) 0 92%, transparent);
}

.timeline__progress {
  position: absolute;
  left: 0;
  top: 6px;
  width: 1px;
  height: calc(var(--tl-p) * 100%);
  background: linear-gradient(180deg, var(--red), var(--red-bright));
}

.timeline__head {
  position: absolute;
  left: 0;
  top: calc(6px + var(--tl-p) * 100%);
  width: 7px;
  height: 7px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 4px rgba(224, 30, 45, 0.18), 0 0 16px 4px rgba(224, 30, 45, 0.5);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.timeline.is-scrubbing .timeline__head {
  opacity: 1;
}

/* ---------- Cada momento do dia ---------- */
.tl-item {
  position: relative;
  padding: 0 0 clamp(22px, 2.4vw, 32px) 30px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item__dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--red-bright);
  box-shadow: 0 0 0 5px rgba(193, 18, 31, 0.14);
  transition: border-color 0.45s var(--ease), background-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.is-live .tl-item:not(.is-in) .tl-item__dot {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--black);
  box-shadow: none;
}

/* O momento em que a leitura está agora */
.tl-item.is-now .tl-item__dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 7px rgba(193, 18, 31, 0.2), 0 0 18px 2px rgba(224, 30, 45, 0.45);
}

.tl-item__time {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--red-bright);
  transition: color 0.5s var(--ease);
}

.is-live .tl-item:not(.is-in) .tl-item__time {
  color: rgba(224, 30, 45, 0.4);
}

.tl-item__tipo {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 4px;
  transition: color 0.5s var(--ease);
}

.is-live .tl-item.is-in .tl-item__tipo {
  color: var(--gray);
}

.tl-item__title {
  font-size: clamp(1.02rem, 0.98rem + 0.25vw, 1.2rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 42ch;
  text-wrap: balance;
  transition: color 0.5s var(--ease);
}

.is-live .tl-item:not(.is-in) .tl-item__title {
  color: rgba(255, 255, 255, 0.42);
}

.tl-item__desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 6px;
  max-width: 52ch;
  line-height: 1.55;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.is-live .tl-item:not(.is-in) .tl-item__desc {
  opacity: 0;
  transform: translateY(6px);
}

/* ---------- Divisor de bloco (ex.: a imersão da tarde) ---------- */
.tl-phase {
  position: relative;
  padding: clamp(10px, 1.4vw, 18px) 0 clamp(24px, 2.6vw, 34px) 30px;
}

.tl-phase__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(193, 18, 31, 0.42);
  background: var(--red-veil);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffdfe2;
}

/* Marcador quadrado na trilha, para distinguir do ponto dos momentos */
.tl-phase::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -10px;
  background: var(--red-bright);
  transform: rotate(45deg);
}

/* ---------- Desktop: horário em coluna própria, como uma agenda ---------- */
@media (min-width: 860px) {
  .tl-item {
    display: grid;
    grid-template-columns: 168px 1fr;
    gap: 0 clamp(20px, 2.4vw, 40px);
    align-items: start;
    padding-left: 34px;
  }

  .tl-item__time {
    font-size: 1rem;
    padding-top: 1px;
  }

  .tl-phase {
    padding-left: 34px;
  }
}

/* ---------- Movimento reduzido: tudo aceso, nada percorrendo ---------- */
@media (prefers-reduced-motion: reduce) {
  .timeline {
    --tl-p: 1;
  }

  .timeline__head {
    display: none;
  }
}

/* ==========================================================================
   O QUE ESTÁ INCLUSO
   ========================================================================== */
.included {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.incl {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 70%);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.incl:hover {
  border-color: rgba(193, 18, 31, 0.45);
  transform: translateY(-4px);
}

.incl__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-veil);
  color: var(--red-bright);
  border: 1px solid rgba(193, 18, 31, 0.3);
}

.incl__icon svg {
  width: 20px;
  height: 20px;
}

.incl h3 {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.incl p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ==========================================================================
   PARA QUEM É
   ========================================================================== */
.audience {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}

.aud {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--black-2);
  padding: clamp(26px, 3vw, 38px);
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.aud::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.16);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.aud:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 18, 31, 0.45);
}

.aud:hover::before {
  opacity: 1;
}

.aud__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(193, 18, 31, 0.3);
  background: var(--red-veil);
  color: var(--red-bright);
}

.aud__icon svg {
  width: 24px;
  height: 24px;
}

.aud h3 {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aud p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ==========================================================================
   CONTADOR DE INGRESSOS
   ========================================================================== */
.counter {
  display: grid;
  gap: clamp(28px, 3.4vw, 44px);
  padding: clamp(28px, 3.6vw, 52px);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-lg);
  background: linear-gradient(140deg, rgba(193, 18, 31, 0.12), rgba(17, 17, 17, 0.9) 55%);
}

@media (min-width: 900px) {
  .counter {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.counter__pct {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.counter__pct b {
  font-size: clamp(3rem, 8vw, 5.2rem);
  color: var(--white);
  font-weight: 800;
}

.counter__pct i {
  font-style: normal;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--red-bright);
}

.bar {
  position: relative;
  height: 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  margin-top: var(--sp-3);
}

.bar__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
  transition: width 1.4s var(--ease);
}

.bar__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: sheen 2.8s linear infinite;
}

@keyframes sheen {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.counter__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--sp-2);
}

.counter__stat {
  padding: var(--sp-3);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  background: rgba(8, 8, 8, 0.5);
}

.counter__stat b {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.counter__stat span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
}

.counter__note {
  font-size: 0.82rem;
  color: var(--gray-dim);
}

/* ==========================================================================
   INGRESSOS / CHECKOUT
   ========================================================================== */
.checkout {
  max-width: 900px;
  margin-inline: auto;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--sp-4);
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.stepper::-webkit-scrollbar {
  display: none;
}

.stepper__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.stepper__item + .stepper__item::before {
  content: "";
  width: clamp(14px, 3vw, 40px);
  height: 1px;
  background: var(--hairline-strong);
}

.stepper__num {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-dim);
  transition: all 0.35s var(--ease);
}

.stepper__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
  white-space: nowrap;
  transition: color 0.35s var(--ease);
}

.stepper__item.is-active .stepper__num {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.16);
}

.stepper__item.is-active .stepper__label {
  color: var(--white);
}

.stepper__item.is-done .stepper__num {
  border-color: rgba(193, 18, 31, 0.6);
  color: var(--red-bright);
}

.stepper__item.is-skipped {
  opacity: 0.4;
}

/* Em telas estreitas, só a etapa atual mostra o rótulo */
@media (max-width: 600px) {
  .stepper__label {
    display: none;
  }
  .stepper__item.is-active .stepper__label {
    display: block;
  }
}

.panel {
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.92), rgba(10, 10, 10, 0.92));
  padding: clamp(24px, 3.4vw, 46px);
  backdrop-filter: blur(12px);
}

.step {
  display: none;
  animation: stepIn 0.45s var(--ease);
}

.step.is-current {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step__head {
  margin-bottom: var(--sp-4);
}

.step__head h3 {
  font-size: var(--step-2);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.step__head p {
  color: var(--gray);
  margin-top: 6px;
  font-size: 0.96rem;
}

/* Seleção de perfil */
.options {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.option {
  position: relative;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  background: rgba(8, 8, 8, 0.5);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.option:hover {
  border-color: rgba(193, 18, 31, 0.55);
  transform: translateY(-3px);
}

.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--hairline-strong);
  color: var(--gray);
  transition: all 0.3s var(--ease);
}

.option__icon svg {
  width: 22px;
  height: 22px;
}

.option__title {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.option__desc {
  font-size: 0.86rem;
  color: var(--gray-dim);
  line-height: 1.45;
}

.option__check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: grid;
  place-items: center;
  color: transparent;
  transition: all 0.3s var(--ease);
}

.option__check svg {
  width: 14px;
  height: 14px;
}

.option:has(input:checked),
.option.is-selected {
  border-color: var(--red-bright);
  background: rgba(193, 18, 31, 0.1);
}

.option:has(input:checked) .option__icon,
.option.is-selected .option__icon {
  border-color: var(--red);
  background: var(--red-veil);
  color: var(--red-bright);
}

.option:has(input:checked) .option__check,
.option.is-selected .option__check {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Foco por teclado no radio precisa aparecer no card */
.option:focus-within,
.ticket:focus-within {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

/* Campos */
.fields {
  display: grid;
  gap: var(--sp-3);
}

@media (min-width: 720px) {
  .fields--2 {
    grid-template-columns: 1fr 1fr;
  }
  .field--full {
    grid-column: 1 / -1;
  }
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.field label .req {
  color: var(--red-bright);
}

.field input,
.field select {
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-strong);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.field input::placeholder {
  color: #6a6a6a;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.18);
  background: rgba(0, 0, 0, 0.7);
}

.field input[aria-invalid="true"] {
  border-color: #ff5a5a;
  box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.14);
}

.field__error {
  font-size: 0.78rem;
  color: #ff7b7b;
  min-height: 1em;
  padding-left: 20px;
}

.notice {
  display: flex;
  gap: 12px;
  padding: var(--sp-3);
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: var(--gray);
}

.notice svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--red-bright);
  margin-top: 3px;
}

/* Ingressos */
.tickets {
  display: grid;
  gap: var(--sp-2);
}

.ticket {
  position: relative;
  display: grid;
  gap: var(--sp-3);
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  background: rgba(8, 8, 8, 0.55);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

@media (min-width: 760px) {
  .ticket {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}

.ticket input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ticket:hover {
  border-color: rgba(193, 18, 31, 0.5);
}

.ticket:has(input:checked),
.ticket.is-selected {
  border-color: var(--red-bright);
  background: rgba(193, 18, 31, 0.09);
}

.ticket__cat {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.ticket__name {
  display: block;
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.ticket__benefits {
  display: grid;
  gap: 8px;
  margin-top: var(--sp-2);
}

.ticket__benefits li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}

.ticket__benefits svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
  color: var(--red-bright);
}

.ticket__price {
  text-align: left;
}

@media (min-width: 760px) {
  .ticket__price {
    text-align: right;
  }
}

.ticket__price b {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.ticket__price small {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-dim);
}

.ticket__avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-strong);
  color: var(--gray);
}

.ticket__avail.is-open {
  border-color: rgba(193, 18, 31, 0.5);
  background: var(--red-veil);
  color: #ffd9dc;
}

/* Revisão */
.review {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}

.review__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px clamp(18px, 2.2vw, 26px);
  background: rgba(8, 8, 8, 0.7);
  font-size: 0.95rem;
}

.review__row dt {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
}

.review__row dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.review__row--total {
  background: rgba(193, 18, 31, 0.12);
}

.review__row--total dd {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.step__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline);
}

.step__nav .btn--ghost {
  order: -1;
}

.secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-dim);
}

.secure svg {
  width: 14px;
  height: 14px;
}

/* Estado final do fluxo */
.flow-state {
  display: grid;
  gap: var(--sp-3);
  justify-items: center;
  text-align: center;
  padding: clamp(24px, 3vw, 40px) 0;
}

.flow-state__mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%
;
  border: 1px solid rgba(193, 18, 31, 0.5);
  background: var(--red-veil);
  color: var(--red-bright);
}

.flow-state__mark svg {
  width: 28px;
  height: 28px;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-2);
}

.flow-steps li {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  color: var(--gray-dim);
}

.flow-steps li.is-done {
  border-color: rgba(193, 18, 31, 0.5);
  color: #ffd9dc;
  background: var(--red-veil);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.acc {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--black-2);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.acc.is-open {
  border-color: rgba(193, 18, 31, 0.45);
}

.acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: clamp(18px, 2.2vw, 26px);
  text-align: left;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.acc__icon {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  color: var(--red-bright);
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.acc__icon svg {
  width: 14px;
  height: 14px;
}

.acc.is-open .acc__icon {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.acc.is-open .acc__body {
  grid-template-rows: 1fr;
}

.acc__body > div {
  overflow: hidden;
}

.acc__body p {
  padding: 0 clamp(18px, 2.2vw, 26px) clamp(20px, 2.4vw, 26px);
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.62;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--red-deep) 0%, var(--red) 44%, #6d0a12 100%);
  text-align: center;
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.35) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}

.final__inner {
  position: relative;
  display: grid;
  gap: var(--sp-4);
  justify-items: center;
  max-width: 840px;
  margin-inline: auto;
}

.final h2 {
  color: var(--white);
}

.final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--step-1);
  max-width: 60ch;
}

.final .chip {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
}

.final .chip svg {
  color: var(--white);
}

.final__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.final__pills li {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

/* ==========================================================================
   FOOTER + FLUTUANTES
   ========================================================================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--hairline);
  padding-block: var(--sp-6) var(--sp-4);
}

.footer__grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.footer__grid > div:first-child {
  grid-column: span 1;
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

.footer img {
  height: 28px;
  width: auto;
  margin-bottom: var(--sp-3);
}

.footer h5 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: var(--sp-3);
}

.footer ul {
  display: grid;
  gap: 12px;
}

.footer a:hover {
  color: var(--red-bright);
}

.footer__bottom {
  margin-top: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-dim);
}

/* WhatsApp flutuante */
.wa {
  position: fixed;
  right: clamp(14px, 2.4vw, 26px);
  bottom: clamp(14px, 2.4vw, 26px);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #05331a;
  box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease);
}

.wa:hover {
  transform: scale(1.07);
}

.wa svg {
  width: 27px;
  height: 27px;
}

/* CTA fixo mobile */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 95;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__info {
  flex: 1;
  min-width: 0;
}

.sticky-cta__info b {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta__info span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dim);
}

@media (min-width: 860px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 859px) {
  .wa {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

/* ==========================================================================
   REVEAL / MOVIMENTO
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal[data-delay="1"] {
  transition-delay: 0.09s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.18s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.27s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   CONSENTIMENTO, ARMADILHA DE ROBÔ E ESTADOS DO RETORNO
   --------------------------------------------------------------------------
   Adicionado depois da aprovação do design: só classes novas, nada
   redefinido. O visual aprovado não muda.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Armadilha de robô.

   NÃO usa `display:none` nem `visibility:hidden` de propósito: robô mais
   esperto ignora campo assim, e é justamente ele que queremos pegar. Tirar da
   tela por posição mantém o campo "real" para automação e invisível para
   pessoa. `aria-hidden` no HTML tira de leitor de tela; `tabindex="-1"` tira
   do caminho do teclado.
   -------------------------------------------------------------------------- */
.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Consentimento LGPD
   -------------------------------------------------------------------------- */
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: var(--sp-3);
  padding: var(--sp-3);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.consent:hover {
  border-color: var(--hairline-strong);
}

/* Estado marcado visível na borda: quem revisa a página antes de enviar
   consegue ver que concordou, sem precisar procurar a caixinha. */
.consent:has(input:checked) {
  border-color: rgba(193, 18, 31, 0.4);
  background: var(--red-veil);
}

.consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--red);
  cursor: pointer;
  flex: none;
}

.consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

.consent a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Retorno do pagamento
   -------------------------------------------------------------------------- */
.flow-extra {
  width: 100%;
  max-width: 56ch;
  margin: var(--sp-3) 0 0;
  padding: var(--sp-3);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray);
  text-align: left;
}

/* O código do ingresso é o dado que a pessoa vai procurar na tela e talvez
   copiar à mão. Monoespaçado e destacado, com quebra permitida. */
.flow-extra__code {
  display: block;
  margin: 10px 0 2px;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--white);
  word-break: break-all;
}

.flow-extra__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dim);
}

.flow-extra a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: var(--sp-3);
}

/* --------------------------------------------------------------------------
   Cor do marcador conforme o desfecho.

   Semântica antes de decoração: aprovado, aguardando e recusado precisam ser
   distinguíveis num relance. Não é só cor — o ícone também muda (checkout.js),
   porque cor sozinha não serve a quem não a distingue.
   -------------------------------------------------------------------------- */
.flow-state__mark--aguardando {
  border-color: rgba(255, 176, 32, 0.45);
  color: #ffb020;
}

.flow-state__mark--falha {
  border-color: rgba(255, 123, 123, 0.45);
  color: #ff7b7b;
}

/* Pulsa devagar enquanto verifica, para a tela não parecer travada. */
@media (prefers-reduced-motion: no-preference) {
  .flow-state__mark--aguardando {
    animation: pulsoEspera 2.4s ease-in-out infinite;
  }
}

@keyframes pulsoEspera {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
