/* ==========================================================
   SPINE QUIROPRAXIA — Landing Page
   Ajustes específicos da landing (o resto vem do design-system-spine/style.css)
   ========================================================== */

/* ---------- Acessibilidade: link "pular para o conteúdo" ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 1000;
  padding: 10px 18px;
  border-radius: var(--r-sm, 8px);
  background: var(--spine-navy, #001280);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--spine-cyan, #00C7FB);
  outline-offset: 2px;
}

/* ---------- TOP NAV: ações do lado direito ---------- */
.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburguer (mobile) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
}
.nav-toggle:hover { background: var(--paper-2); }
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--spine-navy);
  border-radius: 2px;
  transition: transform .2s ease;
}

/* DS adiciona border-top em todas as <section>. Removemos pra ter
   transição contínua entre as seções. */
section { border-top: 0; }

/* ---------- HERO: ocupa exatamente a altura da viewport ---------- */
.hero.hero--bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 100vh;
  height: 100dvh;            /* altura EXATA da tela do dispositivo */
  display: flex;
  align-items: center;
  /* paddings encolhem em telas baixas pra tudo caber */
  padding-top: clamp(72px, 11vh, 120px);   /* respiro pro navbar flutuante */
  padding-bottom: clamp(18px, 3.5vh, 40px);
}
.hero.hero--bg .wrap { position: relative; z-index: 2; width: 100%; }

/* Telas largas: conteúdo da hero mais próximo do canto esquerdo */
@media (min-width: 1200px) {
  .hero.hero--bg .wrap {
    max-width: none;
    padding-left: clamp(48px, 6.5vw, 150px);
    padding-right: 48px;
  }
}

/* Foto ocupando todo o hero, ancorada à direita pra manter o casal em quadro */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/foto_hero_desktop.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Scrim padrão (versão paper) — usado quando hero NÃO é dark */
.hero.hero--bg:not(.hero--dark) .hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--paper) 0%,
      rgba(250, 248, 243, 0.92) 30%,
      rgba(250, 248, 243, 0.55) 55%,
      rgba(250, 248, 243, 0.0) 75%);
  z-index: 1;
}

/* Scrim navy — esquerda escura → direita transparente,
   + leve fade vertical no topo pra navbar legível */
.hero.hero--dark .hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 10, 74, 0.45) 0%,
      rgba(0, 10, 74, 0.0) 220px),
    linear-gradient(90deg,
      rgba(0, 10, 74, 0.92) 0%,
      rgba(0, 10, 74, 0.78) 28%,
      rgba(0, 10, 74, 0.45) 50%,
      rgba(0, 10, 74, 0.0) 72%);
}

/* Conteúdo limitado à metade esquerda */
.hero.hero--bg .hero-grid {
  grid-template-columns: minmax(0, 620px);
}

/* ---------- HERO DARK MODE: texto branco + brush cyan ---------- */
.hero--dark h1 { color: var(--white); }
.hero--dark h1 .brush { color: var(--spine-cyan); }
.hero--dark p { color: rgba(255, 255, 255, 0.78); }
.hero--dark .hero-brand img { filter: brightness(0) invert(1); }

/* ---------- HERO: glows + pontos da marca (cohesão com o resto) ---------- */
.hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--a {
  top: -140px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: rgba(128, 54, 255, 0.38);
}
.hero__glow--b {
  bottom: -160px;
  left: 6%;
  width: 460px;
  height: 460px;
  background: rgba(0, 199, 251, 0.22);
}
.hero__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(90deg, black 0%, black 38%, transparent 70%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 38%, transparent 70%);
}

/* ---------- HERO: tag de localização ---------- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 18px 6px 6px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}
.hero-eyebrow strong { color: var(--white); font-weight: 600; }
.hero-eyebrow__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--spine-navy);
  background: var(--spine-cyan);
  box-shadow: 0 4px 12px rgba(0, 199, 251, 0.4);
}
.hero-eyebrow__pin svg { width: 15px; height: 15px; }

/* ---------- HERO: prova social ---------- */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(10px, 2.6vh, 26px);
}
.hero-proof__stars { display: inline-flex; gap: 3px; }
.hero-proof__stars svg { width: 18px; height: 18px; fill: #ffc46b; }
.hero-proof__text {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}
.hero-proof__text strong { color: var(--white); font-weight: 600; }
.hero-proof__google {
  height: 16px;
  width: auto;
  vertical-align: -3px;
  margin-left: 2px;
}

/* ---------- HERO: contagem de atendimentos ---------- */
.hero-atend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(6px, 1.4vh, 12px);
  padding: 6px 16px 6px 8px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-atend__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--spine-navy);
  background: var(--spine-cyan);
  box-shadow: 0 4px 12px rgba(0, 199, 251, 0.4);
}
.hero-atend__icon svg { width: 15px; height: 15px; }
.hero-atend__text {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}
.hero-atend__text strong { color: var(--white); font-weight: 600; }

/* ---------- HERO: animação de entrada em cascata ---------- */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero-content > * { animation: heroUp .7s var(--ease) backwards; }
.hero-brand        { animation-delay: .05s; }
.hero-eyebrow      { animation-delay: .14s; }
.hero h1           { animation-delay: .24s; }
.hero-content > p  { animation-delay: .36s; }
.hero-actions      { animation-delay: .48s; }
.hero-proof        { animation-delay: .60s; }
.hero-atend        { animation-delay: .72s; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none; }
  .hero-eyebrow__dot { animation: none; }
}

/* Botão secundário do hero — outline branco */
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-pill);
  padding: 17px 28px;
  font-family: var(--ff-sans);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-hero-outline:hover {
  background: var(--white);
  color: var(--spine-navy);
  border-color: var(--white);
}

/* ---------- TOPBAR — navbar flutuante sobre o hero ---------- */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 22px 32px 0;
  display: flex;
  justify-content: center;
}
.topbar__inner {
  display: inline-flex;        /* pill se ajusta ao conteúdo */
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 8px 8px 8px 14px;
  background: rgba(0, 10, 74, 0.32);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
}

/* Logo: pill branca contendo a logo navy */
.topbar__logo {
  background: var(--white);
  border-radius: var(--r-pill);
  padding: 8px 22px 8px 18px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 18, 128, 0.15);
  flex-shrink: 0;
}
.topbar__logo img { height: 26px; width: auto; display: block; }

/* Nav central */
.topbar__nav {
  display: flex;
  gap: 18px;
  padding-left: 6px;
}
.topbar__nav a {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 0;
  transition: opacity .2s ease;
}
.topbar__nav a:hover { opacity: 0.75; }

/* Ações à direita */
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.topbar__cta {
  background: var(--spine-navy);
  color: var(--white);
  padding: 6px 6px 6px 22px;
  border-radius: var(--r-pill);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background .2s ease;
}
.topbar__cta:hover { background: var(--spine-royal); }

.topbar__cta-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  color: var(--spine-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.topbar__cta:hover .topbar__cta-arrow { transform: translate(2px, -2px); }
.topbar__cta-arrow svg { width: 14px; height: 14px; }

@media (max-width: 860px) {
  /* Oculta a navbar inteira no mobile (CTA fica no hero e no botão flutuante) */
  .topbar { display: none; }
}

/* ---------- HERO: ajustes para landing real ---------- */

/* Bloco de marca acima da headline (logo + subtítulo) */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(12px, 2.6vh, 28px);
}
.hero-brand img {
  height: min(96px, 11vh);
  width: auto;
}
.hero-brand__sub {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
}

/* Headline do hero — o DS escala até 132px (vitrine de tipografia).
   Numa landing real, reduzimos para um range mais legível. */
.hero h1 {
  /* largura limita pelo vw; ALTURA da tela limita pelo vh (cabe em telas baixas) */
  font-size: min(clamp(40px, 5.4vw, 72px), 9vh);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

/* Container do CTA único */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--s-2);
}

/* CTA pill com círculo de seta à direita (estilo Laura Duarte) */
.btn-cta {
  padding: 10px 12px 10px 28px;
  gap: 18px;
}
.btn-cta__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--spine-cyan);
  color: var(--spine-navy);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.btn-cta__circle svg { width: 16px; height: 16px; }
.btn-cta:hover .btn-cta__circle { transform: translateX(3px); }

/* Lista de métricas no hero (DS usa .hero-meta como flex; adicionamos reset de lista) */
.hero-meta {
  list-style: none;
  padding: 0;
}

/* ---------- HERO VISUAL: slot da foto sobre o gradiente da marca ---------- */
.hero-visual {
  position: relative;
}
.hero-visual .logo-w {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56%;
  max-width: 280px;
  opacity: 0.18;
  filter: brightness(0) invert(1);
  z-index: 1;
  pointer-events: none;
}
.hero-visual__photo-slot {
  position: absolute;
  inset: 12%;
  border-radius: var(--r-lg);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  z-index: 2;
}
.hero-visual__photo-slot span {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================
   PROBLEMA E IDENTIFICAÇÃO — seção dark, layout assimétrico
   ========================================================== */
.problem {
  position: relative;
  background: var(--spine-navy-deep);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--s-9);
  padding-bottom: var(--s-7);
}

/* Glows decorativos da marca */
.problem__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.problem__glow--a {
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: rgba(128, 54, 255, 0.30);
}
.problem__glow--b {
  bottom: -180px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: rgba(0, 199, 251, 0.18);
}

/* Padrão de pontos sutil */
.problem__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 78%);
}

.problem .wrap { position: relative; z-index: 2; }

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

/* ---------- Coluna esquerda: copy + CTA ---------- */
.problem__aside {
  position: sticky;
  top: 100px;
  align-self: start;
}
.problem__aside h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 0 0 22px;
  font-weight: 700;
  font-variation-settings: "opsz" 96;
}
.problem__aside h2 .brush {
  font-family: var(--ff-brush);
  font-style: italic;
  color: var(--spine-cyan);
  font-weight: 400;
}
.problem__lead {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 32px;
  max-width: 440px;
}
.problem__lead strong {
  color: var(--white);
  font-weight: 600;
}
.problem__cta { align-self: flex-start; }

/* ---------- Coluna direita: checklist ---------- */
.problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  font-family: var(--ff-sans);
  font-size: 15.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  /* animação de entrada (cascata via JS) */
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .5s var(--ease),
    transform .4s var(--ease),
    border-color .3s var(--ease),
    background .3s var(--ease),
    box-shadow .3s var(--ease);
}
.problem-item.is-visible { opacity: 1; transform: translateY(0); }

/* Barra de accent à esquerda — cresce no hover */
.problem-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ffb84d, var(--spine-cyan));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .35s var(--ease);
}

.problem-item.is-visible:hover {
  transform: translateX(6px);
  background: linear-gradient(90deg, rgba(0, 199, 251, 0.10), rgba(255, 255, 255, 0.02));
  border-color: rgba(0, 199, 251, 0.45);
  box-shadow: 0 16px 40px rgba(0, 199, 251, 0.16);
}
.problem-item:hover::before { transform: scaleY(1); }

.problem-item__text { flex: 1; }
.problem-item__text strong { color: var(--white); font-weight: 600; }

.problem-item__icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffc46b;
  background: linear-gradient(135deg, rgba(255, 173, 51, 0.24), rgba(255, 173, 51, 0.07));
  border: 1px solid rgba(255, 173, 51, 0.32);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.problem-item:hover .problem-item__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 0 4px rgba(255, 173, 51, 0.14);
}
.problem-item__icon svg { width: 20px; height: 20px; }

@media (prefers-reduced-motion: reduce) {
  .problem-item { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  .problem-layout { grid-template-columns: 1fr; gap: 36px; }
  .problem__aside { position: static; }
  .problem__lead { max-width: none; }
}
@media (max-width: 560px) {
  .problem { padding-top: 64px; padding-bottom: 64px; }
  .problem-item { font-size: 14.5px; padding: 16px 18px; gap: 14px; }
  .problem-item__icon { width: 38px; height: 38px; }
  .problem__glow--a, .problem__glow--b { display: none; }
}

/* ==========================================================
   COMO FUNCIONA — passo a passo conectado (stepper)
   ========================================================== */
.howto {
  position: relative;
  background: var(--spine-navy-deep);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--s-7);
  padding-bottom: var(--s-7);
}

/* Glows decorativos da marca (igual à seção de vídeos) */
.howto__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.howto__glow--a {
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: rgba(128, 54, 255, 0.32);
}
.howto__glow--b {
  bottom: -160px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: rgba(0, 199, 251, 0.22);
}

/* Padrão de pontos sutil */
.howto__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.howto .wrap { position: relative; z-index: 2; }

.howto__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: var(--s-8);
}
.howto__head h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
  font-weight: 700;
  font-variation-settings: "opsz" 96;
}
.howto__head h2 .brush {
  font-family: var(--ff-brush);
  font-style: italic;
  color: var(--spine-cyan);
  font-weight: 400;
}
.howto__head p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 540px;
}

.howto-steps {
  --node: 52px;
  --gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  max-width: 1200px;
  margin-inline: auto;
}

.howto-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.howto-step__card {
  flex: 1;
}

/* Linha de conexão entre os nós (horizontal no desktop) */
.howto-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: calc(var(--node) / 2);
  left: 50%;
  width: calc(100% + var(--gap));
  height: 2px;
  background: linear-gradient(90deg, var(--spine-cyan), rgba(0, 199, 251, 0.25));
  z-index: 0;
}

/* Nó numerado sobre a linha */
.howto-step__node {
  position: relative;
  z-index: 2;
  width: var(--node);
  height: var(--node);
  margin-bottom: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.65), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 199, 251, 0.40), transparent 55%),
    var(--spine-navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 6px rgba(0, 10, 74, 0.6), 0 12px 28px rgba(0, 18, 128, 0.25);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

/* Card de vidro com o conteúdo do passo */
.howto-step__card {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 30px 26px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.howto-step:hover .howto-step__card {
  transform: translateY(-6px);
  background: rgba(0, 199, 251, 0.06);
  border-color: rgba(0, 199, 251, 0.40);
  box-shadow: 0 22px 50px rgba(0, 199, 251, 0.16);
}
.howto-step:hover .howto-step__node {
  transform: scale(1.06);
  box-shadow: 0 0 0 6px rgba(0, 10, 74, 0.6), 0 16px 36px rgba(0, 199, 251, 0.35);
}

.howto-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--spine-cyan);
  background: rgba(0, 199, 251, 0.10);
  border: 1px solid rgba(0, 199, 251, 0.22);
  transition: transform .3s var(--ease);
}
.howto-step:hover .howto-step__icon { transform: scale(1.08) rotate(-3deg); }
.howto-step__icon svg { width: 26px; height: 26px; }

.howto-step__tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.howto-step__card h3 {
  font-family: var(--ff-display);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}
.howto-step__card p {
  font-family: var(--ff-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* Tablet: grade 2x2 — 4 colunas ficam estreitas demais nesse range */
@media (min-width: 761px) and (max-width: 1080px) {
  .howto-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
    max-width: 680px;
  }
  .howto-step:not(:last-child)::before { display: none; }
}

/* Mobile: timeline vertical com linha conectando os nós */
@media (max-width: 760px) {
  .howto-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
  }
  .howto-step {
    display: grid;
    grid-template-columns: var(--node) 1fr;
    gap: 20px;
    align-items: start;
  }
  .howto-step__node { margin-bottom: 0; }
  .howto-step:not(:last-child)::before {
    top: var(--node);
    left: calc(var(--node) / 2);
    width: 2px;
    height: calc(100% + 24px);
    background: linear-gradient(180deg, var(--spine-cyan), rgba(0, 199, 251, 0.15));
  }
  .howto-step__card { text-align: left; padding: 22px 22px; }
  .howto-step__icon { margin-bottom: 14px; }
}

/* ==========================================================
   COMO A QUIROPRAXIA PODE AJUDAR — 4 cards navy com foto
   ========================================================== */
.benefits {
  position: relative;
  background: var(--spine-navy-deep);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--s-7);
  padding-bottom: var(--s-7);
}

/* Glows decorativos da marca (igual à seção de vídeos) */
.benefits__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.benefits__glow--a {
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: rgba(128, 54, 255, 0.32);
}
.benefits__glow--b {
  bottom: -160px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: rgba(0, 199, 251, 0.22);
}

/* Padrão de pontos sutil */
.benefits__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.benefits .wrap { position: relative; z-index: 2; }

/* Remove a emenda entre as seções escuras — funde as bordas que se tocam
   para o navy-deep sólido, escondendo o corte dos glows no limite */
.howto::before, .benefits::before, .videos::before,
.problem::after, .howto::after, .benefits::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}
.howto::before, .benefits::before, .videos::before {
  top: 0;
  background: linear-gradient(180deg, var(--spine-navy-deep), transparent);
}
.problem::after, .howto::after, .benefits::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--spine-navy-deep), transparent);
}

.benefits__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--s-7);
}
.benefits__head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: var(--s-3);
  color: var(--white);
}
.benefits__head h2 .brush { color: var(--spine-cyan); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.45), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 199, 251, 0.28), transparent 55%),
    var(--spine-navy);
  color: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  /* animação de entrada (cascata via JS) */
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .55s var(--ease),
    transform .4s var(--ease),
    box-shadow .35s var(--ease);
}
.benefit-card.is-visible { opacity: 1; transform: translateY(0); }
.benefit-card.is-visible:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 199, 251, 0.22), 0 0 0 1px rgba(0, 199, 251, 0.30);
}

.benefit-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.55), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 199, 251, 0.30), transparent 55%),
    var(--spine-navy-deep);
  overflow: hidden;
}
.benefit-card__photo--filled { background: var(--spine-navy-deep); }
.benefit-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.benefit-card:hover .benefit-card__photo img { transform: scale(1.07); }

/* Blend suave da foto para o corpo navy */
.benefit-card__photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--spine-navy) 92%);
  pointer-events: none;
}

/* Ícone flutuante na junção foto/corpo */
.benefit-card__icon {
  position: absolute;
  top: -28px;
  right: 18px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.7), transparent 60%),
    var(--spine-royal);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 24px rgba(0, 10, 74, 0.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.benefit-card:hover .benefit-card__icon {
  transform: translateY(-3px) scale(1.08) rotate(-4deg);
  box-shadow: 0 14px 30px rgba(0, 199, 251, 0.4);
}
.benefit-card__icon svg { width: 24px; height: 24px; }

@media (prefers-reduced-motion: reduce) {
  .benefit-card { opacity: 1; transform: none; transition: none; }
  .benefit-card__photo img { transition: none; }
}
.benefit-card__photo-tag {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 8px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: var(--r-sm);
}

.benefit-card__body {
  position: relative;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.benefit-card__body h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.benefit-card__body p {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.benefits__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--s-7);
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   CONHEÇA A SPINE — 3 vídeos verticais 9:16 (DARK MODE)
   ========================================================== */
.videos {
  position: relative;
  background: var(--spine-navy-deep);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--s-7);
  padding-bottom: var(--s-7);  /* menor pra emendar com depoimentos */
}

/* Fade-to-solid no rodapé absorve qualquer brilho do glow,
   matando a linha visível entre vídeos e depoimentos */
.videos::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent 0%, var(--spine-navy-deep) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Glows decorativos da marca (violet + cyan) */
.videos__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.videos__glow--a {
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: rgba(128, 54, 255, 0.32);
}
.videos__glow--b {
  bottom: -160px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: rgba(0, 199, 251, 0.22);
}

/* Padrão de pontos sutil sobre o fundo */
.videos__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.videos .wrap {
  position: relative;
  z-index: 2;
}

/* Header centralizado */
.videos__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  gap: 14px;
}
.videos__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spine-cyan);
  padding: 8px 16px 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(0, 199, 251, 0.08);
  border: 1px solid rgba(0, 199, 251, 0.22);
}
.videos__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--spine-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 199, 251, 0.2);
}
.videos__head h2 {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 0;
  font-weight: 700;
  font-variation-settings: "opsz" 96;
}
.videos__head h2 .brush {
  font-family: var(--ff-brush);
  font-style: italic;
  color: var(--spine-cyan);
  font-weight: 400;
}
.videos__head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin: 0;
}

/* Grid com leve stagger no card do meio */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}
.video-card--offset { transform: translateY(36px); }

/* Card */
.video-card {
  position: relative;
}
.video-card__num {
  position: absolute;
  top: -14px;
  left: -8px;
  z-index: 4;
  font-family: var(--ff-brush);
  font-style: italic;
  font-size: 60px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  font-weight: 400;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

.video-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.45), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 199, 251, 0.28), transparent 55%),
    var(--spine-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  isolation: isolate;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.video-card:hover .video-card__media {
  transform: translateY(-6px);
  border-color: rgba(0, 199, 251, 0.45);
  box-shadow: 0 20px 50px rgba(0, 199, 251, 0.18), 0 0 0 1px rgba(0, 199, 251, 0.3);
}

.video-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Chip de categoria — top left */
.video-card__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  padding: 7px 14px;
  background: rgba(0, 10, 74, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
}

/* Play button + pulse anel cyan */
.video-card__play {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--spine-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 14px 40px rgba(0, 10, 74, 0.5);
}
.video-card__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--spine-cyan);
  color: var(--spine-navy);
}
.video-card__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  position: relative;
  z-index: 2;
}
.video-card__play-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(0, 199, 251, 0.6);
  animation: video-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes video-pulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Overlay com título — dentro da mídia, no rodapé */
.video-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px 22px;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 10, 74, 0.55) 75%,
    rgba(0, 10, 74, 0.92) 100%
  );
  pointer-events: none;
}
.video-card__overlay h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
}
.video-card__overlay p {
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* Quando o vídeo toca, escondemos chip e play (overlay continua) */
.video-card.is-playing .video-card__play,
.video-card.is-playing .video-card__chip {
  opacity: 0;
  pointer-events: none;
}
.video-card.is-playing .video-card__overlay { opacity: 0; }
.video-card__play,
.video-card__chip,
.video-card__overlay { transition: opacity .25s ease; }

/* CTA no rodapé da seção */
.videos__cta {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin: 56px auto 0;
  padding: 14px 16px 14px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
  font-family: var(--ff-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: background .2s ease, border-color .2s ease;
}
.videos__cta:hover {
  background: rgba(0, 199, 251, 0.14);
  border-color: rgba(0, 199, 251, 0.4);
}
.videos__cta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--spine-cyan);
  color: var(--spine-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.videos__cta:hover .videos__cta-arrow { transform: translate(2px, -2px); }
.videos__cta-arrow svg { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; gap: 16px; }
  .video-card--offset { transform: none; }
  .videos-grid .video-card:nth-child(3) { grid-column: 1 / -1; max-width: 300px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .videos { padding-top: 64px; padding-bottom: 64px; }
  /* Uma coluna em tela cheia — os 3 vídeos ficam claramente visíveis */
  .videos-grid { grid-template-columns: 1fr; max-width: 380px; }
  .videos-grid .video-card,
  .videos-grid .video-card:nth-child(3) { grid-column: auto; max-width: none; margin: 0; transform: none; }
  .video-card__num { font-size: 48px; }
  .videos__glow--a, .videos__glow--b { display: none; }
}

/* ==========================================================
   SOBRE NÓS + SERVIÇOS — seção clara (paper)
   ========================================================== */
.about {
  position: relative;
  background: var(--spine-navy-deep);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--s-5);
  padding-bottom: var(--s-8);
}
.about__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.about__glow--a { top: -120px; right: -120px; width: 480px; height: 480px; background: rgba(128, 54, 255, 0.32); }
.about__glow--b { bottom: -160px; left: -120px; width: 540px; height: 540px; background: rgba(0, 199, 251, 0.22); }
.about__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.about .wrap { position: relative; z-index: 2; }

/* Fusão com as seções vizinhas — mesmo navy-deep nas bordas que se tocam,
   escondendo qualquer linha de divisão (igual às outras seções escuras) */
.about::before, .about::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}
.about::before { top: 0; background: linear-gradient(180deg, var(--spine-navy-deep), transparent); }
.about::after { bottom: 0; background: linear-gradient(0deg, var(--spine-navy-deep), transparent); }

/* Cabeçalho */
.about__head { align-items: center; text-align: center; margin-bottom: var(--s-5); }
.about__head .eyebrow { justify-content: center; margin-bottom: var(--s-3); color: var(--spine-cyan); }
.about__head .eyebrow::before { background: var(--spine-cyan); }
.about__head h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.15; max-width: none; color: var(--white); }
.about__head p { margin-left: auto; margin-right: auto; color: rgba(255, 255, 255, 0.78); }
.about__head h2 .brush,
.about-services__head h2 .brush { color: var(--spine-cyan); }

/* Galeria "leque" — fotos empilhadas no centro que se abrem; arrastáveis */
/* ----------------------------------------------------------------
   PADRÃO (mobile-first): grade limpa, centralizada e alinhada.
   O efeito de "leque" sobreposto é aplicado só no desktop (min-width:901px).
   ---------------------------------------------------------------- */
.about-fan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(290px, 64vw, 420px);
  margin-bottom: 0;
}
.about-fan__hint { display: none; } /* não utilizado nesta versão */
/* Palco central: as fotos partem empilhadas aqui e "abrem" em leque (efeito mola) */
.about-fan__stage {
  position: relative;
  /* box quadrado 1:1. mobile usa o vw (intacto); desktop usa o teto (max) */
  width: clamp(190px, 54vw, 300px);
  height: clamp(190px, 54vw, 300px);
}
.about-fan__photo {
  position: absolute;
  inset: 0;
  /* estado inicial: todas empilhadas no centro */
  opacity: 0;
  transform: translate(0, 0) scale(.86);
  transition:
    opacity .4s ease,
    transform .9s cubic-bezier(0.34, 1.56, 0.64, 1); /* overshoot tipo "spring" */
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}
/* alvos do leque: abre na horizontal, leve deslocamento vertical e rotação (responsivo) */
.about-fan__photo:nth-child(1) { --tx: clamp(-200px, -28vw, -82px); --ty: 14px; --rot: -3deg; --delay: 0s;   z-index: 30; }
.about-fan__photo:nth-child(2) { --tx: 0px;                          --ty: -8px; --rot:  2deg; --delay: .12s; z-index: 50; }
.about-fan__photo:nth-child(3) { --tx: clamp(82px, 28vw, 200px);     --ty: 18px; --rot:  3deg; --delay: .24s; z-index: 20; }
/* aberto: cada foto desliza (com mola) para sua posição no leque */
.about-fan.is-visible .about-fan__photo {
  opacity: 1;
  transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--rot, 0deg)) scale(1);
}

.about-fan__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(128, 54, 255, 0.55), transparent 60%),
    radial-gradient(circle at 75% 80%, rgba(0, 199, 251, 0.45), transparent 58%),
    var(--spine-navy);
  box-shadow: 0 20px 50px rgba(0, 10, 74, 0.45);
  cursor: grab;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s var(--ease);
  -webkit-user-select: none;
  user-select: none;
  touch-action: none; /* permite arrastar a foto no toque */
}
.about-fan__inner img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* nunca distorce (proporção da imagem = a do box) */
  display: block;
  pointer-events: none;
}
/* hover: destaca e traz para frente */
.about-fan__photo:hover { z-index: 9999; }
.about-fan__photo:hover .about-fan__inner {
  transform: scale(1.08);
  box-shadow: 0 30px 70px rgba(0, 199, 251, 0.28);
}
/* durante o arraste: segue o cursor sem atraso */
.about-fan__photo.is-dragging { z-index: 9999; }
.about-fan__photo.is-dragging .about-fan__inner {
  cursor: grabbing;
  transition: box-shadow 0.3s var(--ease);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5);
}

/* Subseção de serviços */
.about-services { margin-top: var(--s-5); }
.about-services__head {
  margin-bottom: var(--s-6);
  text-align: center;
  align-items: center;
}
.about-services__head h2 { font-size: clamp(26px, 3.2vw, 40px); margin: 0; color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.45), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 199, 251, 0.28), transparent 55%),
    var(--spine-navy);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-xl);
  padding: 36px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 10, 74, 0.40);
  /* reveal em cascata (via JS) */
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s var(--ease), transform .45s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease);
}
.service-card.is-visible { opacity: 1; transform: translateY(0); }
.service-card.is-visible:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 199, 251, 0.22), 0 0 0 1px rgba(0, 199, 251, 0.30);
}
/* ---- Card destacado: acento violeta + selo ---- */
.service-card--featured {
  background:
    radial-gradient(circle at 80% 0%, rgba(128, 54, 255, 0.55), transparent 55%),
    radial-gradient(circle at 20% 100%, rgba(0, 199, 251, 0.30), transparent 55%),
    var(--spine-navy);
  border-color: rgba(128, 54, 255, 0.40);
}

.service-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  color: var(--white);
  background: var(--grad-brand-h);
  box-shadow: 0 8px 20px rgba(128, 54, 255, 0.45);
}

/* cabeçalho do card: ícone + categoria */
.service-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.service-card__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.85), transparent 60%), var(--spine-royal);
  box-shadow: 0 10px 24px rgba(0, 59, 215, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.service-card--featured .service-card__icon {
  background: radial-gradient(circle at 30% 30%, rgba(128, 54, 255, 0.95), transparent 60%), var(--spine-violet);
  box-shadow: 0 10px 26px rgba(128, 54, 255, 0.5);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spine-cyan);
}

.service-card__title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}

/* especificidade extra p/ vencer `.service-card p` do design system */
.service-card p.service-card__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
  flex: none;
}

/* lista de itens inclusos */
.service-card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}
.service-card__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--spine-navy-deep);
  background: var(--spine-cyan);
}
.service-card__check svg { width: 12px; height: 12px; }

/* CTA: botão branco que contrasta com o fundo navy (nos dois cards) */
.service-card__cta {
  align-self: flex-start;
  margin-top: auto;
  background: var(--white);
  color: var(--spine-navy);
  border-color: transparent;
}
.service-card__cta:hover { background: rgba(255, 255, 255, 0.88); color: var(--spine-navy); }

@media (prefers-reduced-motion: reduce) {
  .about-fan__photo { transition: none; }
  .about-fan__inner { transition: none; }
  .service-card { opacity: 1; transform: none; transition: none; }
}

/* Responsivo */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .about { padding-top: var(--s-7); padding-bottom: var(--s-7); }
  .about-fan__inner { border-radius: 18px; }
  .service-card { padding: 26px 22px; }
  .service-card__badge { position: static; align-self: flex-start; margin-bottom: 16px; }
}

/* ==========================================================
   DEPOIMENTOS — emenda o navy-deep da seção de vídeos acima
   ========================================================== */
.testimonials {
  background: var(--spine-navy-deep);
  padding-top: 0;  /* sem gap entre vídeos e depoimentos */
}
.testimonials { background: var(--paper); }

/* O card encosta nas bordas — neutraliza o wrap só nessa seção */
.testimonials > .wrap {
  max-width: none;
  padding: 0;
}

.testimonials__card {
  background: var(--spine-navy-deep);
  border-radius: 0;
  padding: 64px 0 0;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

/* Conteúdo interno do card volta pro contêiner de 1240px */
.testimonials__head,
.testimonials__carousel,
.testimonials__nav {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials__faq-tray > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials__head {
  text-align: center;
  padding: 0 32px;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials__head h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 16px;
  font-weight: 700;
  font-variation-settings: "opsz" 96;
}
.testimonials__head h2 .brush {
  font-family: var(--ff-brush);
  font-style: italic;
  color: var(--spine-cyan);
  font-weight: 400;
}
.testimonials__head p {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.testimonials__head p strong {
  color: var(--white);
  font-weight: 600;
}

/* ---------- Spine na mídia (entrevistas YouTube) ---------- */
.media-feature {
  max-width: 1240px;
  margin: 48px auto 40px;
  padding: 0 32px;
}
.media-feature__head {
  text-align: center;
  margin-bottom: 28px;
}
.media-feature__eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spine-cyan);
  margin-bottom: 10px;
}
.media-feature__head h3 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  font-weight: 700;
  font-variation-settings: "opsz" 96;
}
.media-feature__head h3 .brush {
  font-family: var(--ff-brush);
  font-style: italic;
  color: var(--spine-cyan);
  font-weight: 400;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.media-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.media-card:hover .media-card__thumb {
  transform: translateY(-4px);
  border-color: rgba(0, 199, 251, 0.4);
  box-shadow: 0 26px 56px rgba(0, 199, 251, 0.18);
}
.media-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.media-card:hover .media-card__thumb img { transform: scale(1.05); }
.media-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 10, 74, 0.15), rgba(0, 10, 74, 0.55));
  pointer-events: none;
}

.media-card__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 16px 0 0;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}
.media-card__caption img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);   /* logo em branco */
}

.media-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 50px;
  border-radius: 14px;
  background: #ff0000;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.media-card__thumb:hover .media-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #ff2020;
}
.media-card__play svg { width: 26px; height: 26px; margin-left: 2px; }

/* iframe carregado no clique cobre a miniatura */
.media-card__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 5;
}
.media-card.is-active .media-card__thumb::after,
.media-card.is-active .media-card__play { display: none; }

@media (max-width: 760px) {
  .media-grid { grid-template-columns: 1fr; gap: 18px; }
  .media-feature { margin-bottom: 32px; }
}

/* Carrossel de depoimentos — arrastável (drag) + scroll-snap */
.testimonials__carousel {
  --vis: 5;
  --gap: 16px;
  display: flex;
  gap: var(--gap);
  padding: 22px 32px 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.testimonials__carousel::-webkit-scrollbar { display: none; }
.testimonials__carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

/* Controles de navegação (setas) */
.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px 0;
}
.testi-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--spine-navy);
  border: 1px solid rgba(0, 18, 128, 0.12);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}
.testi-arrow:hover { background: var(--spine-navy); color: var(--white); transform: translateY(-2px); }
.testi-arrow:disabled { opacity: 0.35; cursor: default; transform: none; }
.testi-arrow svg { width: 20px; height: 20px; }

/* Card individual de depoimento */
.testi {
  flex: 0 0 calc((100% - (var(--vis) - 1) * var(--gap)) / var(--vis));
  scroll-snap-align: start;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.45), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 199, 251, 0.28), transparent 55%),
    var(--spine-navy);
  border-radius: 18px;
  border: 1px solid transparent;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  align-self: flex-start;
  overflow: hidden;
  /* estado inicial da animação de entrada */
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .55s var(--ease),
    transform .4s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}

/* ---- Card de depoimento em destaque ---- */
.testi--featured {
  border-color: rgba(0, 199, 251, 0.45);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 199, 251, 0.22), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(128, 54, 255, 0.35), transparent 55%),
    var(--spine-navy);
  box-shadow:
    0 0 0 1px rgba(0, 199, 251, 0.30),
    0 20px 50px rgba(0, 199, 251, 0.18);
}
.testi--featured::before {
  transform: scaleX(1) !important; /* barra do topo sempre visível */
}
.testi--featured.is-visible:hover {
  box-shadow:
    0 0 0 1px rgba(0, 199, 251, 0.55),
    0 28px 64px rgba(0, 199, 251, 0.28);
}

.testi__badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spine-navy-deep);
  background: var(--spine-cyan);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(0, 199, 251, 0.45);
}

/* Barra de destaque (gradiente) que cresce no topo no hover */
.testi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand-h, linear-gradient(90deg, var(--spine-violet), var(--spine-cyan)));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease);
}

/* Aparece quando entra na viewport (via JS) */
.testi.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover — eleva, sombra, borda accent e detalhes ganham vida */
.testi.is-visible:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 56px rgba(0, 18, 128, 0.20);
  border-color: rgba(0, 199, 251, 0.35);
}
.testi:hover::before { transform: scaleX(1); }

.testi__stars { transition: transform .35s var(--ease), color .35s var(--ease); }
.testi:hover .testi__stars { transform: scale(1.06); color: var(--white); transform-origin: left center; }

.testi__avatar { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.testi:hover .testi__avatar {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(128, 54, 255, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .testi { opacity: 1; transform: none; transition: none; }
  .testi::before, .testi__stars, .testi__avatar { transition: none; }
}

.testi__stars {
  display: flex;
  gap: 4px;
  color: var(--spine-cyan);
}
.testi__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testi__quote {
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi.is-expanded .testi__quote {
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

/* Botão "Ver mais" — só aparece quando o texto excede o card (via JS) */
.testi__more {
  display: none;
  align-self: flex-start;
  margin: -4px 0 0;
  padding: 0;
  background: none;
  border: 0;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--spine-cyan);
  cursor: pointer;
}
.testi__more:hover { text-decoration: underline; }
.testi.has-overflow .testi__more { display: inline-flex; }

.testi__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--spine-periwinkle), var(--spine-violet));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testi__name {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.testi__age {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ---------- FAQ tray paper dentro do card navy ---------- */
.testimonials__faq-tray {
  background: var(--paper);
  border-radius: 28px 28px 0 0;
  margin-top: 48px;
  padding: 56px 48px 64px;
  position: relative;
  isolation: isolate;
}

/* Padrão de pontos sutil — dá textura ao paper */
.testimonials__faq-tray::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 18, 128, 0.06) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 65%);
  border-radius: inherit;
}

.testimonials__faq-tray > * { position: relative; z-index: 1; }

.testimonials__faq-head {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 720px;
}
.testimonials__faq-head h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--spine-navy);
  margin: 0 0 12px;
  font-weight: 700;
  font-variation-settings: "opsz" 96;
}
.testimonials__faq-head h3 .brush {
  font-family: var(--ff-brush);
  font-style: italic;
  color: var(--spine-royal);
  font-weight: 400;
}
.testimonials__faq-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.testimonials__faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}

@media (max-width: 1180px) {
  .testimonials__carousel { --vis: 4; }
}
@media (max-width: 960px) {
  .testimonials__carousel { --vis: 3; }
  .testimonials__faq-tray { padding: 40px 28px 48px; }
}
@media (max-width: 760px) {
  .testimonials__carousel { --vis: 2; }
}
@media (max-width: 720px) {
  .testimonials__faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .testimonials__card { padding: 48px 0 0; }
  .testimonials__head { margin-bottom: 32px; padding: 0 24px; }
  .testimonials__carousel { --vis: 1.15; padding: 18px 24px 24px; }
  .testimonials__nav { padding: 16px 24px 0; }
  .testimonials__faq-tray { margin-top: 36px; padding: 32px 24px 40px; border-radius: 22px 22px 0 0; }
}

/* ==========================================================
   CTA FINAL + LOCALIZAÇÃO + MAPA
   ========================================================== */
.cta-final {
  background: var(--paper);
  padding-top: var(--s-5);
}

/* Layout em 2 colunas: conteúdo (esq.) + mapa (dir.) */
.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}

.cta-final__info {
  display: flex;
  flex-direction: column;
}
.cta-final__info h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--spine-navy);
  margin: 0 0 18px;
  font-weight: 700;
  font-variation-settings: "opsz" 96;
}
.cta-final__info h2 .brush {
  font-family: var(--ff-brush);
  font-style: italic;
  color: var(--spine-violet);
  font-weight: 400;
}
.cta-final__info p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 480px;
}

/* Endereço — card sutil ancorado no rodapé da coluna */
.cta-final__addr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-family: var(--ff-sans);
}
.cta-final__pin {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 199, 251, 0.14);
  color: var(--spine-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-final__pin svg { width: 20px; height: 20px; }

.cta-final__addr > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cta-final__addr strong {
  color: var(--spine-navy);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
/* CTAs: WhatsApp primary + Instagram secondary, lado a lado */
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.cta-final__btn { white-space: nowrap; }

/* Ícone (WA/IG) à esquerda do texto, sem distorcer o círculo da seta da direita */
.btn-cta__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Botão IG: outline navy → no hover preenche com gradiente da marca */
.cta-final__btn--ig:hover {
  background: var(--grad-brand-h);
  border-color: transparent;
  color: var(--white);
}
.cta-final__btn--ig:hover .btn-cta__circle {
  background: var(--white);
  color: var(--spine-violet);
}

/* Mapa — preenche a altura da coluna */
.cta-final__map {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  box-shadow: 0 18px 44px rgba(0, 18, 128, 0.08);
}
.cta-final__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 860px) {
  .cta-final__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-final__addr { margin-top: 24px; }
  .cta-final__map { min-height: 320px; height: 320px; }
}
@media (max-width: 480px) {
  .cta-final__btn { width: 100%; justify-content: center; }
}

/* ==========================================================
   FAQ pills — dentro do tray dos depoimentos
   ========================================================== */

/* Cada item — card pill com sombra sutil e accent na barra esquerda */
.faq__item {
  background: var(--white);
  border: 1px solid rgba(0, 18, 128, 0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

/* Stripe vertical (gradiente da marca) aparece no hover/open */
.faq__item::before {
  content: '';
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--spine-royal), var(--spine-cyan));
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.faq__item:hover {
  border-color: rgba(0, 199, 251, 0.40);
  box-shadow: 0 8px 24px rgba(0, 18, 128, 0.07);
  transform: translateY(-2px);
}
.faq__item:hover::before { opacity: 0.7; }

.faq__item[open] {
  border-color: rgba(0, 199, 251, 0.55);
  box-shadow: 0 16px 38px rgba(0, 18, 128, 0.10);
}
.faq__item[open]::before { opacity: 1; }

/* Trigger — flex: número | pergunta | plus */
.faq__trigger {
  list-style: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  line-height: 1.3;
}
.faq__trigger::-webkit-details-marker { display: none; }
.faq__trigger::marker { display: none; }

/* Número — badge arredondado (ecoa os nós da seção "Como funciona") */
.faq__num {
  font-family: var(--ff-brush);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--spine-royal);
  font-weight: 400;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(0, 18, 128, 0.05);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq__item:hover .faq__num {
  background: rgba(0, 199, 251, 0.14);
}
.faq__item[open] .faq__num {
  color: var(--white);
  transform: scale(1.04);
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.55), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 199, 251, 0.32), transparent 55%),
    var(--spine-navy);
}

/* Pergunta — flex:1 pra empurrar o plus pra direita */
.faq__question {
  flex: 1;
  font-family: var(--ff-display);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--spine-navy);
}

/* Plus button */
.faq__plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  color: var(--spine-navy);
  background: rgba(0, 18, 128, 0.06);
  border: 1px solid transparent;
  flex-shrink: 0;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  line-height: 1;
}
.faq__item:hover .faq__plus {
  background: rgba(0, 199, 251, 0.16);
  color: var(--spine-royal);
}
.faq__item[open] .faq__plus {
  transform: rotate(45deg);
  background: var(--spine-royal);
  color: var(--white);
}

/* Content */
.faq__content {
  padding: 0 22px 22px 80px;  /* alinhado com a pergunta (depois do badge) */
  font-family: var(--ff-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
}
.faq__item[open] .faq__content {
  animation: faqReveal .28s var(--ease);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .faq__content { padding-left: 22px; }
}

/* ---------- CTA no rodapé do FAQ ---------- */
.faq__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 30%, rgba(88, 125, 255, 0.45), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 199, 251, 0.28), transparent 55%),
    var(--spine-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.faq__cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq__cta-text strong {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.faq__cta-text span {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.faq__cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  background: linear-gradient(135deg, #2ce06f, #1faf54);
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--ff-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.40);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  flex-shrink: 0;
}
.faq__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

/* Brilho que varre o botão no hover */
.faq__cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left .55s var(--ease);
  pointer-events: none;
}
.faq__cta-btn:hover::before { left: 130%; }

/* Ícone do WhatsApp em círculo translúcido */
.faq__cta-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
}
.faq__cta-ico svg { width: 18px; height: 18px; }

.faq__cta-label { position: relative; z-index: 1; }

/* Seta em círculo branco — desliza no hover */
.faq__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: #1faf54;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.faq__cta-btn:hover .faq__cta-arrow { transform: translateX(3px); }
.faq__cta-arrow svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .faq__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .faq__cta-btn { width: 100%; justify-content: center; }
}

/* ==========================================================
   FOOTER — barra única navy com créditos
   ========================================================== */
.site-footer {
  background: var(--spine-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 22px 0;
  font-family: var(--ff-sans);
  font-size: 13px;
  border-top: 0;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer strong {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 560px) {
  .site-footer { text-align: center; }
  .site-footer__inner { justify-content: center; }
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 960px) {
  .top-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--sh-3);
  }
  .top-nav.is-open { display: flex; }
  .top-nav a {
    padding: 12px 14px;
    font-size: 14.5px;
  }

  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  .hero { padding: var(--s-7) 0 var(--s-8); }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
  .hero-meta-item .val { font-size: 22px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  /* Mobile: hero com ALTURA EXATA da tela; conteúdo centralizado e
     encolhendo conforme a altura pra TUDO caber (sem cortar botões/+33 mil). */
  .hero.hero--bg {
    height: 100vh;
    height: 100dvh;
    align-items: center;
    padding-top: clamp(60px, 9vh, 88px);
    padding-bottom: clamp(16px, 3vh, 40px);
  }
  /* Foto específica para o hero no mobile */
  .hero.hero--bg .hero__bg {
    background-image: url('assets/foto_hero_mobile.webp');
    background-position: center top;
  }

  /* Conteúdo centralizado no mobile */
  .hero.hero--bg .hero-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; align-items: center; min-width: 0; max-width: 100%; }
  /* H1 menor no mobile (largura) E limitado pela altura da tela (vh) */
  .hero h1 {
    font-size: min(clamp(28px, 7.5vw, 40px), 7.4vh);
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero-content > p { font-size: 15px; }
  .hero-brand { justify-content: center; }
  .hero-brand img { height: 76px; }
  .hero-eyebrow { align-self: center; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; flex-wrap: wrap; }

  .hero.hero--bg:not(.hero--dark) .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(250, 248, 243, 0.96) 0%,
        rgba(250, 248, 243, 0.75) 50%,
        rgba(250, 248, 243, 0.55) 100%);
  }
  .hero.hero--dark .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(0, 10, 74, 0.92) 0%,
        rgba(0, 10, 74, 0.7) 55%,
        rgba(0, 10, 74, 0.45) 100%);
  }
}

/* Telas MUITO BAIXAS (celular em landscape, laptops curtos): compacta o hero
   ao máximo pra TUDO caber na altura da tela. */
@media (max-height: 480px) {
  .hero.hero--bg {
    padding-top: 48px;
    padding-bottom: 10px;
  }
  .hero h1 { font-size: min(clamp(24px, 3.6vw, 38px), 8vh); }
  .hero-brand { margin-bottom: 6px; }
  .hero-brand img { height: min(52px, 9vh); }
  .hero-content > p { font-size: 13px; line-height: 1.45; margin-top: 4px; }
  .hero-actions { margin-top: 10px; }
  .hero-proof { margin-top: 8px; }
  .hero-atend { margin-top: 6px; }
}

@media (max-width: 480px) {
  .top-inner { padding: 12px 18px; }
  .top-brand img { height: 22px; }
  .top-brand-meta { font-size: 10px; padding-left: 10px; }
}

/* ==========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease;
}
.wa-float:hover {
  background: #1DAF54;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.55);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

/* Anel de pulso */
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float__pulse { animation: none; display: none; }
}

/* ============================================================
   REVEAL NO SCROLL — entrada suave dos blocos ao rolar a página
   (toggle .is-visible via IntersectionObserver no index.html)
   ============================================================ */
:root {
  --ease-reveal: cubic-bezier(.16, .84, .36, 1);
}

/* Blocos que sobem + fade ao entrar na viewport */
.howto__head,
.videos__head,
.testimonials__head,
.benefits__head,
.about__head,
.about-services__head,
.howto-step,
.faq__item,
.benefits__cta,
.videos__cta,
.problem__aside {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .85s var(--ease-reveal),
    transform .85s var(--ease-reveal);
  will-change: opacity, transform;
}
.howto__head.is-visible,
.videos__head.is-visible,
.testimonials__head.is-visible,
.benefits__head.is-visible,
.about__head.is-visible,
.about-services__head.is-visible,
.howto-step.is-visible,
.faq__item.is-visible,
.benefits__cta.is-visible,
.videos__cta.is-visible,
.problem__aside.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards de vídeo: só fade (o offset usa transform e não pode conflitar) */
.video-card {
  opacity: 0;
  transition: opacity .85s var(--ease-reveal);
}
.video-card.is-visible { opacity: 1; }

/* Sem animação para quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .howto__head,
  .videos__head,
  .testimonials__head,
  .benefits__head,
  .about__head,
  .about-services__head,
  .howto-step,
  .faq__item,
  .benefits__cta,
  .videos__cta,
  .problem__aside,
  .video-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   LIGHTBOX — abre as fotos da galeria em tela cheia com zoom
   ============================================================ */
.about-fan__inner { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 8, 46, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  cursor: zoom-out;
  transition: opacity .3s var(--ease-reveal), visibility .3s var(--ease-reveal);
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 18px;
  background: var(--spine-navy);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  cursor: default;
  transform: scale(.82);
  transition: transform .35s var(--ease-reveal);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.28); }

body.lightbox-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__img { transition: none; }
  .lightbox__img { transform: none; }
}

/* ==========================================================
   PERFORMANCE: content-visibility nas seções abaixo do fold
   O browser ignora layout/paint dessas seções até estarem
   próximas do viewport — reduz tempo de renderização inicial.
   contain-intrinsic-size evita scroll jumps.
   ========================================================== */
.problem,
.benefits,
.howto,
.videos,
.about,
.testimonials,
.cta-final {
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}
