/* ========================================
   GROWTH + SOLUTIONS — Apresentação Comercial
   Sistema "Stage 1920×1080" — posicionamento absoluto 1:1 com Figma
   ======================================== */

:root {
  --c-navy:   #00023D;
  --c-blue:   #0F46FA;
  --c-gold:   #E8AC6C;
  --c-bg:     #FFFFFF;
  --c-ink:    #00023D;

  --t-ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Escala do stage 1920×1080 baseada no viewport (preserva aspect).
     Valor numérico setado por JS em script.js (window resize). */
  --scale: 1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  height: 100%;
  background: #0c0e1a;
  color: var(--c-ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow: hidden;          /* sem scroll — navegação só por teclado */
  margin: 0;
}

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

/* ============ SLIDE BASE ============
   Slides empilhados em position:absolute. Só o slide com .is-shown fica visível.
   Transição de fade entre slides. */
.slide {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;       /* centro vertical (default) */
  justify-content: center;   /* centro horizontal (default) */
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms var(--t-ease), visibility 0ms linear 600ms;
  z-index: 1;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms var(--t-ease), visibility 0ms linear 0ms;
  z-index: 2;
}

/* Cover anchora top-left pra logo bater na borda esquerda */
.slide--cover {
  align-items: flex-start;
  justify-content: flex-start;
}

/* Stage = frame 1920×1080 escalado uniformemente.
   Tudo lá dentro usa coordenadas em px do Figma.
   Por default: centralizado horizontal+vertical no slide. */
.stage {
  position: relative;
  width: 1920px;
  height: 1080px;
  flex-shrink: 0;
  transform-origin: center center;
  transform: scale(var(--scale));
  z-index: 2;
}

/* Cover: stage ancorado top-left (logo na borda esquerda) */
.slide--cover .stage {
  transform-origin: top left;
}

/* ============ ANIMAÇÕES DE REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1100ms var(--t-ease),
    transform 1100ms var(--t-ease);
  will-change: opacity, transform;
}
.slide.is-active .reveal {
  opacity: 1;
  transform: translateY(0);
}
.slide.is-active .reveal[data-delay="100"]  { transition-delay: 100ms; }
.slide.is-active .reveal[data-delay="150"]  { transition-delay: 150ms; }
.slide.is-active .reveal[data-delay="200"]  { transition-delay: 200ms; }
.slide.is-active .reveal[data-delay="300"]  { transition-delay: 300ms; }
.slide.is-active .reveal[data-delay="350"]  { transition-delay: 350ms; }
.slide.is-active .reveal[data-delay="400"]  { transition-delay: 400ms; }
.slide.is-active .reveal[data-delay="500"]  { transition-delay: 500ms; }
.slide.is-active .reveal[data-delay="600"]  { transition-delay: 600ms; }
.slide.is-active .reveal[data-delay="650"]  { transition-delay: 650ms; }
.slide.is-active .reveal[data-delay="700"]  { transition-delay: 700ms; }
.slide.is-active .reveal[data-delay="800"]  { transition-delay: 800ms; }
.slide.is-active .reveal[data-delay="900"]  { transition-delay: 900ms; }
.slide.is-active .reveal[data-delay="950"]  { transition-delay: 950ms; }
.slide.is-active .reveal[data-delay="1100"] { transition-delay: 1100ms; }
.slide.is-active .reveal[data-delay="1250"] { transition-delay: 1250ms; }

/* ============ NAV OVERLAY (estilo weseller) ============ */
.nav-overlay {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-navy);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 350ms var(--t-ease),
    transform 350ms var(--t-ease),
    visibility 0ms linear 350ms;
  z-index: 200;
  user-select: none;
}
.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity 350ms var(--t-ease),
    transform 350ms var(--t-ease),
    visibility 0ms linear 0ms;
}

/* Em slides dark (cover, slide 9 close): tema invertido */
body:has(.slide--cover.is-active) .nav-overlay,
body:has(.slide--close.is-active) .nav-overlay {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 200ms var(--t-ease), opacity 200ms var(--t-ease);
  padding: 0;
}
.nav-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
body:has(.slide--cover.is-active) .nav-btn:hover,
body:has(.slide--close.is-active) .nav-btn:hover {
  background: rgba(255, 255, 255, 0.10);
}
.nav-btn[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

/* ============ PROGRESS DOTS (dentro do overlay) ============ */
.progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 0;
}
.progress .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.30;
  transition: all 260ms var(--t-ease);
  cursor: pointer;
  border: none;
  padding: 0;
}
.progress .dot:hover {
  opacity: 0.6;
}
.progress .dot.is-active {
  opacity: 1;
  transform: scale(1.4);
}

/* ========================================
   SLIDE 1 — COVER (1:1 com Figma)
   Frame 1920×1080, fill #00023D
   ======================================== */
.slide--cover {
  background: var(--c-navy);
  color: #fff;
}

/* Listras decorativas: sempre coladas no canto direito do viewport,
   altura 100vh, mantendo aspect ratio 910:1080 do SVG. */
.s1-stripes-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100vh;
  aspect-ratio: 910 / 1080;
  z-index: 1;
  transform: translateX(150px);
  animation: stripesIn 1600ms var(--t-ease) 200ms forwards;
  pointer-events: none;
}
@keyframes stripesIn { to { transform: translateX(0); } }

/* Logo "Growth + Solutions": 78, 69, 554×212 */
.s1-logo {
  position: absolute;
  left: 78px;
  top: 69px;
  width: 554px;
  height: 212px;
}

/* Tagline 1 "A estrutura que faltava entre o seu trabalho e o crescimento.": 78, 601, 712×106, Inter 48/100%/-3% */
.s1-tag1 {
  position: absolute;
  left: 78px;
  top: 601px;
  width: 712px;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 300;            /* Light */
  line-height: 1.00;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.s1-tag1 em {
  font-style: normal;
  font-weight: 700;            /* Bold pra destaque "estrutura" */
}

/* Tagline 2 "Conquiste a sua autonomia sem depender de indicação.": 78, 808, 458×75, Inter 32/118.2%/0% */
.s1-tag2 {
  position: absolute;
  left: 78px;
  top: 808px;
  width: 458px;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 400;            /* Regular */
  line-height: 1.182;
  letter-spacing: 0;
  color: #FFFFFF;
}
.s1-tag2 strong {
  font-weight: 600;            /* SemiBold pra "sem depender de indicação." */
}

/* Footer texto: 78, 984, Inter Regular 20 */
.s1-foot-text {
  position: absolute;
  left: 78px;
  top: 984px;
  display: flex;
  gap: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  color: #FFFFFF;
}

/* ========================================
   SLIDE 2 — DOR (1:1 com Figma)
   Frame 1920×1080, fill #FFFFFF
   ======================================== */
.slide--2 { background: #FFFFFF; }

/* Spinner: X=192, Y=273, W=549, H=534 */
.s2-spinner {
  position: absolute;
  left: 192px;
  top: 273px;
  width: 549px;
  height: 534px;
}
.s2-spinner img {
  width: 100%;
  height: 100%;
  animation: spin 60s linear infinite;
  transform-origin: center;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Chevron Angle-double-left: X=852, Y=203, W=77, H=77, rotação 90° */
.s2-chevron {
  position: absolute;
  left: 852px;
  top: 203px;
  width: 77px;
  height: 77px;
  transform: rotate(90deg);
}

/* Título "Você sabe fazer...": X=957, Y=195, W=737, H=230, Inter 64/120%/-3% */
.s2-title {
  position: absolute;
  left: 957px;
  top: 195px;
  width: 737px;
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 300;            /* Light */
  line-height: 1.20;
  letter-spacing: -0.03em;
  color: var(--c-navy);
}
.s2-title em {
  font-style: normal;
  font-weight: 500;            /* Medium pra destaque */
}

/* Corpo "A maioria dos brasileiros...": X=959, Y=499, W=844, H=254, Inter 32/160%/-2% */
.s2-body {
  position: absolute;
  left: 959px;
  top: 499px;
  width: 844px;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 400;            /* Regular */
  line-height: 1.60;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}
.s2-body strong {
  font-weight: 600;            /* SemiBold */
}

/* Pill (Group 5): alinhado em X com o corpo de texto (X=959).
   Largura adaptada ao texto — badge não estica. */
.s2-pill {
  position: absolute;
  left: 959px;
  top: 828px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.s2-pill-check {
  width: 47px;
  height: 47px;
  flex-shrink: 0;
}
.s2-pill-tag {
  height: 56px;
  background: var(--c-blue);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 36px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

/* ========================================
   SLIDE 3 — ECOSSISTEMA + VÍDEO (1:1 com Figma)
   Frame 1920×1080, fill #FFFFFF
   Texto e vídeo FORA do stage — posicionados em vw pra
   bater com as proporções do Figma independente da escala. */
.slide--3 { background: #FFFFFF; }

/* Título: figma 74, 43, 693×230, Inter 64/120%/-3%
   Position X em vw (margem proporcional). Width + font em scale
   (mantém ratio width/font igual ao Figma → quebras de linha iguais). */
.s3-title {
  position: absolute;
  left: calc(74 * 100vw / 1920);
  top: calc(43px * var(--scale));
  width: calc(693px * var(--scale));
  font-family: 'Inter', sans-serif;
  font-size: calc(64px * var(--scale));
  font-weight: 300;
  line-height: 1.20;
  letter-spacing: -0.03em;
  color: var(--c-navy);
  z-index: 3;
}
.s3-title em {
  font-style: normal;
  font-weight: 700;
}

/* Corpo: figma 976, 57, 891×203, Inter 32/160%/-2%
   Anchorado pelo RIGHT (alinha com ponta do vídeo, right=45 do figma).
   Width em scale → quebras de linha iguais ao Figma. */
.s3-body {
  position: absolute;
  right: calc(45 * 100vw / 1920);
  top: calc(57px * var(--scale));
  width: calc(891px * var(--scale));
  font-family: 'Inter', sans-serif;
  font-size: calc(32px * var(--scale));
  font-weight: 400;
  line-height: 1.60;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  z-index: 3;
}
.s3-body strong { font-weight: 600; }

/* Vídeo Rectangle 11: figma 50, 336, 1825×701, radius 54
   Anchora nas bordas do viewport horizontalmente, altura escalada. */
.s3-video {
  position: absolute;
  left: calc(50 * 100vw / 1920);
  right: calc(45 * 100vw / 1920);
  top: calc(336px * var(--scale));
  height: calc(701px * var(--scale));
  border-radius: calc(54px * var(--scale));
  background: #D9D9D9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.s3-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   SLIDE 4 — ECOSSISTEMA DA GROWTH® (6 cards + centro)
   Frame 1920×1080, fill #FFFFFF
   ======================================== */
.slide--4 { background: #FFFFFF; }

/* Card base: 491×254, radius 34, fill #00023D, padding 33t/41r/18b/47l, gap 13 */
.s4-card {
  position: absolute;
  width: 491px;
  height: 254px;
  background: var(--c-navy);
  border-radius: 34px;
  padding: 33px 41px 18px 47px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #FFFFFF;
}
/* Frame 11 = header horizontal: ícone + título, gap 26 */
.s4-card-header {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 57px;
}
.s4-card-icon {
  width: 57px;
  height: 57px;
  flex-shrink: 0;
}
.s4-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;            /* Medium */
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.s4-card p {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;            /* Regular */
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

/* Posições dos 6 cards */
.s4-card--comercial      { left: 176px;  top: 222px; }
.s4-card--tecnologia     { left: 714px;  top: 63px;  }
.s4-card--posicionamento { left: 1252px; top: 222px; }
.s4-card--marketing      { left: 176px;  top: 579px; }
.s4-card--metodo         { left: 714px;  top: 748px; }
.s4-card--acompanhamento { left: 1252px; top: 576px; }


/* Centro: Frame X=796, Y=393, W=327, gap 29 (vertical) */
.s4-center {
  position: absolute;
  left: 796px;
  top: 393px;
  width: 327px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
}
.s4-center-text {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 500;             /* Medium */
  line-height: 1.20;
  letter-spacing: -0.03em;
  color: var(--c-navy);
  text-align: center;
}
.s4-center-symbol {
  width: 80px;
  height: auto;
}

/* ========================================
   SLIDE 5 — ICEBERG (1:1 com Figma)
   Imagem full-bleed cover. Labels em coords exatas do Figma. */
.slide--5 { background: #0a3b5c; }

/* Imagem FORA do stage — preenche todo o viewport sem distorcer */
.s5-iceberg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

/* Stage por cima da imagem */
.slide--5 .stage { z-index: 2; }

/* Label base: frame horizontal com texto + linha */
.s5-label {
  position: absolute;
  height: 53px;
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  white-space: nowrap;
}
.s5-label .text { line-height: 1; }
.s5-label .line {
  flex: 1;
  height: 2px;
  background: var(--c-navy);
}
/* Labels da esquerda: texto → linha */
.s5-label--left  { gap: 24px; }
/* Labels da direita: linha → texto */
.s5-label--right { gap: 19px; }
.s5-label--right .line { order: -1; }

/* Labels abaixo da água: texto branco, linha preta */
.s5-label--oferta,
.s5-label--funil,
.s5-label--servico,
.s5-label--time,
.s5-label--fluxo,
.s5-label--pdv,
.s5-label--logistica {
  color: #FFFFFF;
}
.s5-label--oferta .line,
.s5-label--funil .line,
.s5-label--servico .line,
.s5-label--time .line,
.s5-label--fluxo .line,
.s5-label--pdv .line,
.s5-label--logistica .line {
  background: #000000;
}

/* Posições exatas do Figma */
.s5-label--redes      { left: 439px;  top: 255px; width: 335px; }
.s5-label--trafego    { left: 1061px; top: 211px; width: 382px; }
.s5-label--oferta     { left: 550px;  top: 547px; width: 235px; }
.s5-label--funil      { left: 1126px; top: 521px; width: 433px; }
.s5-label--servico    { left: 412px;  top: 693px; width: 373px; }
.s5-label--time       { left: 1126px; top: 640px; width: 560px; }
.s5-label--fluxo      { left: 412px;  top: 839px; width: 433px; }
.s5-label--pdv        { left: 1032px; top: 786px; width: 654px; }
.s5-label--logistica  { left: 994px;  top: 934px; width: 692px; }

/* ========================================
   SLIDE 6 — JORNADA GS® (timeline com 4 marcos)
   Frame 1920×1080, fill #FFFFFF
   ======================================== */
.slide--6 { background: #FFFFFF; }

/* Título "Jornada GS®": position X em vw (margem proporcional ao viewport),
   size em scale. Mesma técnica do slide 3. */
.s6-title {
  position: absolute;
  left: calc(50 * 100vw / 1920);
  top: calc(44px * var(--scale));
  font-family: 'Inter', sans-serif;
  font-size: calc(64px * var(--scale));
  font-weight: 500;
  line-height: 1.20;
  letter-spacing: -0.03em;
  color: var(--c-navy);
  z-index: 3;
}

/* Warning icon: X em vw */
.s6-warning {
  position: absolute;
  left: calc(508 * 100vw / 1920);
  top: calc(55px * var(--scale));
  width: calc(61px * var(--scale));
  height: calc(64px * var(--scale));
  z-index: 3;
}

/* Eyebrow texto: X em vw + width em scale → margem proporcional + quebras iguais */
.s6-eyebrow {
  position: absolute;
  left: calc(589 * 100vw / 1920);
  top: calc(46px * var(--scale));
  width: calc(542px * var(--scale));
  font-family: 'Inter', sans-serif;
  font-size: calc(32px * var(--scale));
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  z-index: 3;
}
.s6-eyebrow strong { font-weight: 600; }

/* Timeline track horizontal (Y=620, entre os cards top e bottom) */
.s6-track {
  position: absolute;
  left: 245px;
  top: 620px;
  width: 1560px;        /* 1805 - 245 */
  height: 3px;
  background: var(--c-blue);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1400ms var(--t-ease) 400ms;
}
.slide.is-active .s6-track {
  transform: scaleX(1);
}

/* Dots da timeline (centralizados no track Y=620, com raio 14) */
.s6-dot {
  position: absolute;
  top: 607px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-blue);
}
.s6-dot--1 { left: 231px; }
.s6-dot--2 { left: 751px; }
.s6-dot--3 { left: 1271px; }
.s6-dot--4 { left: 1791px; }

/* Connecting verticals: do bottom dos cards top até o track,
   e do track até o top dos cards bottom. */
.s6-conn {
  position: absolute;
  width: 2px;
  background: var(--c-blue);
}
.s6-conn--1 { left: 244px;  top: 491px; height: 129px; } /* Diagnóstico bottom (491) → track (620) */
.s6-conn--2 { left: 764px;  top: 620px; height: 117px; } /* track (620) → Implementação top (737) */
.s6-conn--3 { left: 1284px; top: 491px; height: 129px; } /* Treinamento bottom (491) → track (620) */
.s6-conn--4 { left: 1804px; top: 620px; height: 109px; } /* track (620) → Acompanhamento top (729) */

/* Cards (passos da jornada) */
.s6-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.s6-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
}
.s6-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.s6-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}
.s6-card p {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}

.s6-card--1 { left: 112px;  top: 325px; width: 576px; } /* Diagnóstico */
.s6-card--2 { left: 633px;  top: 737px; width: 576px; } /* Implementação */
.s6-card--3 { left: 1152px; top: 325px; width: 576px; } /* Treinamento */
.s6-card--4 { left: 1360px; top: 729px; width: 437px; } /* Acompanhamento */

/* ========================================
   SLIDE 7 — O QUE A OPERAÇÃO JÁ TROUXE
   Frame 1920×1080, fill #FFFFFF
   ======================================== */
.slide--7 { background: #FFFFFF; }

/* Header: Chart-line + título "O que a operação da Growth já trouxe." */
.s7-header {
  position: absolute;
  left: 631px;
  top: 145px;
  width: 659px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.s7-header-icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}
.s7-title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 300;            /* Light */
  line-height: 1.20;
  letter-spacing: -0.03em;
  color: var(--c-navy);
}
.s7-title em {
  font-style: normal;
  font-weight: 500;            /* Medium pra "já trouxe" */
}

/* Cards de métrica: 517×299, radius 33, stroke #00023D, sem fill, padding 45, gap 26 */
.s7-card {
  position: absolute;
  top: 442px;
  width: 517px;
  height: 299px;
  border-radius: 33px;
  border: 2px solid var(--c-navy);
  background: transparent;
  padding: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
}
.s7-card-icon {
  width: 64px;
  height: auto;
}
.s7-card strong {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 700;            /* Bold */
  line-height: 1.10;
  letter-spacing: -0.03em;
  color: var(--c-navy);
}
.s7-card p {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}

.s7-card--1 { left: 159px;  }
.s7-card--2 { left: 701px;  }
.s7-card--3 { left: 1243px; }

/* ========================================
   SLIDE 8 — CTA (Antes de qualquer contrato)
   Frame 1920×1080, fill #FFFFFF
   ======================================== */
.slide--8 { background: #FFFFFF; }

/* Chat icon: figma 242, 331, 385×385.
   Posição X em vw, size em scale. */
.s8-chat {
  position: absolute;
  left: calc(242 * 100vw / 1920);
  top: calc(331px * var(--scale));
  width: calc(385px * var(--scale));
  height: calc(385px * var(--scale));
  z-index: 3;
}

/* Título: figma 957, 245, W=737, Inter Light 64/120%/-3% */
.s8-title {
  position: absolute;
  left: calc(957 * 100vw / 1920);
  top: calc(245px * var(--scale));
  width: calc(737px * var(--scale));
  font-family: 'Inter', sans-serif;
  font-size: calc(64px * var(--scale));
  font-weight: 300;
  line-height: 1.20;
  letter-spacing: -0.03em;
  color: var(--c-navy);
  z-index: 3;
}

/* Corpo: figma 957, 549, W=771, Inter Regular 32/160%/-2% */
.s8-body {
  position: absolute;
  left: calc(957 * 100vw / 1920);
  top: calc(549px * var(--scale));
  width: calc(771px * var(--scale));
  font-family: 'Inter', sans-serif;
  font-size: calc(32px * var(--scale));
  font-weight: 400;
  line-height: 1.60;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  z-index: 3;
}
.s8-body strong { font-weight: 600; }

/* ========================================
   SLIDE 9 — CLOSE (já existe — refazendo 1:1)
   Frame 1920×1080, fill #00023D
   ======================================== */
/* Logo "Growth + Solutions.": 78, 69, 554×212 */
.s9-logo {
  position: absolute;
  left: calc(78 * 100vw / 1920);
  top: calc(69px * var(--scale));
  width: calc(554px * var(--scale));
  height: calc(212px * var(--scale));
  z-index: 3;
}

/* Tagline "Somos o ecossistema da mudança.": 78, 840, W=633, Inter Light 64/120%/-3% */
.s9-tagline {
  position: absolute;
  left: calc(78 * 100vw / 1920);
  top: calc(840px * var(--scale));
  width: calc(633px * var(--scale));
  font-family: 'Inter', sans-serif;
  font-size: calc(64px * var(--scale));
  font-weight: 300;
  line-height: 1.20;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  z-index: 3;
}

/* Slide 9 close — fundo navy */
.slide--close { background: var(--c-navy); color: #fff; }

/* ============ Reduzir movimento ============ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .s2-spinner img, .cover-stripes img {
    animation: none !important;
    transition: opacity 200ms ease !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
