/* ============================================================
   VITAVIDA TELEMEDICINA — Folha de estilos principal
   Paleta: Rose Gold Warm Tone (Identidade Visual 2025)
   Fontes: Sora (títulos) + Inter (corpo)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Variáveis de design (tokens) ── */
:root {
  /* Paleta oficial */
  --off-white:   #FDFAF9;   /* fundo principal — nunca branco frio */
  --cream:       #F5EBE7;   /* seções alternadas */
  --rose-light:  #EDD8D0;   /* cards e divisores */
  --blush:       #DEC0B5;   /* bordas e acentos finos */
  --hover:       #C4A093;   /* hover e badges secundários */
  --text-sec:    #9E7D72;   /* subtítulos e metadados */
  --text-body:   #6B5248;   /* corpo do texto */
  --dark:        #3B2E2A;   /* títulos, hero, footer */
  --neutral:     #B8B0AE;   /* ícones e placeholders */
  --cta:         #DA3F79;   /* botões primários — uso pontual */

  /* Tipografia */
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --section-py:  96px;
  --container:   1200px;
  --gap:         32px;

  /* Bordas */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm:   0 2px 8px rgba(59,46,42,.06);
  --shadow-md:   0 8px 32px rgba(59,46,42,.10);
  --shadow-lg:   0 20px 60px rgba(59,46,42,.14);

  /* Transições */
  --ease:        cubic-bezier(.4,0,.2,1);
  --duration:    220ms;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden; /* Evita scroll horizontal causado pelos marquees */
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilitários globais ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.section-title--light {
  color: #fff;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.375vw, 2.7rem);
  letter-spacing: -.025em;
}

.section-title--light em {
  font-style: normal;
  color: rgba(255,255,255,.55);
  font-weight: 300;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-sec);
  line-height: 1.65;
  max-width: 560px;
  margin-top: 16px;
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(218,63,121,.30);
}
.btn-primary:hover {
  background: #c23570;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(218,63,121,.40);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.6);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--blush);
}
.btn-outline-dark:hover {
  background: var(--cream);
  border-color: var(--hover);
}

/* ── Botão Liquid Glass — estilo Apple ──
   Fundo vidro fosco com brilho interno, borda sutil e sombra.
   Funciona perfeitamente sobre imagens e fundos escuros. */
.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  /* Brilho interno no topo — efeito vidro */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.30),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 4px 24px rgba(0,0,0,.18);
  font-weight: 500;
  letter-spacing: .01em;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.40),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 8px 32px rgba(0,0,0,.24);
  transform: translateY(-1px);
}
.btn-glass:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.15);
}

/* ── Ícone de seta ── */
.arrow-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   Sempre transparente sobre o hero (imagem de fundo).
   Letras brancas. Ao rolar, ganha fundo escuro semitransparente.
   Hover nos links: "balão" rosa com texto branco.
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  /* Totalmente transparente no topo */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              backdrop-filter var(--duration) var(--ease);
}

/* Ao rolar: fundo escuro semitransparente com blur */
.navbar.scrolled {
  background: rgba(30, 22, 20, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,.08);
}

.navbar__inner {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo SVG — sempre branca (o SVG já é branco) */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0; /* remove espaço extra abaixo do img */
}

.navbar__logo-img {
  /* Altura fixa; largura proporcional ao viewBox do SVG (720.95 × 173.52 ≈ 4.15:1) */
  height: 40px;
  width: auto;
  max-width: 180px; /* evita que fique muito larga em telas grandes */
  display: block;
  /* Garante visibilidade sobre qualquer fundo */
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.35));
}

/* Links de navegação */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px; /* gap menor pois o hover usa padding interno */
}

/* Cada link é um wrapper relativo para o balão */
.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85); /* branco ligeiramente suavizado */
  transition: color var(--duration) var(--ease);
  /* O "balão" é o pseudo-elemento ::before */
}

/* Balão rosa no hover */
.navbar__link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: var(--cta);          /* rosa da paleta */
  opacity: 0;
  transform: scale(.85);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  z-index: -1; /* fica atrás do texto */
}

.navbar__link-text {
  position: relative; /* garante que o texto fica acima do ::before */
  z-index: 1;
}

/* Ao passar o mouse: balão aparece, texto fica branco puro */
.navbar__link:hover {
  color: #fff;
}
.navbar__link:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Ações da navbar */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Link "Entrar" — branco semitransparente */
.navbar__login {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--duration) var(--ease);
  padding: 6px 4px;
}
.navbar__login:hover { color: #fff; }

/* Botão CTA da navbar — menor */
.navbar__cta {
  font-size: .8125rem;
  padding: 9px 20px;
}

/* Menu hambúrguer (mobile) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff; /* branco no hero */
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

/* Menu mobile — fundo escuro para combinar com navbar transparente */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(20, 13, 11, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile .navbar__link {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  padding: 10px 14px;
}

/* ============================================================
   HERO — Full-screen com imagem de fundo
   A imagem ocupa toda a viewport. Overlay escuro garante
   legibilidade do texto branco sobreposto.
   ============================================================ */
.hero {
  position: relative;
  /* Imagem de fundo local */
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* Altura mínima: viewport inteira */
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* Sem padding-top: o overlay cobre tudo, navbar fica por cima */
}

/* Overlay: gradiente escuro da esquerda para a direita
   Mais opaco à esquerda (onde está o texto), transparente à direita */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(20,13,11,.82) 0%,
      rgba(20,13,11,.60) 45%,
      rgba(20,13,11,.20) 100%
    );
  z-index: 0;
}

/* O container precisa ficar acima do overlay */
.hero > .container { position: relative; z-index: 1; }

.hero__inner {
  /* Uma só coluna: conteúdo centralizado à esquerda */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-block: 160px 100px; /* espaço generoso acima e abaixo */
  max-width: 680px;            /* limita a largura do texto */
}

/* Coluna esquerda */
.hero__content { display: flex; flex-direction: column; gap: 28px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218,63,121,.12);
  border: 1px solid rgba(218,63,121,.25);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  width: fit-content;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}

.hero__badge-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cta);
}

.hero__title {
  font-family: var(--font-heading);
  /* Reduzido 25%: de clamp(2.4rem, 4.5vw, 3.6rem) para clamp(1.8rem, 3.375vw, 2.7rem) */
  font-size: clamp(1.8rem, 3.375vw, 2.7rem);
  /* Peso reduzido de 800 para 500 — mais elegante, menos pesado */
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--rose-light);
}

.hero__subtitle {
  /* Ajustado: 1.22rem −10% = ~1.1rem */
  font-size: 1.1rem;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  /* Largura ampliada para garantir que a primeira linha não quebre */
  max-width: 680px;
  width: 100%;
  font-weight: 300;
  /* Impede quebra indesejada dentro de cada linha */
  white-space: pre-line;
}

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

/* Barra de trust — 6 benefícios em grid flex
   O card "wide" (9 minutos) ocupa mais espaço horizontalmente */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  max-width: 680px;
}

.trust-chip {
  /* Fundo mais opaco para melhor leitura */
  background: rgba(15, 10, 8, 0.55);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
  flex: 1;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  /* Brilho interno sutil no topo */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  /* Transição suave para o hover */
  transition:
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  cursor: default;
}

/* Hover suave: eleva levemente e ilumina a borda */
.trust-chip:hover {
  background: rgba(218, 63, 121, 0.18);
  border-color: rgba(218, 63, 121, 0.45);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 8px 24px rgba(218,63,121,.15);
}

/* Card largo: 9 minutos — ocupa mais espaço */
.trust-chip--wide {
  min-width: 180px;
  flex: 2;
}

.trust-chip__icon {
  width: 16px;
  height: 16px;
  stroke: var(--cta);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 4px;
}

.trust-chip__value {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.trust-chip__label {
  font-size: .75rem;
  /* Contraste melhorado: de .40 para .70 */
  color: rgba(255,255,255,.72);
  line-height: 1.35;
}

/* Scroll hint — seta animada no rodapé do hero */
.hero__scroll-hint {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: bounce 2.2s ease-in-out infinite;
}

.hero__scroll-hint svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255,255,255,.45);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   SEÇÃO 2 — MARQUEE INFINITO DE PARCEIROS
   Infinite scroll ticker com liquid glass.
   ============================================================ */

/* Fundo gradiente liquid glass — tons de marrom/chocolate da paleta, sem rosa */
.marquee-section {
  background:
    /* Camada 1: brilho cálido no topo — simula reflexo de luz em madeira */
    linear-gradient(
      160deg,
      rgba(120, 60, 20, 0.18) 0%,
      transparent 45%
    ),
    /* Camada 2: gradiente principal em marrom escuro/chocolate */
    linear-gradient(
      135deg,
      #1a1008 0%,       /* quase preto com tom marrom */
      #2e1e10 25%,      /* marrom muito escuro */
      #3B2E2A 55%,      /* marrom da paleta */
      #2a1c12 80%,      /* marrom chocolate */
      #1e1208 100%      /* escuro novamente */
    );
  /* Padding reduzido 20%: 44px → 35px, 36px → 29px */
  padding-block: 35px 29px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

/* Label — centralizada acima da faixa, margem reduzida 20% */
.marquee-section__header {
  text-align: center;
  margin-bottom: 22px;
}

.marquee-section__label {
  font-size: .6875rem;
  font-weight: 600;
  color: #DA3F79;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Faixa externa: posicionamento relativo para as máscaras */
.marquee-track {
  position: relative;
  width: 100%;
}

/* Máscaras de fade nas bordas — criam o efeito de "desaparecer" */
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}
.marquee-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
}

/* Container com overflow oculto — recorta a faixa animada */
.marquee-overflow {
  overflow: hidden;
  width: 100%;
}

/* Faixa animada: flex horizontal sem quebra de linha
   A animação CSS desloca para a esquerda em loop */
.marquee-belt {
  display: flex;
  align-items: center;
  width: max-content;               /* expande para caber todos os itens */
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;           /* otimiza performance de GPU */
}

/* Pausa ao passar o mouse — UX refinado */
.marquee-belt:hover {
  animation-play-state: paused;
}

/* Keyframe: desloca exatamente 50% (= 1 grupo) para loop perfeito */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Grupo de logos: flex horizontal com gap generoso — logos soltas precisam de mais respiro */
.marquee-group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-inline: 28px;
}

/* Cada item do marquee */
.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Logo solta — sem card/pílula ao redor
   Altura: 49px +20% → 59px */
.marquee-logo {
  height: 59px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  /* Logos brancas independente da cor original */
  filter: brightness(0) invert(1);
  opacity: .75;
  transition: opacity var(--duration) var(--ease);
  display: block;
}

.marquee-item:hover .marquee-logo {
  opacity: 1;
}

/* Logos específicas com +20% de tamanho: 59px → 71px */
.marquee-logo--lg {
  height: 71px;
  max-width: 240px;
}

/* Rodapé: selo CFM centralizado */
.marquee-section__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  font-size: .6875rem;
  color: rgba(255,255,255,.30);
  letter-spacing: .04em;
}

.marquee-section__footer svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,.30);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.credibility__seal svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-sec);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   SEÇÃO 3 — STICKY SCROLL SEQUENCE (estilo Apple / Pinterest)
   ============================================================ */

/* Contêiner externo: altura total = 4 passos x 100vh */
.scroll-seq {
  position: relative;
  height: 500vh; /* 4 passos + 1 de entrada */
  background: var(--dark);
}

/* Parte que fica "grudada" na viewport */
.scroll-seq__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 0fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  background: var(--dark);
}

/* Passo 4: expande a coluna esquerda para tela cheia */
.scroll-seq__sticky.is-fullscreen {
  grid-template-columns: 1fr 0fr;
}

/* Coluna direita sempre oculta — imagem full-width em todos os passos */
.scroll-seq__right {
  display: none !important;
}

/* ---- COLUNA ESQUERDA: texto ---- */
.scroll-seq__left {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  /* Garante que a coluna ocupe toda a altura do sticky (100vh) */
  height: 100vh;
  align-self: stretch;
  justify-content: center;
}

/* Camada de imagem de fundo — troca via JS com fade */
.scroll-seq__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity .7s ease, background-image .01s;
  opacity: 1;
}

/* Overlay escuro sobre a imagem para legibilidade do texto */
.scroll-seq__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,8,4,.75) 0%,
    rgba(15,8,4,.45) 55%,
    rgba(15,8,4,.20) 100%
  );
}

/* Garante que o conteúdo fique acima da imagem */
.scroll-seq__left > *:not(.scroll-seq__bg) {
  position: relative;
  z-index: 1;
}

.scroll-seq__label {
  color: var(--cta) !important;
}

.scroll-seq__text-wrap {
  position: relative;
  min-height: 220px;
}

/* Cada bloco de texto: inicialmente oculto e deslocado */
.scroll-seq__step-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}

.scroll-seq__step-text.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-seq__step-text.is-past {
  opacity: 0;
  transform: translateY(-20px);
}

.scroll-seq__step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--cta);
  margin-bottom: 12px;
}

.scroll-seq__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.scroll-seq__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 420px;
}

/* Dots de progresso */
.scroll-seq__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.scroll-seq__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  transition: all .4s var(--ease);
}

.scroll-seq__dot.active {
  width: 24px;
  background: var(--cta);
}

/* ---- COLUNA DIREITA: oculta — imagem full-width em todos os passos ---- */
.scroll-seq__right {
  display: none !important;
}

/* Brilho decorativo no canto */
.scroll-seq__right::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(218,63,121,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Base de todos os cards */
.seq-card {
  width: min(380px, 82%);
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease),
    filter .55s var(--ease);
}

/* CARD ATIVO: destaque total */
.seq-card--active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  z-index: 2;
}

/* CARD PREVIEW: menor, desfocado, opaco — prévia do próximo passo */
.seq-card--preview {
  opacity: .45;
  transform: scale(.82);
  filter: blur(1.5px);
  z-index: 1;
  pointer-events: none;
}

/* Estado de transição: preview fazendo zoom in para se tornar ativo */
.seq-card--preview.is-zooming {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

/* Card ativo saindo: recua e some */
.seq-card--active.is-leaving {
  opacity: 0;
  transform: scale(1.08) translateY(-30px);
  filter: blur(2px);
}

/* No último passo, esconde o preview */
.seq-card--preview.is-hidden {
  opacity: 0;
  transform: scale(.7);
  pointer-events: none;
}

/* Inner do card: liquid glass escuro */
.seq-card__inner {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 24px 64px rgba(0,0,0,.45);
}

/* Brilho no topo do card (liquid glass) */
.seq-card__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
}

/* Ícone do card */
.seq-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(218,63,121,.15);
  border: 1px solid rgba(218,63,121,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seq-card__icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--cta);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Conteúdo textual do card */
.seq-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.seq-card__tag {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cta);
}

.seq-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.seq-card__detail {
  font-size: .9375rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* Brilho rosa no canto inferior do card */
.seq-card__glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(218,63,121,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Espaçadores: invisíveis, apenas criam altura para o scroll */
.scroll-seq__spacers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-seq__spacer {
  height: 25%; /* 4 espaçadores x 25% = 100% da altura total */
}

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
/* ---- SEÇÃO 4: ESPECIALIDADES ---- */
.specialties {
  background: #100b08;
  background-image:
    linear-gradient(to bottom, rgba(16,11,8,.82) 0%, rgba(16,11,8,.72) 60%, rgba(16,11,8,.92) 100%),
    url('../images/spec-bg.webp');
  background-size: cover;
  background-position: center 30%;
  /* background-attachment: fixed removido — conflita com position:sticky */
  padding-top: var(--section-py);
  padding-bottom: 20px;
  /* overflow: hidden removido — conflita com position:sticky */
}

.specialties__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 56px;
}

/* Cards dark glass */
.specialty-chip {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: default;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

/* Brilho interno no topo — igual aos cards da seção 1 */
.specialty-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.specialty-chip:hover {
  background: rgba(218, 63, 121, 0.18);
  border-color: rgba(218, 63, 121, 0.45);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 8px 24px rgba(218,63,121,.15);
}

.specialty-chip__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(218,63,121,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialty-chip__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cta);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialty-chip__name {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
}

.specialty-chip--highlight .specialty-chip__name {
  color: #fff;
  font-weight: 600;
}

.specialty-chip__tag {
  font-size: .65rem;
  font-weight: 700;
  color: var(--cta);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---- Marquee de especialidades ---- */
.spec-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  /* sticky bottom: gruda na base da viewport enquanto a seção
     pai está fixada no topo pelo reveal-stack */
  position: sticky;
  bottom: 0;
}

.spec-marquee__track {
  display: flex;
  width: max-content;
  animation: spec-scroll 35s linear infinite;
}

.spec-marquee__track:hover { animation-play-state: paused; }

.spec-marquee__group {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-right: 0;
}

.spec-marquee__group span {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  padding: 0 20px;
  letter-spacing: .02em;
}

.spec-marquee__group span:hover {
  color: rgba(255,255,255,.9);
  transition: color .2s ease;
}

.spec-marquee__group .sep {
  color: var(--cta);
  font-size: .7rem;
  padding: 0 4px;
  opacity: .7;
}

@keyframes spec-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SEÇÃO DISTRIBUIR (White Label / Canal de Distribuição)
   Fundo escuro com cards de dor/solução em layout horizontal
   ============================================================ */
.distribuir {
  background: var(--dark);
  padding-block: var(--section-py);
  background-image:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(218,63,121,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(218,63,121,.04) 0%, transparent 60%);
}

.distribuir__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.distribuir__label { color: var(--cta); }

.distribuir__left .section-title em {
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}

.distribuir__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.50);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 44ch;
}

.distribuir__cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.distribuir__cta svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--duration) var(--ease);
}

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

/* Grid de cards */
.distribuir__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.dist-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.dist-card:hover {
  background: rgba(218,63,121,.10);
  border-color: rgba(218,63,121,.30);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 24px rgba(218,63,121,.12);
}

.dist-card__icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(218,63,121,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dist-card__icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--cta);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dist-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dist-card__question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.dist-card__answer {
  font-size: .8125rem;
  color: rgba(255,255,255,.42);
  line-height: 1.65;
}

/* ============================================================
   STATS (faixa de métricas)
   Fundo escuro com números grandes em branco — autoridade visual
   ============================================================ */
.stats {
  background: #1a1210;
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}

/* Glow sutil de fundo */
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(218,63,121,.07) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Divisores verticais entre itens */
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,.07);
}

.stat-item {
  background: transparent;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--duration) var(--ease);
}

.stat-item:hover {
  background: rgba(255,255,255,.03);
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
}

/* Destaque rosa no valor */
.stat-item__value em {
  font-style: normal;
  color: var(--cta);
}

.stat-item__label {
  font-size: .875rem;
  color: rgba(255,255,255,.40);
  line-height: 1.4;
  font-weight: 400;
}

/* ============================================================
   PARA EMPRESAS (B2B)
   ============================================================ */
/* ---- REVEAL PANEL STACK ---- */
/* A seção 4 fica sticky enquanto a 5 sobe por cima */
.reveal-stack {
  position: relative;
}

/* Seção 4 gruda no topo enquanto a 5 sobe */
.reveal-stack .specialties {
  position: sticky;
  top: 0;
  z-index: 1;
  /* position:relative necessário para o marquee absolute funcionar */
  /* Sem overflow:hidden e sem background-attachment:fixed */
}

/* A seção B2B sobe como folha branca com bordas arredondadas */
.reveal-panel {
  position: relative;
  z-index: 10;
  border-radius: 32px 32px 0 0;
  margin-top: -48px;
  box-shadow: 0 -12px 48px rgba(0,0,0,.30);
  /* Garante que fica acima da seção sticky */
  will-change: transform;
}

.b2b {
  background: var(--off-white);
  padding-block: var(--section-py);
  padding-top: calc(var(--section-py) + 16px);
}

.b2b__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.b2b__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── B2B: título elegante ── */
.b2b__title {
  font-weight: 600 !important; /* Reduzido de 800 para 600 */
  letter-spacing: -.03em;
}

/* Segunda linha do título B2B — tom terracota quente, sem itálico */
.b2b__title em {
  font-style: normal;
  font-weight: 400;
  /* Tom hover/terracota da paleta — quente, legível, sem ser rosa CTA */
  color: var(--hover);
}

/* ── B2B: cards liquid glass ──
   Referência: botão "Get Started" — glass visível mesmo sem hover:
   - Fundo branco semitransparente
   - Brilho forte no topo (highlight)
   - Sombra interna escura na base (profundidade)
   - Sombra externa difusa (elevação)
   - Borda clara (reflexo de luz)
*/
.b2b-card {
  /* Fundo branco com opacidade média — deixa o fundo off-white vazar */
  background: rgba(255, 253, 251, 0.60);
  /* Borda clara que simula reflexo de luz lateral */
  border: 1px solid rgba(255, 255, 255, 0.85);
  /* Contorno externo sutil para definir o card */
  outline: 1px solid rgba(59, 46, 42, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Blur forte para o efeito glass real */
  backdrop-filter: blur(24px) saturate(200%) brightness(1.06);
  -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(1.06);
  /* Camadas de sombra que criam o efeito glass 3D:
     1. Brilho branco forte no topo (highlight de luz)
     2. Sombra escura na base interna (profundidade)
     3. Sombra externa difusa (card flutuando)
     4. Sombra externa pontual (definição de borda) */
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(59, 46, 42, 0.08),
    0 8px 32px rgba(59, 46, 42, 0.10),
    0 2px 8px rgba(59, 46, 42, 0.08);
  /* Animação escalonada via CSS custom property */
  transition-delay: var(--delay, 0ms);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}

.b2b-card:hover {
  /* Mesmo padrão do botão 'Ver proposta comercial' (btn-outline-dark):
     fundo cream quente + borda hover terracota */
  background: var(--cream);
  border-color: var(--hover);
  outline-color: rgba(59, 46, 42, 0.12);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(59, 46, 42, 0.06),
    0 10px 28px rgba(59, 46, 42, 0.10),
    0 2px 6px rgba(59, 46, 42, 0.07);
}

.b2b-card__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  /* Ícone com fundo glass rosa */
  background: rgba(218,63,121,.12);
  border: 1px solid rgba(218,63,121,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.b2b-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cta);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.b2b-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.02em;
}

.b2b-card__desc {
  font-size: .8125rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ============================================================
   DEPOIMENTOS
   Fundo off-white quente com cards brancos elevados
   ============================================================ */
.testimonials {
  background: var(--off-white);
  padding-block: var(--section-py);
  position: relative;
}

/* Linha decorativa no topo */
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--cta);
  border-radius: 2px;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  box-shadow: 0 4px 20px rgba(59,46,42,.06), 0 1px 4px rgba(59,46,42,.04);
  position: relative;
}

/* Aspas decorativas no topo do card */
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(218,63,121,.10);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(218,63,121,.2);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

/* Estrelas */
.testimonial-card__stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 14px;
  height: 14px;
  fill: var(--cta);
  stroke: none;
}

.testimonial-card__quote {
  font-size: .9375rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.07);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: .75rem;
  color: var(--text-sec);
  margin-top: 2px;
}

/* ============================================================
   FAQ
   Fundo off-white quente, layout 2 colunas
   ============================================================ */
.faq {
  background: var(--off-white);
  padding-block: var(--section-py);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq-item.open { border-color: var(--hover); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  text-align: left;
  transition: background var(--duration) var(--ease);
}

.faq-item__trigger:hover { background: var(--off-white); }
.faq-item.open .faq-item__trigger { background: var(--off-white); }

.faq-item__question {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.faq-item__chevron {
  width: 18px;
  height: 18px;
  stroke: var(--text-sec);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

.faq-item.open .faq-item__chevron { transform: rotate(180deg); stroke: var(--cta); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq-item.open .faq-item__body { max-height: 200px; }

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: .875rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   Fundo escuro premium com glow rosa centralizado
   ============================================================ */
.cta-final {
  background: #100b08;
  padding-block: calc(var(--section-py) * 1.4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Glow de fundo rosa */
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(218,63,121,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(218,63,121,.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(218,63,121,.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Linha horizontal decorativa no topo */
.cta-final::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(218,63,121,.3), transparent);
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218,63,121,.12);
  border: 1px solid rgba(218,63,121,.25);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 28px;
}

.cta-final__eyebrow span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cta);
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  max-width: 640px;
  margin-inline: auto;
  text-wrap: balance;
}

/* Itálico elegante no título do CTA */
.cta-final__title em {
  font-style: italic;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

.cta-final__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  margin-bottom: 40px;
}

.cta-final__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   FOOTER
   Fundo muito escuro com linha decorativa rosa no topo
   ============================================================ */
.footer {
  background: #1a1210;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 72px 36px;
  position: relative;
}

/* Linha rosa no topo do footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(218,63,121,.35) 30%, rgba(218,63,121,.35) 70%, transparent 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  /* Logo branca no footer */
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer__brand-desc {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__brand-meta {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  line-height: 1.8;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: .875rem;
  color: rgba(255,255,255,.35);
  transition: color var(--duration) var(--ease);
}

.footer__link:hover { color: rgba(255,255,255,.75); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

.footer__powered {
  font-size: .75rem;
  color: rgba(255,255,255,.20);
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA (Intersection Observer)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado para filhos */
.fade-up:nth-child(1) { transition-delay: 0ms; }
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }
.fade-up:nth-child(5) { transition-delay: 320ms; }
.fade-up:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero__inner          { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual         { display: none; }
  .hero__trust          { grid-template-columns: repeat(4, 1fr); }

  .steps-grid           { grid-template-columns: repeat(2, 1fr); }
  .features-grid        { grid-template-columns: 1fr 1fr; }
  .specialties__grid    { grid-template-columns: repeat(4, 1fr); }
  .distribuir__inner    { grid-template-columns: 1fr; gap: 48px; }
  .stats__grid          { grid-template-columns: repeat(2, 1fr); }
  /* No tablet, divisores verticais apenas nas colunas pares */
  .stat-item:nth-child(2n+1) + .stat-item { border-left: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
  .b2b__inner           { grid-template-columns: 1fr; gap: 48px; }
  .testimonials__grid   { grid-template-columns: 1fr 1fr; }
  .faq__inner           { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .navbar__links        { display: none; }
  .navbar__login        { display: none; }
  .navbar__hamburger    { display: flex; }

  .hero__trust          { grid-template-columns: repeat(2, 1fr); }
  .hero__ctas           { flex-direction: column; }
  .hero__ctas .btn      { width: 100%; justify-content: center; }

  .steps-grid           { grid-template-columns: 1fr; }
  .features-grid        { grid-template-columns: 1fr; }
  .specialties__grid    { grid-template-columns: repeat(2, 1fr); }
  .specialties__header  { flex-direction: column; align-items: flex-start; }
  .distribuir__cards    { grid-template-columns: 1fr; }
  .stats__grid          { grid-template-columns: 1fr 1fr; }
  /* Remover divisores verticais no mobile e adicionar divisores horizontais */
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
  .stat-item { padding: 32px 24px; }
  .b2b__cards           { grid-template-columns: 1fr; }
  .testimonials__grid   { grid-template-columns: 1fr; }
  .footer__grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom       { flex-direction: column; text-align: center; }
  .cta-final__actions   { flex-direction: column; align-items: center; }
  .cta-final__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ============================================================
   MODAL DE ESPECIALIDADES
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 6, 4, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-box {
  background: rgba(28, 18, 14, 0.92);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(218,63,121,.3) transparent;
}

.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(218,63,121,.3); border-radius: 4px; }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 6px;
}

.modal-subtitle {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  line-height: 1.6;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
  cursor: pointer;
}

.modal-close:hover { background: rgba(218,63,121,.2); }

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,.7);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.modal-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  transition: all 0.2s ease;
  position: relative;
}

.modal-spec-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(218,63,121,.25);
  transform: translateY(-1px);
}

.modal-spec-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(218,63,121,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-spec-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--cta);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-spec-item span {
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.modal-spec-tag {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: .6rem !important;
  font-weight: 700 !important;
  color: var(--cta) !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.modal-footer {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Fechar ao clicar no overlay */
.modal-overlay { cursor: pointer; }
.modal-box { cursor: default; }

@media (max-width: 600px) {
  .modal-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-box { padding: 28px 20px; }
}

/* ============================================================
   LEGAL PAGE (Política de Privacidade / Termos de Uso)
   ============================================================ */
.legal-page {
  background-color: #1a1210;
  color: rgba(255,255,255,.80);
  min-height: 100vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 140px;
  padding-bottom: 80px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.40);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: rgba(255,255,255,.80);
}

.legal-back svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.legal-back:hover svg {
  transform: translateX(-3px);
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0.75rem 0 0.5rem;
  line-height: 1.15;
  font-family: var(--font-heading);
}

.legal-subtitle {
  color: rgba(255,255,255,.40);
  font-size: 0.95rem;
  margin: 0;
}

.legal-content {
  line-height: 1.75;
  color: rgba(255,255,255,.60);
  font-size: 1.0rem;
}

.legal-content h1 {
  display: none; /* Oculta o h1 do markdown pois já temos o h1 da página */
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: rgba(255,255,255,.90);
  margin: 3rem 0 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255,255,255,.80);
  margin: 2rem 0 0.75rem;
  font-weight: 500;
}

.legal-content p {
  margin-bottom: 1.25rem;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--cta);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: #e8578a;
  text-decoration: underline;
}

.legal-content strong {
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.legal-content em {
  color: rgba(255,255,255,.50);
  font-style: italic;
}

.legal-content hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.10), transparent);
  margin: 2.5rem 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.legal-content th, .legal-content td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.legal-content th {
  font-weight: 600;
  color: rgba(255,255,255,.80);
  background-color: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-content tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

.legal-content code {
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--cta);
}

.legal-content ol li a {
  color: rgba(255,255,255,.50);
}

.legal-content ol li a:hover {
  color: var(--cta);
}
