/* =========================================================
   MÉTODO IP × HAZE FILMS — Stylesheet Principal
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  background: var(--color-bg-primary);
  color: var(--color-text-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }

/* =========================================================
   1. LOADER — MP4 de 3s + swipe-up com motion blur
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000;  /* Preto puro absoluto — matching com o fundo do MP4 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform, filter, opacity;
}

/* Sem glow CSS extra: o vídeo já tem seu próprio brilho.
   Fundo #000 + vídeo com fundo #000 = blend invisível. */

.loader__video {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 60vmin;
  max-height: 60vmin;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1024px) {
  .loader__video {
    max-width: 70vmin;
    max-height: 70vmin;
  }
}

@media (max-width: 640px) {
  .loader__video {
    max-width: 80vmin;
    max-height: 80vmin;
  }
}

/* Swipe-up + motion blur — disparado via JS após 3s
   Preto puro do loader sai pra cima, revelando o hero (azul noite + Pablo) */
.loader.is-exiting {
  animation: loaderSwipeUp var(--transition-swipe-up) var(--ease-cinematic) forwards;
}

@keyframes loaderSwipeUp {
  0% {
    transform: translateY(0) scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  35% {
    /* Começa a borrar antes de sair — sensação de motion blur de câmera */
    filter: blur(8px);
    opacity: 1;
  }
  70% {
    filter: blur(20px);
    opacity: 0.85;
  }
  100% {
    transform: translateY(-110vh) scale(1.06);
    filter: blur(32px);
    opacity: 0;
  }
}

/* Body lock enquanto loader ativo */
body.is-loading { overflow: hidden; height: 100vh; }

/* =========================================================
   2. TOPBAR
   ========================================================= */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--space-section-x);
  background: linear-gradient(180deg,
    rgba(0, 7, 16, 0.85) 0%,
    rgba(0, 7, 16, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity var(--t-slow) var(--ease-out) 200ms,
              transform var(--t-slow) var(--ease-out) 200ms;
}
.topbar.is-visible { opacity: 1; transform: translateY(0); }

.topbar__brand {
  font-size: var(--fs-topbar);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  letter-spacing: var(--ls-topbar);
  text-transform: uppercase;
}

.topbar__meta {
  font-size: var(--fs-topbar);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  letter-spacing: var(--ls-topbar);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .topbar__meta { display: none; }
}

/* =========================================================
   3. HERO
   ========================================================= */
/* =========================================================
   3. HERO — Composição cinematográfica
   Imagem fonte: Pablo (esquerda) + logo Método IP (direita-centro)
   Texto vive APENAS no canto inferior esquerdo, em zona morta.
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0;  /* padding agora vive no __content pra controle preciso */
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  /* Composição: Pablo+logo concentrados na metade direita.
     Em desktop, ancoramos no centro pra ver tudo.
     Em mobile o ajuste vem por media query. */
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000710;
}

/* Vinheta cinematográfica — escurece o canto INFERIOR ESQUERDO
   (onde fica o texto) sem afetar a área do logo */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* 1. Sombra direcional do canto inf. esquerdo (zona do texto) */
    radial-gradient(ellipse 70% 60% at 18% 90%,
      rgba(0, 7, 16, 0.85) 0%,
      rgba(0, 7, 16, 0.55) 45%,
      transparent 75%),
    /* 2. Escurecimento sutil da base inteira pra respiro do texto */
    linear-gradient(180deg,
      transparent 0%,
      transparent 55%,
      rgba(0, 7, 16, 0.45) 100%);
}

/* Grain cinematográfico — densidade ajustada */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Container do conteúdo — ancorado embaixo à esquerda */
.hero__content {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-section-x) clamp(48px, 7vh, 80px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease-out) 400ms,
              transform var(--t-slow) var(--ease-out) 400ms;
}
.hero.is-visible .hero__content {
  opacity: 1;
  transform: translateY(0);
}

/* SAFE ZONE crítica: bloco de texto NUNCA passa de 38% da viewport.
   Isso garante que o logo Método IP da imagem fica intocado. */
.hero__textblock {
  max-width: min(480px, 38vw);
  position: relative;
}

/* Glow ciano sutil ATRÁS do bloco de texto — separa do BG sem caixa */
.hero__textblock::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(ellipse at 30% 70%,
    rgba(70, 230, 255, 0.06) 0%,
    transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Assinatura — primeira coisa que aparece, escala minimalista */
.hero__signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__signature-line {
  width: 36px;
  height: 1px;
  background: var(--color-accent-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(70, 230, 255, 0.6);
}
.hero__signature-text {
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.hero__signature-x {
  display: inline-block;
  color: var(--color-accent-cyan);
  font-weight: var(--fw-regular);
  margin: 0 0.45em;
  font-style: italic;
  text-shadow: 0 0 10px rgba(70, 230, 255, 0.6);
}

.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

/* Subtítulo é a manchete agora — clamp pra não estourar */
.hero__subtitle {
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.45;
  color: var(--color-text-primary);
  margin-bottom: 32px;
  font-weight: var(--fw-regular);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);  /* legibilidade extra */
}
.hero__subtitle strong {
  font-weight: var(--fw-bold);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* CTAs proporcionalmente menores no hero pra não brigar com a imagem */
.hero__ctas .btn {
  padding: 18px 36px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* ---------- RESPONSIVO ---------- */

/* Desktop largo: o subtítulo pode respirar mais */
@media (min-width: 1400px) {
  .hero__textblock { max-width: 520px; }
}

/* Tablet (1024 e abaixo): a imagem reposiciona pra centro+direita
   pra deixar o canto esquerdo mais "limpo" */
@media (max-width: 1024px) {
  .hero__bg { background-position: 65% center; }
  .hero__textblock { max-width: min(440px, 50vw); }
}

/* Tablet vertical / mobile largo */
@media (max-width: 768px) {
  .hero__bg {
    /* Mostra mais do palco e do logo, Pablo recua um pouco */
    background-position: 70% 30%;
  }
  /* Overlay mais forte na base pra texto branco ler bem */
  .hero__overlay {
    background:
      radial-gradient(ellipse 100% 50% at 50% 100%,
        rgba(0, 7, 16, 0.92) 0%,
        rgba(0, 7, 16, 0.55) 50%,
        transparent 80%),
      linear-gradient(180deg,
        transparent 0%, transparent 40%,
        rgba(0, 7, 16, 0.85) 100%);
  }
  .hero__textblock { max-width: 100%; }
  .hero__textblock::before { display: none; }
}

/* Celular vertical */
@media (max-width: 640px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;  /* small viewport — evita pular com barra do browser */
  }
  .hero__bg {
    /* Crop inteligente: foca no logo e palco no mobile */
    background-position: 65% 25%;
  }
  .hero__signature-text { letter-spacing: 0.28em; font-size: 10.5px; }
  .hero__signature-line { width: 24px; }
  .hero__subtitle { font-size: 16px; line-height: 1.5; }
  .hero__ctas { width: 100%; flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; padding: 18px 24px; }
}

/* =========================================================
   SCROLL CUE — Indicador cinematográfico discreto
   ========================================================= */
.hero__scroll-cue {
  position: absolute;
  bottom: clamp(32px, 5vh, 56px);
  right: var(--space-section-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease-out) 1200ms;
}
.hero.is-visible .hero__scroll-cue { opacity: 1; }

.hero__scroll-label {
  font-size: 10px;
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.hero__scroll-track {
  position: relative;
  width: 1px;
  height: 56px;
  background: rgba(70, 230, 255, 0.2);
  overflow: hidden;
}

.hero__scroll-dot {
  position: absolute;
  left: -2px;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 10px rgba(70, 230, 255, 0.8);
  animation: scrollDotFall 2.4s ease-in-out infinite;
}

@keyframes scrollDotFall {
  0%   { top: -8px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 56px; opacity: 0; }
}

@media (max-width: 768px) {
  .hero__scroll-cue { display: none; }
}

/* =========================================================
   4. TRACK RECORD — Coberturas de eventos 2026
   Vitrine de prova social, posicionada logo após o hero
   ========================================================= */
.track {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--space-section-x) clamp(100px, 14vh, 160px);
  background: var(--color-bg-primary);
  overflow: hidden;
  isolation: isolate;
}

/* Glow ambiente sutil — reforça atmosfera "frequência" */
.track::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse,
                rgba(70, 230, 255, 0.06) 0%,
                transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.track__container {
  max-width: 1600px;
  margin: 0 auto;
}

/* HEADER editorial split — eyebrow + título à esquerda, descrição à direita */
.track__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 7vh, 80px);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(70, 230, 255, 0.18);
}

.track__intro {
  max-width: 600px;
}

.track__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.track__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 8px rgba(70, 230, 255, 0.5);
}

.track__title {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.track__title em {
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--color-accent-cyan);
  text-shadow: 0 0 24px rgba(70, 230, 255, 0.45);
}

.track__copy {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--color-text-body);
  margin: 0;
  max-width: 520px;
}
.track__copy strong { font-weight: var(--fw-bold); color: var(--color-text-primary); }

/* GRID de 4 cards verticais */
.track__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
}

/* CARD individual */
.track__card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 4px;
  cursor: default;
  isolation: isolate;
  background: #000;
}

/* Linha ciano superior — desliza no hover */
.track__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 12px rgba(70, 230, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms var(--ease-cinematic);
  z-index: 3;
}
.track__card:hover::before { transform: scaleX(1); }

/* Imagem do card — duotone sutil + zoom no hover */
.track__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Tom unificador — leve dessaturação + tint azul pra coesão visual */
  filter: saturate(0.85) contrast(1.05) brightness(0.95);
  transform: scale(1.02);
  transition: transform 1200ms var(--ease-cinematic),
              filter 600ms var(--ease-out);
  z-index: 0;
}
.track__card:hover .track__card-img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.08) brightness(1);
}

/* Gradiente base inferior — sempre visível, garante leitura do texto */
.track__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(0, 7, 16, 0.0) 0%,
    rgba(0, 7, 16, 0.0) 35%,
    rgba(0, 7, 16, 0.55) 65%,
    rgba(0, 7, 16, 0.92) 100%);
}

/* Conteúdo de texto do card — embaixo */
.track__card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(16px, 1.6vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.track__card-num {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.3em;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.track__card-name {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.track__card-event {
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: var(--fw-medium);
  color: var(--color-text-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

/* Linha ciano divisória entre nome e evento (aparece no hover) */
.track__card-content::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-accent-cyan);
  margin-top: 8px;
  transition: width 700ms var(--ease-cinematic);
  order: 99;
}
.track__card:hover .track__card-content::after { width: 40px; }

/* ---------- RESPONSIVO ---------- */

/* Tablet: 2 colunas */
@media (max-width: 1024px) {
  .track__grid { grid-template-columns: repeat(2, 1fr); }
  .track__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Mobile: 2 colunas pra manter ritmo visual da grade */
@media (max-width: 640px) {
  .track {
    padding-left: 20px;
    padding-right: 20px;
  }
  .track__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .track__card-content { padding: 14px; }
  .track__card-name { font-size: 14px; }
  .track__card-event { font-size: 10px; letter-spacing: 0.04em; }
  .track__card-num { font-size: 10px; }
}

/* =========================================================
   5. SOBRE O EVENTO — Editorial split, datas em destaque
   ========================================================= */
.event {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--space-section-x);
  background: var(--color-bg-secondary);
  overflow: hidden;
  isolation: isolate;
}
.event::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(70, 230, 255, 0.4), transparent);
}

.event__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.event__label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.event__label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 8px rgba(70, 230, 255, 0.5);
}

.event__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.event__title em {
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--color-accent-cyan);
  text-shadow: 0 0 24px rgba(70, 230, 255, 0.45);
}

.event__lead {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--color-text-body);
  max-width: 480px;
}
.event__lead strong { color: var(--color-text-primary); font-weight: var(--fw-bold); }

/* Bloco direito — datas destacadas */
.event__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.event__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(70, 230, 255, 0.12);
}
.event__row:first-child { padding-top: 0; }
.event__row:last-child { border-bottom: none; }

.event__row-label {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-top: 4px;
}
.event__row-value {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.4;
  color: var(--color-text-primary);
  font-weight: var(--fw-medium);
}
.event__row-value strong {
  font-weight: var(--fw-bold);
  color: var(--color-accent-cyan);
}
.event__row-sub {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: var(--fw-regular);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .event__container { grid-template-columns: 1fr; gap: 40px; }
  .event__row { grid-template-columns: 1fr; gap: 8px; }
  .event__row-label { padding-top: 0; }
}

/* =========================================================
   6. A CAPTAÇÃO — Filosofia da direção + equipe Haze
   ========================================================= */
.capture {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--space-section-x);
  background: var(--color-bg-primary);
  overflow: hidden;
}

.capture__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.capture__label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.capture__quote {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  color: var(--color-text-primary);
  letter-spacing: -0.015em;
  max-width: 900px;
  margin: 0 auto clamp(48px, 7vh, 80px);
}
.capture__quote em {
  font-style: italic;
  color: var(--color-accent-cyan);
  font-weight: var(--fw-medium);
  text-shadow: 0 0 28px rgba(70, 230, 255, 0.4);
}

.capture__divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 12px rgba(70, 230, 255, 0.6);
  margin: 0 auto clamp(48px, 6vh, 64px);
}

.capture__team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 40px;
}

.capture__role {
  text-align: left;
  padding: 28px 0;
  position: relative;
}
.capture__role::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px;
  height: 1px;
  background: var(--color-accent-cyan);
}

.capture__role-num {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  display: block;
  font-variant-numeric: tabular-nums;
}
.capture__role-title {
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}
.capture__role-desc {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
  color: var(--color-text-body);
}

@media (max-width: 768px) {
  .capture__team { grid-template-columns: 1fr; gap: 8px; }
}

/* =========================================================
   7. ENTREGÁVEIS — Grid de 6 entregas com aftermovie em destaque
   ========================================================= */
.deliver {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--space-section-x);
  background: var(--color-bg-secondary);
  overflow: hidden;
  isolation: isolate;
}
.deliver::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(70, 230, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.deliver__container { max-width: 1400px; margin: 0 auto; }

.deliver__header { margin-bottom: clamp(48px, 6vh, 72px); }
.deliver__label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.deliver__label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 8px rgba(70, 230, 255, 0.5);
}

.deliver__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  max-width: 800px;
}
.deliver__title em {
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--color-accent-cyan);
  text-shadow: 0 0 24px rgba(70, 230, 255, 0.45);
}

/* Grid de itens — alguns ocupam 2 colunas (destaque) */
.deliver__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}

.deliver__item {
  position: relative;
  padding: clamp(24px, 2.4vw, 36px);
  background: var(--color-bg-card);
  border: 1px solid rgba(70, 230, 255, 0.12);
  border-radius: 4px;
  transition: border-color 400ms var(--ease-out),
              transform 400ms var(--ease-out);
  grid-column: span 2;  /* default: ocupa 2 das 6 colunas (3 itens por linha) */
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.deliver__item:hover {
  border-color: rgba(70, 230, 255, 0.4);
  transform: translateY(-3px);
}

/* Item de destaque (aftermovie) — ocupa 3 colunas, fica maior */
.deliver__item--feature {
  grid-column: span 3;
  background: linear-gradient(135deg,
    rgba(0, 4, 27, 0.8) 0%,
    rgba(16, 160, 223, 0.08) 100%);
  border-color: rgba(70, 230, 255, 0.28);
  min-height: 280px;
}
.deliver__item--feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 12px rgba(70, 230, 255, 0.7);
}

/* Item de largura cheia (bruto) — ocupa as 6 colunas */
.deliver__item--full {
  grid-column: span 6;
  min-height: auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.deliver__item--full .deliver__item-content { flex: 1; min-width: 280px; }

.deliver__item-num {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.3em;
  font-variant-numeric: tabular-nums;
}

.deliver__item-title {
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
}
.deliver__item--feature .deliver__item-title {
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.01em;
}

.deliver__item-desc {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
  color: var(--color-text-body);
  margin: 0;
}

.deliver__item-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(70, 230, 255, 0.25);
  border-radius: 2px;
  background: rgba(70, 230, 255, 0.04);
}

@media (max-width: 1024px) {
  .deliver__grid { grid-template-columns: repeat(4, 1fr); }
  .deliver__item { grid-column: span 2; }
  .deliver__item--feature { grid-column: span 4; }
  .deliver__item--full { grid-column: span 4; }
}
@media (max-width: 640px) {
  .deliver__grid { grid-template-columns: 1fr; gap: 12px; }
  .deliver__item,
  .deliver__item--feature,
  .deliver__item--full { grid-column: span 1; min-height: 0; }
  .deliver__item--full { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* =========================================================
   8. INVESTIMENTO — Dia 1 / Dia 2 em destaque, total discreto
   ========================================================= */
.invest {
  position: relative;
  padding: clamp(100px, 14vh, 160px) var(--space-section-x);
  background: var(--color-bg-primary);
  overflow: hidden;
  isolation: isolate;
}
.invest::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(70, 230, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(16, 160, 223, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.invest__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.invest__label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.invest__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: clamp(56px, 7vh, 80px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Dois blocos de DIA — protagonistas */
.invest__days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  margin-bottom: clamp(40px, 5vh, 56px);
}

.invest__day {
  position: relative;
  padding: clamp(32px, 3.6vw, 56px) clamp(28px, 3vw, 44px);
  background: var(--color-bg-card);
  border: 1px solid rgba(70, 230, 255, 0.18);
  border-radius: 6px;
  text-align: left;
  isolation: isolate;
  overflow: hidden;
}
.invest__day::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 2px;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 14px rgba(70, 230, 255, 0.7);
}

.invest__day-label {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.invest__day-date {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--color-text-muted);
  margin-bottom: clamp(24px, 3vh, 36px);
  letter-spacing: 0.04em;
  display: block;
}

.invest__day-amount {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  display: block;
  font-variant-numeric: tabular-nums;
}
.invest__day-amount-currency {
  display: inline-block;
  font-size: 0.4em;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.08em;
  vertical-align: top;
  margin-right: 0.2em;
  margin-top: 0.55em;
  font-variant-numeric: normal;
}

.invest__day-note {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.5;
  color: var(--color-text-body);
  margin: 0;
}

/* Total — discreto, abaixo dos dias */
.invest__total {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto clamp(40px, 5vh, 56px);
  padding: 18px 32px;
  border-top: 1px solid rgba(70, 230, 255, 0.18);
  border-bottom: 1px solid rgba(70, 230, 255, 0.18);
}
.invest__total-label {
  font-size: 10px;
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.invest__total-amount {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: var(--fw-medium);
  color: var(--color-text-body);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* Condições */
.invest__terms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(32px, 4vh, 48px);
  padding-top: clamp(32px, 4vh, 48px);
  border-top: 1px solid rgba(70, 230, 255, 0.12);
  text-align: left;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.invest__term-label {
  font-size: 10px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.invest__term-value {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: var(--color-text-primary);
  font-weight: var(--fw-regular);
}
.invest__term-value strong { font-weight: var(--fw-bold); color: var(--color-accent-cyan); }

@media (max-width: 768px) {
  .invest__days { grid-template-columns: 1fr; }
  .invest__terms { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   9. ACEITE — Formspree, ID HZ-MIP, mensagem cinematográfica
   ========================================================= */
.accept {
  position: relative;
  padding: clamp(100px, 14vh, 160px) var(--space-section-x);
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.accept::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 1200px; height: 1200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(70, 230, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.accept__container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.accept__label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.accept__title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.accept__title em {
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--color-accent-cyan);
  text-shadow: 0 0 28px rgba(70, 230, 255, 0.5);
}

.accept__lead {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: clamp(40px, 5vh, 56px);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.accept__cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.accept__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px 56px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--gradient-cta);
  color: var(--color-text-cta);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 300ms var(--ease-out),
              box-shadow 300ms var(--ease-out),
              filter 300ms var(--ease-out);
  box-shadow: 0 12px 40px rgba(27, 192, 223, 0.4),
              0 4px 14px rgba(70, 230, 255, 0.3);
  will-change: transform;
}
.accept__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(27, 192, 223, 0.6),
              0 6px 18px rgba(70, 230, 255, 0.45);
  filter: brightness(1.08);
}
.accept__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.accept__validity {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.accept__validity strong { color: var(--color-accent-cyan); }

/* Estado pós-aceite — overlay com mensagem cinematográfica */
.accept__success {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms var(--ease-out);
}
.accept__success.is-active {
  opacity: 1;
  pointer-events: auto;
}
.accept__success-content {
  text-align: center;
  max-width: 600px;
  transform: translateY(20px);
  transition: transform 800ms var(--ease-cinematic);
}
.accept__success.is-active .accept__success-content { transform: translateY(0); }

.accept__success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 32px;
  border: 1.5px solid var(--color-accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 40px rgba(70, 230, 255, 0.5);
}
.accept__success-icon::before,
.accept__success-icon::after {
  content: '';
  position: absolute;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 8px rgba(70, 230, 255, 0.7);
}
.accept__success-icon::before {
  width: 14px; height: 1.5px;
  transform: rotate(45deg) translate(-6px, 6px);
}
.accept__success-icon::after {
  width: 24px; height: 1.5px;
  transform: rotate(-45deg) translate(2px, 0);
}

.accept__success-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  line-height: 1.15;
}
.accept__success-title em {
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--color-accent-cyan);
}
.accept__success-body {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  color: var(--color-text-body);
  margin-bottom: 32px;
}
.accept__success-id {
  display: inline-block;
  padding: 10px 18px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--color-accent-cyan);
  letter-spacing: 0.16em;
  border: 1px solid rgba(70, 230, 255, 0.4);
  border-radius: 3px;
  background: rgba(70, 230, 255, 0.05);
}

/* =========================================================
   10. FOOTER
   ========================================================= */
.foot {
  background: var(--color-bg-primary);
  padding: 56px var(--space-section-x);
  border-top: 1px solid rgba(70, 230, 255, 0.1);
  text-align: center;
}
.foot__brand {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.foot__tagline {
  font-size: 12px;
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: italic;
}

/* =========================================================
   4. BOTÃO CTA — Gradiente ciano do brandbook
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--space-button);
  font-family: var(--font-family);
  font-size: var(--fs-button);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              filter var(--t-base) var(--ease-out);
  will-change: transform;
}

.btn--primary {
  background: var(--gradient-cta);
  color: var(--color-text-cta);
  box-shadow: 0 8px 32px rgba(27, 192, 223, 0.35),
              0 2px 8px rgba(70, 230, 255, 0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27, 192, 223, 0.55),
              0 4px 12px rgba(70, 230, 255, 0.4);
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid rgba(70, 230, 255, 0.35);
  padding: calc(var(--space-button) - 1px);
}
.btn--ghost:hover {
  border-color: var(--color-accent-cyan);
  background: rgba(70, 230, 255, 0.06);
}

@media (max-width: 768px) {
  .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   5. UTILS
   ========================================================= */
.divider {
  display: block;
  width: var(--divider-width);
  height: var(--divider-height);
  background: var(--divider-color);
  border: none;
  margin: 24px 0;
  box-shadow: 0 0 16px rgba(70, 230, 255, 0.5);
}

.section {
  padding: var(--space-section-y) var(--space-section-x);
  position: relative;
}

/* Reduce motion — respeita preferência do usuário */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
