/* =========================================================================
   AURORA SOLAR — Landing Page
   Design System: Azul (confiança) estrutura · Âmbar Solar converte.
   Fonts: Sora (display) + Inter (corpo)
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Azul — marca / confiança */
  --azul-profundo: #0B2A4A;
  --azul-marca:    #1657D0;
  --azul-vivo:     #2E6BE6;
  --azul-claro:    #DBEAFE;
  --azul-nevoa:    #EEF4FF;

  /* Solar — conversão (uso restrito) */
  --ambar:         #FFB020;
  --laranja:       #FF7A1A;
  --amarelo-claro: #FFE9BF;

  /* Neutros */
  --tinta:         #0F172A;
  --cinza-texto:   #475569;
  --cinza-medio:   #94A3B8;
  --borda:         #E2E8F0;
  --fundo:         #F1F5F9;
  --superficie:    #FFFFFF;

  /* Semânticas */
  --sucesso:       #16A34A;
  --erro:          #DC2626;

  /* Raios */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Sombras (azuladas) */
  --sh-suave: 0 1px 3px rgba(15, 23, 42, 0.06);
  --sh-media: 0 6px 16px rgba(15, 23, 42, 0.10);
  --sh-alta:  0 12px 32px rgba(15, 23, 42, 0.14);
  --sh-foco:  0 0 0 3px rgba(21, 87, 208, 0.20);

  /* Espaçamento (grid 8) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-8: 48px; --s-10: 64px; --s-12: 96px;

  --largura-max: 1200px;

  --fonte-display: 'Sora', system-ui, sans-serif;
  --fonte-corpo:   'Inter', system-ui, sans-serif;
}

/* -------------------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--fonte-corpo);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tinta);
  background: var(--superficie);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: var(--azul-marca); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--azul-vivo); }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--fonte-display); color: var(--azul-profundo); line-height: 1.15; font-weight: 700; }

/* Utilitários de layout */
.wrap { max-width: var(--largura-max); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--s-12) 0; }
.section--alt { background: var(--azul-nevoa); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--fonte-corpo);
  font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--azul-marca);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: var(--s-3);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--ambar); border-radius: 2px; }

.section-title { font-size: clamp(28px, 4vw, 36px); margin-bottom: var(--s-4); }
.section-lead { font-size: 18px; color: var(--cinza-texto); max-width: 60ch; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* -------------------------------------------------------------------------
   3. BOTÕES
   ------------------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 24px;
  font-family: var(--fonte-corpo); font-size: 16px; font-weight: 600;
  border-radius: var(--r-md); border: none; cursor: pointer;
  transition: transform .2s cubic-bezier(.34, 1.4, .64, 1), background .2s ease, box-shadow .25s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; text-align: center;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(0) scale(.98); }

/* Brilho que varre o botão no hover (só nos botões preenchidos) */
.btn--cta::after, .btn--secundario::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%;
  transform: skewX(-20deg); pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transition: left .6s cubic-bezier(.4, 0, .2, 1);
}
.btn--cta:hover::after, .btn--secundario:hover::after { left: 135%; }

/* Primário = âmbar (conversão) */
.btn--cta {
  background: var(--ambar); color: var(--azul-profundo);
  box-shadow: var(--sh-media);
}
.btn--cta:hover { background: var(--laranja); color: var(--azul-profundo); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(255, 122, 26, .38); }

.btn--secundario { background: var(--azul-marca); color: #fff; box-shadow: var(--sh-suave); }
.btn--secundario:hover { background: var(--azul-vivo); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(21, 87, 208, .34); }

.btn--ghost { background: transparent; border: 1.5px solid var(--azul-marca); color: var(--azul-marca); }
.btn--ghost:hover { background: var(--azul-nevoa); transform: translateY(-3px); box-shadow: var(--sh-media); }
.on-dark .btn--ghost:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, .25); }

.btn--lg { height: 54px; padding: 0 32px; font-size: 17px; }
.btn--block { width: 100%; }

/* Botão sobre fundo escuro */
.on-dark .btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.on-dark .btn--ghost:hover { background: rgba(255,255,255,.12); }

/* -------------------------------------------------------------------------
   4. HEADER
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header__bar {
  display: flex; align-items: center; gap: var(--s-6);
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--fonte-display); font-weight: 700; font-size: 20px; color: #fff; }
.brand__mark { width: 34px; height: 34px; flex: none; transition: transform .5s cubic-bezier(.34, 1.56, .64, 1); transform-origin: 50% 52%; }
.brand:hover .brand__mark { transform: rotate(40deg) scale(1.08); }
.site-header.solid .brand { color: var(--azul-profundo); }

.nav { display: flex; flex-wrap: nowrap; gap: var(--s-6); flex: 1; justify-content: center; }
.nav a { position: relative; color: rgba(255,255,255,.9); font-size: 15px; font-weight: 500; white-space: nowrap; transition: color .2s ease; }
.nav a:hover { color: #fff; }
.site-header.solid .nav a { color: var(--cinza-texto); }
.site-header.solid .nav a:hover { color: var(--azul-marca); }

/* Sublinhado âmbar que cresce da esquerda (recua para a direita ao sair) */
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  border-radius: 2px; background: var(--ambar);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
/* No menu recolhido (mobile) não usamos o sublinhado */
.nav.open a::after { content: none; }

.header-actions { display: flex; align-items: center; gap: var(--s-4); flex: none; }
.header-phone { color: #fff; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.site-header.solid .header-phone { color: var(--azul-profundo); }

/* Menu aberto (mobile) — vale sempre que a classe .open estiver ativa */
.nav.open {
  display: flex; flex-direction: column; position: absolute;
  top: calc(76px + env(safe-area-inset-top, 0px)); left: 0; right: 0;
  background: #fff; padding: var(--s-4) 20px var(--s-5); gap: var(--s-2);
  box-shadow: var(--sh-media); border-top: 1px solid var(--borda);
  max-height: calc(100dvh - 76px - env(safe-area-inset-top, 0px));
  overflow-y: auto;
}
.nav.open a { color: var(--azul-profundo); padding: 10px 0; border-bottom: 1px solid var(--fundo); }
.nav__cta { display: none; }
.nav.open .nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 8px; padding: 12px 16px !important; border-bottom: none !important;
  background: var(--ambar); color: var(--azul-profundo) !important;
  border-radius: var(--r-md); font-weight: 600; text-align: center;
}

.site-header.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: var(--sh-suave);
  border-bottom: 1px solid var(--borda);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: background .25s ease; }
.nav-toggle span + span { margin-top: 5px; }
.site-header.solid .nav-toggle span { background: var(--azul-profundo); }

/* -------------------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------------------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 64px; overflow: hidden; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,42,74,.55) 0%, rgba(11,42,74,.35) 40%, rgba(11,42,74,.78) 100%),
    radial-gradient(1100px 500px at 12% 18%, rgba(11,42,74,.45), transparent 70%);
}
/* Nascer-do-sol âmbar no rodapé do hero — assinatura da marca */
.hero__sun {
  position: absolute; left: 50%; bottom: -220px; transform: translateX(-50%);
  width: 900px; height: 420px; z-index: 1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,176,32,.30), rgba(255,122,26,.10) 55%, transparent 72%);
  filter: blur(6px);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__grid { max-width: 760px; }
.hero__cta { margin-top: var(--s-6); display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.hero__cta-note { color: rgba(255,255,255,.85); font-size: 14px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,233,191,.16); border: 1px solid rgba(255,176,32,.5);
  color: #FFE9BF; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 7px 14px; border-radius: var(--r-full); margin-bottom: var(--s-5);
  backdrop-filter: blur(4px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ambar); box-shadow: 0 0 0 4px rgba(255,176,32,.25); }

.hero h1 {
  color: #fff; font-size: clamp(38px, 6vw, 60px); line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: var(--s-5);
}
.hero h1 .glow { color: var(--ambar); }
.hero__sub { color: rgba(255,255,255,.9); font-size: clamp(17px, 2.2vw, 21px); max-width: 46ch; margin-bottom: var(--s-6); }

.hero__promo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--azul-profundo); background: var(--amarelo-claro);
  font-weight: 600; font-size: 15px; padding: 10px 16px; border-radius: var(--r-md);
  border-left: 4px solid var(--ambar);
}

/* Cartão do formulário */
.lead-card {
  background: var(--superficie); border-radius: var(--r-xl);
  box-shadow: var(--sh-alta); padding: var(--s-6);
  border: 1px solid rgba(255,255,255,.6);
}
.lead-card__head { margin-bottom: var(--s-5); }
.lead-card__head h3,
.lead-card__head h2 { font-size: 22px; margin-bottom: 6px; }
.lead-card__head p { font-size: 14px; color: var(--cinza-texto); }
.lead-card__head .pct { color: var(--laranja); font-weight: 700; }

.field { margin-bottom: var(--s-4); }
.field label { display: block; font-size: 14px; font-weight: 500; color: var(--cinza-texto); margin-bottom: 6px; }
.field input {
  width: 100%; height: 48px; padding: 12px 16px;
  font-family: var(--fonte-corpo); font-size: 16px; color: var(--tinta);
  background: var(--superficie); border: 1.5px solid var(--borda); border-radius: var(--r-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input::placeholder { color: var(--cinza-medio); }
.field input:focus { outline: none; border-color: var(--azul-marca); box-shadow: var(--sh-foco); }
.field input[aria-invalid="true"] { border-color: var(--erro); }
.field .err { display: none; color: var(--erro); font-size: 12px; margin-top: 5px; }
.field input[aria-invalid="true"] + .err,
.field__input:has(input[aria-invalid="true"]) ~ .err,
.field--invalid > .err { display: block; }

.form-note { font-size: 12px; color: var(--cinza-medio); text-align: center; margin-top: var(--s-3); line-height: 1.4; }

.form-success {
  display: none; text-align: center; padding: var(--s-6) var(--s-4);
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; margin: 0 auto var(--s-4);
  border-radius: 50%; background: rgba(22,163,74,.12); color: var(--sucesso);
  display: grid; place-items: center;
}
.form-success h3 { color: var(--sucesso); margin-bottom: 8px; }
.form-success p { color: var(--cinza-texto); font-size: 15px; }

/* -------------------------------------------------------------------------
   6. SOBRE
   ------------------------------------------------------------------------- */
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-10); align-items: center; }
.sobre__media {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-alta); aspect-ratio: 4/3; background: var(--azul-profundo);
}
.sobre__media img { width: 100%; height: 100%; object-fit: cover; }
/* Véu escuro para o botão de play contrastar */
.sobre__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,42,74,.10), rgba(11,42,74,.32));
}

/* Selo de play — decorativo, "como se fosse" um vídeo */
.play-badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2; width: 78px; height: 78px; border-radius: 50%;
  background: var(--ambar); color: var(--azul-profundo);
  display: grid; place-items: center; box-shadow: var(--sh-alta);
  pointer-events: none;
}
.play-badge svg { margin-left: 4px; } /* centraliza opticamente o triângulo */
.play-badge::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid var(--ambar); animation: playPulse 2.4s ease-out infinite;
}
@keyframes playPulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

.sobre__media .stat-float {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--sh-media);
}
.sobre__media .stat-float b { display: block; font-family: var(--fonte-display); font-size: 26px; color: var(--azul-marca); }
.sobre__media .stat-float span { font-size: 13px; color: var(--cinza-texto); }
.sobre__text p { color: var(--cinza-texto); font-size: 17px; margin: var(--s-4) 0 var(--s-6); }

/* -------------------------------------------------------------------------
   7. BENEFÍCIOS (grid de cards)
   ------------------------------------------------------------------------- */
.grid-cards { display: grid; gap: var(--s-5); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r-lg);
  padding: var(--s-5); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-media); border-color: var(--azul-claro); }
.card__icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--azul-nevoa); color: var(--azul-marca);
  display: grid; place-items: center; margin-bottom: var(--s-4);
}
.card h4 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--cinza-texto); line-height: 1.55; }

/* Benefícios — ícones PNG coloridos (estilo neon azul/âmbar) */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-8) var(--s-6); }
.benefit { text-align: center; }
.benefit__art {
  position: relative; width: 132px; height: 132px; margin: 0 auto var(--s-4);
  display: grid; place-items: center;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.benefit__art::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #FFD469, var(--ambar) 80%);
}
.benefit__art img {
  position: relative; z-index: 1;
  width: 92px; height: 92px; object-fit: contain;
}
.benefit:hover .benefit__art { transform: translateY(-6px); }
.benefit h4 { font-size: 18px; margin-bottom: 8px; }
.benefit p { font-size: 14.5px; color: var(--cinza-texto); line-height: 1.55; max-width: 26ch; margin: 0 auto; }

/* -------------------------------------------------------------------------
   8. FAIXAS CTA
   ------------------------------------------------------------------------- */
.strip {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--azul-profundo), var(--azul-marca));
  color: #fff; border-radius: var(--r-xl);
  padding: var(--s-10) var(--s-8);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); flex-wrap: wrap;
}
.strip::after {
  content: ""; position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,176,32,.35), transparent 70%);
}
.strip__text { position: relative; z-index: 1; max-width: 62%; }
.strip__text h2 { color: #fff; font-size: clamp(24px, 3.2vw, 32px); margin-bottom: 8px; }
.strip__text p { color: rgba(255,255,255,.88); font-size: 17px; }
.strip .btn { position: relative; z-index: 1; }

.strip--photo::after { display: none; }
.strip--photo { background: var(--azul-profundo); }
.strip__bg { position: absolute; inset: 0; z-index: 0; opacity: .30; object-fit: cover; width: 100%; height: 100%; }
.strip--photo .strip__grad { position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(11,42,74,.92), rgba(11,42,74,.55)); }

/* Faixa CTA full-bleed — vídeo de fundo + texto */
.strip-band {
  position: relative; overflow: hidden;
  min-height: 180px;
  padding: var(--s-6) 0;
  background: var(--azul-profundo);
}
.strip-band__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.strip-band__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,42,74,.88) 0%, rgba(11,42,74,.72) 45%, rgba(11,42,74,.45) 100%),
    linear-gradient(180deg, rgba(11,42,74,.25), rgba(11,42,74,.55));
}
.strip-band__inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.strip-band__copy {
  max-width: 36ch;
}
.strip-band__copy h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.strip-band__copy h2 strong { color: var(--ambar); font-weight: 700; }
.strip-band__copy p {
  color: rgba(255,255,255,.9);
  font-size: clamp(15px, 1.6vw, 17px);
  margin-bottom: 0;
  line-height: 1.45;
}
.strip-band__copy p strong { color: #fff; font-weight: 700; }

/* Faixa CTA azul (cor padrão da marca) de largura total (borda a borda) */
.cta-band {
  position: relative; overflow: hidden;
  padding: var(--s-12) 0;
  text-align: center;
  background: linear-gradient(120deg, var(--azul-profundo), var(--azul-marca));
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(680px 300px at 50% -10%, rgba(255, 176, 32, .16), transparent 70%);
}
.cta-band__inner { max-width: 720px; position: relative; z-index: 1; }
.cta-band h2 {
  color: #fff; font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -.01em; margin-bottom: var(--s-3);
}
.cta-band p { color: rgba(255, 255, 255, .9); font-size: clamp(16px, 1.9vw, 20px); margin-bottom: var(--s-6); }
.cta-band p strong { color: var(--ambar); }

/* -------------------------------------------------------------------------
   9. COMO FUNCIONA (etapas)
   ------------------------------------------------------------------------- */
.how { display: flex; align-items: flex-start; justify-content: center; gap: var(--s-3); }
.how__step { flex: 1 1 0; max-width: 300px; text-align: center; }
.how__art {
  position: relative; width: 200px; height: 200px; margin: 0 auto var(--s-4);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.how__art::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 168px; height: 168px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #FFD469, var(--ambar) 80%);
}
.how__illu { position: relative; z-index: 1; display: block; width: 100%; height: 100%; }
.how__num {
  position: absolute; z-index: 2; right: 20px; bottom: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--azul-profundo); color: #fff; border: 3px solid #fff;
  display: grid; place-items: center;
  font-family: var(--fonte-display); font-weight: 700; font-size: 15px;
  box-shadow: var(--sh-media);
}
.how__step:hover .how__art { transform: translateY(-6px); }
.how__step h4 { font-size: 22px; color: var(--azul-marca); margin-bottom: var(--s-3); }
.how__step p { color: var(--cinza-texto); font-size: 15px; line-height: 1.6; max-width: 30ch; margin: 0 auto; }

.how__arrow { flex: none; align-self: flex-start; margin-top: 82px; color: var(--ambar); }
.how__arrow svg { width: 58px; height: 24px; }

/* -------------------------------------------------------------------------
   10. QUEM SOMOS — mesmas cores da faixa CTA
   ------------------------------------------------------------------------- */
.about-band {
  position: relative;
  overflow: hidden;
  padding: var(--s-12) 0;
  background: linear-gradient(120deg, var(--azul-profundo), var(--azul-marca));
}
.about-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(680px 300px at 50% -10%, rgba(255, 176, 32, .16), transparent 70%);
}
.about-band__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: var(--s-10);
  align-items: center;
}
.about-band__intro h2 {
  color: #fff;
  font-size: clamp(30px, 4.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: var(--s-4);
}
.about-band__intro h2 .glow { color: var(--ambar); }
.about-band__intro > p {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.6;
  max-width: 38ch;
  margin-bottom: var(--s-6);
}

.about-band__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.about-pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5);
  text-align: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.about-pillar:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,176,32,.35);
}
.about-pillar h3 {
  color: var(--ambar);
  font-size: 18px;
  margin-bottom: var(--s-3);
}
.about-pillar p {
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.55;
}
.about-pillar em {
  font-style: normal;
  font-weight: 700;
  color: var(--ambar);
}

/* -------------------------------------------------------------------------
   11. DIFERENCIAIS
   ------------------------------------------------------------------------- */
/* Diferenciais — cards com foto real + selinho fofo */
.diffs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.diffcard {
  background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.diffcard:hover { transform: translateY(-6px); box-shadow: var(--sh-media); border-color: var(--azul-claro); }
.diffcard__img { position: relative; aspect-ratio: 4/3; background: var(--azul-nevoa); }
.diffcard__img img { width: 100%; height: 100%; object-fit: cover; }
.diffcard__chip {
  position: absolute; left: 16px; bottom: -22px; z-index: 1;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--azul-marca); color: #fff; border: 3px solid var(--superficie);
  border-radius: 46% 54% 57% 43% / 47% 44% 56% 53%; /* bolha orgânica */
  box-shadow: var(--sh-media);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), border-radius .4s ease;
}
.diffcard__chip svg { width: 24px; height: 24px; }
.diffcard:hover .diffcard__chip { transform: rotate(-6deg); border-radius: 58% 42% 43% 57% / 55% 57% 43% 45%; }
.diffcard__body { padding: var(--s-6) var(--s-5) var(--s-5); }
.diffcard__body h4 { font-size: 17px; color: var(--azul-profundo); margin-bottom: 8px; line-height: 1.3; }
.diffcard__body p { font-size: 14px; color: var(--cinza-texto); line-height: 1.55; }

/* -------------------------------------------------------------------------
   12. NÚMEROS
   ------------------------------------------------------------------------- */
.numbers { background: var(--azul-profundo); position: relative; overflow: hidden; }
.numbers::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% 0%, rgba(255,176,32,.16), transparent 60%);
}
.numbers .eyebrow { color: var(--ambar); }
.numbers .eyebrow::before { background: var(--ambar); }
.numbers .section-title { color: #fff; }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); position: relative; z-index: 1; }
.num {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: var(--s-5); text-align: center;
}
.num b { display: block; font-family: var(--fonte-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; color: #fff; line-height: 1.1; font-variant-numeric: tabular-nums; }
.num b .pre { color: var(--ambar); }
.num span { display: block; margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.72); }

/* -------------------------------------------------------------------------
   13. DEPOIMENTOS — padrão hero + avaliações estilo Google
   ------------------------------------------------------------------------- */
.reviews {
  position: relative;
  overflow: hidden;
  padding: var(--s-12) 0;
  background: linear-gradient(120deg, var(--azul-profundo), var(--azul-marca));
}
.reviews__sun {
  position: absolute; left: 50%; bottom: -200px; transform: translateX(-50%);
  width: 820px; height: 360px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,176,32,.22), rgba(255,122,26,.08) 55%, transparent 72%);
  filter: blur(6px);
}
.reviews .wrap { position: relative; z-index: 1; }

.reviews__head { text-align: center; margin-bottom: var(--s-8); }
.reviews__head h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: var(--s-3);
}
.reviews__head h2 .glow { color: var(--ambar); }
.reviews__sub {
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 42ch;
  margin: 0 auto var(--s-5);
}

.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 10px 18px 10px 14px;
}
.reviews__glogo { width: 36px; height: 36px; flex: none; }
.reviews__score {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px;
  text-align: left;
}
.reviews__score strong {
  font-family: var(--fonte-display);
  font-size: 22px; color: #fff; line-height: 1;
}
.reviews__stars {
  color: #FBBC05;
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 1;
}
.reviews__count {
  width: 100%;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.reviews__track {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 18px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.reviews__track::-webkit-scrollbar { display: none; }

.g-review {
  scroll-snap-align: center;
  flex: 0 0 min(340px, 85%);
  background: #fff;
  border-radius: 22px 22px 22px 8px;
  padding: var(--s-5);
  box-shadow: 0 12px 28px rgba(11,42,74,.18);
  transition: transform .3s cubic-bezier(.34, 1.4, .64, 1), box-shadow .25s ease;
}
.g-review:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 18px 36px rgba(11,42,74,.24);
}
.g-review__top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.g-review__avatar {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: var(--av, var(--azul-marca));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--fonte-display);
  font-weight: 700; font-size: 14px;
  box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 0 0 5px rgba(251,188,5,.55);
}
.g-review__who b {
  display: block;
  font-size: 15px;
  color: var(--azul-profundo);
  margin-bottom: 2px;
}
.g-review__who span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--cinza-texto);
}
.g-review__who span svg { width: 14px; height: 14px; }
.g-review .reviews__stars { margin-bottom: 10px; font-size: 14px; }
.g-review p {
  font-size: 15px;
  color: var(--cinza-texto);
  line-height: 1.55;
}

.reviews__nav {
  display: flex; justify-content: center; gap: 10px; margin-top: var(--s-2);
}
.reviews__nav button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.reviews__nav button:hover {
  background: var(--ambar);
  border-color: var(--ambar);
  color: var(--azul-profundo);
  transform: scale(1.06);
}

/* -------------------------------------------------------------------------
   14. PROJETOS (galeria com fotos reais)
   ------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.shot {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3;
  color: #fff; background: var(--azul-profundo);
  box-shadow: var(--sh-suave); transition: transform .25s ease, box-shadow .25s ease;
}
.shot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.shot:hover { transform: translateY(-4px); box-shadow: var(--sh-media); }
.shot:hover img { transform: scale(1.05); }
.shot::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 35%, rgba(11,42,74,.88));
}
.shot .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--ambar); color: var(--azul-profundo);
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--r-full);
}
.shot__cap {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  font-weight: 600; font-size: 15px; line-height: 1.3;
}
.gallery .shot.hide { display: none; }

/* -------------------------------------------------------------------------
   15. BLOG / NOTÍCIAS
   ------------------------------------------------------------------------- */
.blog-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s-5); margin-bottom: var(--s-8); flex-wrap: wrap;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
}
.news-side {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.news-card {
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--sh-media);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-alta);
  border-color: var(--azul-claro);
}
.news-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--azul-nevoa);
}
.news-card--feature .news-card__media { aspect-ratio: 16/11; }
.news-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__cat {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--ambar); color: var(--azul-profundo);
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 12px; border-radius: var(--r-full);
}
.news-card__body {
  padding: var(--s-5);
  display: flex; flex-direction: column; flex: 1;
}
.news-card__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 13px; color: var(--cinza-medio);
  margin-bottom: 10px;
}
.news-card__meta time { color: var(--cinza-texto); font-weight: 500; }
.news-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-card--feature h3 { font-size: clamp(22px, 2.4vw, 28px); }
.news-card h3 a { color: var(--azul-profundo); }
.news-card h3 a:hover { color: var(--azul-marca); }
.news-card__body > p {
  font-size: 15px; color: var(--cinza-texto); line-height: 1.55;
  margin-bottom: var(--s-4); flex: 1;
}
.news-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--azul-marca);
  margin-top: auto;
}
.news-card__more:hover { color: var(--azul-vivo); }
.news-card__more svg { transition: transform .2s ease; }
.news-card:hover .news-card__more svg { transform: translateX(4px); }

/* legado .posts (caso ainda exista em outro lugar) */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }

/* -------------------------------------------------------------------------
   16. FAQ
   ------------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--borda); border-radius: var(--r-md); background: #fff; margin-bottom: var(--s-3); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--fonte-display); font-size: 17px; font-weight: 600; color: var(--azul-profundo);
  padding: var(--s-5); display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
}
.faq__q .ico { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--azul-nevoa); color: var(--azul-marca); display: grid; place-items: center; transition: transform .25s ease, background .2s; font-size: 18px; }
.faq__item[open] .faq__q .ico, .faq__item.open .faq__q .ico { transform: rotate(45deg); background: var(--ambar); color: var(--azul-profundo); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 var(--s-5) var(--s-5); color: var(--cinza-texto); font-size: 15px; }

/* -------------------------------------------------------------------------
   17. UNIDADES / CONTATO
   ------------------------------------------------------------------------- */
.units { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.unit { background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--r-lg); padding: var(--s-5); }
.unit .badge { display: inline-block; background: var(--azul-nevoa); color: var(--azul-marca); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-full); margin-bottom: var(--s-3); }
.unit h4 { font-size: 18px; margin-bottom: 4px; }
.unit .city { color: var(--cinza-texto); font-weight: 600; margin-bottom: var(--s-3); }
.unit ul li { display: flex; gap: 10px; font-size: 14px; color: var(--cinza-texto); padding: 5px 0; align-items: flex-start; }
.unit ul li svg { color: var(--azul-marca); flex: none; margin-top: 2px; }
.unit a.map { font-weight: 600; font-size: 14px; margin-top: var(--s-3); display: inline-flex; gap: 6px; align-items: center; }

/* -------------------------------------------------------------------------
   18. NEWSLETTER
   ------------------------------------------------------------------------- */
.news {
  background: linear-gradient(120deg, var(--azul-marca), var(--azul-vivo)); color: #fff;
  border-radius: var(--r-xl); padding: var(--s-10) var(--s-8); text-align: center; position: relative; overflow: hidden;
}
.news::before { content: ""; position: absolute; left: -60px; bottom: -100px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255,176,32,.4), transparent 70%); }
.news h2 { color: #fff; position: relative; font-size: clamp(24px, 3.2vw, 32px); }
.news > p { color: rgba(255,255,255,.9); max-width: 46ch; margin: var(--s-3) auto var(--s-6); position: relative; font-size: 17px; line-height: 1.5; }
.news__form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; position: relative; align-items: stretch; }
.news__form input {
  flex: 1; min-width: 0;
  height: 52px; padding: 0 16px;
  border-radius: var(--r-md); border: none;
  font-size: 16px; font-family: var(--fonte-corpo); line-height: 1.25;
  color: var(--tinta); background: #fff;
  -webkit-appearance: none; appearance: none;
}
.news__form input:focus { outline: none; box-shadow: var(--sh-foco); }
.news__form .btn {
  height: 52px; min-height: 52px;
  padding-top: 0; padding-bottom: 0;
  border-radius: var(--r-md);
  flex: none;
}
.news__note { font-size: 12px; color: rgba(255,255,255,.8); margin-top: var(--s-4); position: relative; line-height: 1.45; max-width: 36ch; margin-inline: auto; }
.news__note a { color: #fff; text-decoration: underline; }

/* -------------------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------------------- */
.footer { background: var(--azul-profundo); color: rgba(255,255,255,.75); padding: var(--s-10) 0 var(--s-6); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-8); padding-bottom: var(--s-8); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand { color: #fff; margin-bottom: var(--s-3); }
.footer__slogan { font-size: 14px; max-width: 34ch; }
.footer h5 { font-family: var(--fonte-display); color: #fff; font-size: 15px; margin-bottom: var(--s-4); letter-spacing: .02em; }
.footer__links a { display: block; color: rgba(255,255,255,.75); font-size: 14px; padding: 5px 0; }
.footer__links a:hover { color: var(--ambar); }
.socials { display: flex; gap: 10px; margin-top: var(--s-4); }
.socials a { width: 40px; height: 40px; border-radius: var(--r-full); background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; transition: background .2s ease, color .2s ease; }
.socials a:hover { background: var(--ambar); color: var(--azul-profundo); }
.footer__legal { padding-top: var(--s-5); font-size: 13px; color: rgba(255,255,255,.55); display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }

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

/* -------------------------------------------------------------------------
   19b. SIMULAÇÃO — hero full-bleed + formulário fofo
   ------------------------------------------------------------------------- */
.sim-hero {
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding-top: calc(100px + env(safe-area-inset-top, 0px));
  padding-bottom: var(--s-10);
}
.sim-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: var(--s-10);
  align-items: center;
}
.sim-hero__intro { max-width: 560px; }
.sim-hero__intro h1 {
  color: #fff;
  font-size: clamp(34px, 5.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: var(--s-5);
}
.sim-hero__intro h1 .glow { color: var(--ambar); }

.sim-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: var(--s-6);
}
.sim-trust__shot {
  margin: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 6px 16px rgba(11,42,74,.28);
  margin-left: -12px;
}
.sim-trust__shot:first-of-type { margin-left: 0; }
.sim-trust__shot img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sim-trust__note {
  flex: 1 1 180px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 500;
  max-width: 26ch;
  line-height: 1.4;
}

/* Cartão do formulário — cores e espaçamento refinados */
.lead-card--cute {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow:
    0 4px 6px rgba(11,42,74,.04),
    0 18px 44px rgba(11,42,74,.22);
  padding: 32px 28px 28px;
}
.lead-card--cute .lead-card__head {
  text-align: left;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--borda);
}
.lead-card--cute .lead-card__head h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--azul-profundo);
}
.lead-card--cute .lead-card__head p {
  font-size: 14.5px;
  color: var(--cinza-texto);
  max-width: none;
  margin: 0;
  line-height: 1.5;
}
.lead-card--cute .lead-card__head .pct {
  color: var(--laranja);
  font-weight: 700;
}

.lead-card--cute .field {
  margin-bottom: 18px;
}
.lead-card--cute .field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--azul-profundo);
  margin-bottom: 8px;
  letter-spacing: .01em;
}

.field__input {
  position: relative;
}
.field__ico {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--azul-marca);
  display: grid; place-items: center;
  pointer-events: none;
  opacity: .7;
  transition: color .18s ease, opacity .18s ease;
}
.field__input input {
  width: 100%;
  height: 52px;
  padding: 12px 16px 12px 46px;
  font-family: var(--fonte-corpo);
  font-size: 16px;
  color: var(--tinta);
  background: #F8FAFC;
  border: 1.5px solid var(--borda);
  border-radius: 12px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field__input input::placeholder { color: #94A3B8; }
.field__input input:hover {
  border-color: #CBD5E1;
  background: #fff;
}
.field__input input:focus {
  outline: none;
  background: #fff;
  border-color: var(--azul-marca);
  box-shadow: 0 0 0 4px rgba(22, 87, 208, .12);
}
.field__input:focus-within .field__ico {
  opacity: 1;
  color: var(--azul-marca);
}
.field__input input[aria-invalid="true"] {
  border-color: var(--erro);
  background: #FEF2F2;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .1);
}
.field__input--money input { padding-left: 74px; }
.field__prefix {
  position: absolute;
  left: 46px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 600;
  color: var(--cinza-texto);
  pointer-events: none;
}

.lead-card--cute .btn--block {
  margin-top: 8px;
  height: 54px;
  border-radius: 12px;
}
.lead-card--cute .form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--cinza-medio);
  line-height: 1.45;
}

/* legado (caso ainda exista em outro lugar) */
.sim { background: linear-gradient(120deg, var(--azul-profundo), var(--azul-marca)); position: relative; overflow: hidden; }
.sim::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 320px at 90% 10%, rgba(255,176,32,.20), transparent 60%);
}
.sim--page { min-height: calc(100vh - 76px); display: flex; align-items: center; }
.sim__grid { display: grid; grid-template-columns: 1fr 460px; gap: var(--s-10); align-items: center; position: relative; z-index: 1; }
.sim__pitch .eyebrow { color: var(--ambar); }
.sim__pitch .eyebrow::before { background: var(--ambar); }
.sim__pitch .section-title { color: #fff; }
.sim__pitch > p { color: rgba(255,255,255,.9); font-size: 18px; margin-top: var(--s-3); max-width: 46ch; }
.sim__list { margin-top: var(--s-5); display: grid; gap: 12px; }
.sim__list li { display: flex; gap: 12px; align-items: flex-start; color: #fff; font-weight: 500; }
.sim__list li svg { color: var(--ambar); flex: none; margin-top: 1px; }

/* -------------------------------------------------------------------------
   20. WHATSAPP FLUTUANTE
   ------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: max(18px, env(safe-area-inset-right, 0px)); bottom: max(18px, env(safe-area-inset-bottom, 0px)); z-index: 89;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--sh-alta);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); color: #fff; }

/* -------------------------------------------------------------------------
   21. ANIMAÇÕES DE ENTRADA (scroll reveal)
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* -------------------------------------------------------------------------
   22. RESPONSIVO
   ------------------------------------------------------------------------- */
.shot img, .news-card__media img, .sobre__thumb, .benefit__art img {
  max-width: 100%;
}

/* Cabeçalho: recolhe para o menu hambúrguer antes de apertar/quebrar linha */
@media (max-width: 1100px) {
  .nav, .header-phone, .header-actions { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
}

@media (max-width: 1024px) {
  .benefits { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-5); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .diffs { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .lead-card { max-width: 480px; margin-inline: auto; width: 100%; }
  .about-band__pillars { gap: var(--s-3); }
  .reviews__track { gap: var(--s-3); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --s-12: 64px; --s-10: 48px; }
  html { scroll-padding-top: 72px; }
  .wrap { padding: 0 18px; }
  .section { padding: var(--s-10) 0; }

  .btn {
    white-space: normal;
    height: auto;
    min-height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.25;
  }
  .btn--lg { min-height: 54px; padding-left: 22px; padding-right: 22px; }

  .sobre__grid, .sim__grid, .sim-hero__grid { grid-template-columns: 1fr; }
  .sim__grid { gap: var(--s-6); }
  .sim--page { min-height: auto; align-items: stretch; padding: var(--s-8) 0; }
  .sim-hero {
    min-height: auto;
    padding-top: calc(96px + env(safe-area-inset-top, 0px));
    padding-bottom: var(--s-8);
    align-items: flex-start;
  }
  .sim-hero__grid { gap: 0; }
  .sim-hero__intro { display: none; }
  .lead-card { max-width: none; }
  .lead-card--cute { max-width: 480px; margin-inline: auto; width: 100%; }

  .about-band__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .about-band__intro { text-align: center; }
  .about-band__intro > p { max-width: none; margin-inline: auto; }
  .about-band__intro .btn { width: 100%; max-width: 360px; margin-inline: auto; }
  .about-band__pillars { grid-template-columns: 1fr; }

  .cols-3, .posts, .units, .news-grid { grid-template-columns: 1fr; }
  .news-side { gap: var(--s-5); }
  .blog-head { align-items: flex-start; flex-direction: column; gap: var(--s-4); }
  .blog-head .btn { width: 100%; }

  .how {
    flex-direction: column;
    align-items: center;
    gap: var(--s-5);
  }
  .how__step { max-width: 360px; width: 100%; }
  .how__arrow {
    align-self: center;
    margin: 4px 0 8px;
    width: 48px;
    height: 56px;
    display: grid;
    place-items: center;
    transform: none;
  }
  .how__arrow svg {
    transform: rotate(90deg);
    width: 52px;
    height: 22px;
  }
  .cols-4 { grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: var(--s-6); }
  .steps--line .step::before { display: none !important; }

  .strip { flex-direction: column; align-items: stretch; text-align: left; padding: var(--s-8) var(--s-5); }
  .strip__text { max-width: 100%; }
  .strip .btn { width: 100%; }

  .strip-band { min-height: 0; padding: var(--s-8) 0; }
  .strip-band__inner { flex-direction: column; align-items: stretch; gap: var(--s-4); }
  .strip-band__copy { max-width: none; }
  .strip-band__copy h2 { font-size: clamp(22px, 6vw, 28px); }
  .strip-band .btn { width: 100%; }
  .strip-band__veil {
    background:
      linear-gradient(180deg, rgba(11,42,74,.78) 0%, rgba(11,42,74,.70) 100%);
  }

  .cta-band { padding: var(--s-10) 0; }
  .cta-band .btn { width: 100%; max-width: 420px; margin-inline: auto; }

  .reviews { padding: var(--s-10) 0; }
  .reviews__badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: var(--r-xl);
    padding: 14px 18px;
    max-width: 100%;
  }
  .reviews__score { justify-content: center; text-align: center; }
  .reviews__count { text-align: center; }
  .reviews__track {
    margin-inline: -18px;
    padding-inline: 18px;
  }
  .g-review { flex: 0 0 min(300px, 86%); }

  .diffs { gap: var(--s-4); }
  .benefit p { max-width: none; }
  .benefit__art { width: 112px; height: 112px; }
  .benefit__art img { width: 78px; height: 78px; }

  .hero {
    min-height: 70vh;
    min-height: 70svh;
    padding-top: 104px;
    padding-bottom: var(--s-8);
    align-items: center;
  }
  .hero__grid { gap: var(--s-6); max-width: 100%; }
  .hero__sun { width: 140vw; max-width: 640px; height: 280px; bottom: -140px; }
  .hero__promo {
    display: flex;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    align-items: flex-start;
  }
  .hero__promo svg { flex: none; margin-top: 2px; }

  .sobre__media { aspect-ratio: 16/10; }
  .sobre__media .stat-float { left: 12px; bottom: 12px; max-width: calc(100% - 24px); padding: 10px 14px; }
  .play-badge { width: 64px; height: 64px; }

  .faq__q { font-size: 16px; gap: var(--s-3); }

  /* Newsletter: faixa full-bleed no mobile (sem cartão estreito) */
  .section--newsletter {
    padding-block: var(--s-6);
  }
  .section--newsletter > .wrap {
    padding-inline: 0;
    max-width: none;
  }
  .news {
    border-radius: 0;
    padding: var(--s-8) 20px;
  }
  .news h2 { font-size: 24px; letter-spacing: -.01em; }
  .news > p {
    font-size: 15px;
    max-width: 34ch;
    margin-bottom: var(--s-5);
  }
  .news__form {
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    gap: 12px;
  }
  .news__form input,
  .news__form .btn {
    width: 100%;
    height: 52px;
    min-height: 52px;
    border-radius: var(--r-md);
  }
  .news__form .btn {
    padding-top: 0;
    padding-bottom: 0;
  }
  .news__note { font-size: 12px; max-width: 30ch; }
}

@media (max-width: 520px) {
  html { scroll-padding-top: 64px; }
  .wrap { padding: 0 16px; }
  .site-header__bar { height: 64px; }
  .brand { font-size: 17px; gap: 8px; }
  .brand__mark { width: 28px; height: 28px; }
  .nav.open { top: calc(64px + env(safe-area-inset-top, 0px)); max-height: calc(100dvh - 64px - env(safe-area-inset-top, 0px)); }
  .sim-hero { padding-top: calc(88px + env(safe-area-inset-top, 0px)); }
  .lead-card--cute {
    border-radius: 20px;
    padding: 24px 20px 22px;
  }
  .lead-card--cute .lead-card__head {
    margin-bottom: 22px;
    padding-bottom: 16px;
  }
  .lead-card--cute .field { margin-bottom: 16px; }

  .benefits { grid-template-columns: 1fr; gap: var(--s-6); }
  .diffs { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .about-band__intro h2 { font-size: 26px; }
  .about-pillar { padding: var(--s-5) var(--s-4); }
  .num-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .footer__legal { flex-direction: column; gap: var(--s-2); }
  .footer__legal span { word-break: break-word; }

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

  .hero {
    min-height: 70vh;
    min-height: 70svh;
    padding-top: 88px;
    padding-bottom: var(--s-8);
  }
  .hero h1 { font-size: clamp(28px, 9vw, 34px); }
  .hero__sub { font-size: 16px; margin-bottom: var(--s-5); }
  .hero__promo { font-size: 14px; padding: 10px 12px; }

  .lead-card { padding: var(--s-5); }
  .strip { border-radius: var(--r-lg); padding: var(--s-6) var(--s-4); }
  .strip__text h2 { font-size: 22px; }
  .section-title { font-size: 24px; }
  .section-lead { font-size: 16px; }

  .reviews__track {
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .g-review { flex-basis: 88%; padding: var(--s-5); }
  .reviews__head h2 { font-size: 26px; }
  .reviews__sub { font-size: 15px; }

  .news-card__body { padding: var(--s-4); }
  .news-card--feature h3 { font-size: 20px; }
  .news-card h3 { font-size: 17px; }
  .news-card__body > p { font-size: 14px; }

  .shot__cap { font-size: 14px; left: 12px; right: 12px; bottom: 12px; }
  .how__art { width: 168px; height: 168px; }
  .how__art::before { width: 140px; height: 140px; }
  .how__step h4 { font-size: 20px; }
  .how__num { width: 38px; height: 38px; font-size: 13px; right: 14px; bottom: 12px; }

  .cta-band h2 { font-size: 24px; }
  .cta-band p { font-size: 16px; }

  .faq__q { font-size: 15px; padding: var(--s-4); }
  .faq__a p { padding: 0 var(--s-4) var(--s-4); font-size: 14px; }

  .sim__pitch > p { font-size: 16px; }
  .sim__list li { font-size: 15px; }

  .diffcard__body { padding: var(--s-5) var(--s-4) var(--s-4); }
  .wa-float { width: 52px; height: 52px; right: 14px; }

  .news { padding: 36px 16px; }
  .news h2 { font-size: 22px; }
  .news > p { font-size: 14px; max-width: none; padding-inline: 4px; }
  .news__form { max-width: none; }
}

/* Telas muito estreitas (≤360px) */
@media (max-width: 360px) {
  .num-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .brand { font-size: 16px; }
  .benefit__art { width: 96px; height: 96px; }
  .benefit__art img { width: 68px; height: 68px; }
  .g-review { flex-basis: 92%; }
  .wrap { padding: 0 14px; }
  .reviews__track {
    margin-inline: -14px;
    padding-inline: 14px;
  }
}

/* Acessibilidade — movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Foco visível para teclado */
:focus-visible { outline: 3px solid var(--azul-vivo); outline-offset: 2px; border-radius: 4px; }

/* Skip link (pular para o conteúdo) */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ambar); color: var(--azul-profundo); font-weight: 600;
  padding: 10px 18px; border-radius: var(--r-md); box-shadow: var(--sh-alta);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; color: var(--azul-profundo); }
