/* ============================================================
   LOCA SITES WEB — Nova Identidade Visual
   Design system: confiança imobiliária + alta conversão
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Paleta principal */
  --azul-marinho: #0A1F44;
  --azul: #2563EB;
  --azul-claro: #3B82F6;
  --azul-suave: #EFF4FF;
  --dourado: #FFB400;
  --dourado-escuro: #E69A00;
  --verde: #22C55E;
  --verde-escuro: #16A34A;

  /* Neutros */
  --preto: #0B1120;
  --cinza-900: #1E293B;
  --cinza-700: #475569;
  --cinza-500: #64748B;
  --cinza-300: #CBD5E1;
  --cinza-200: #E2E8F0;
  --cinza-100: #F1F5F9;
  --cinza-50: #F8FAFC;
  --branco: #FFFFFF;

  /* Tipografia */
  --font-titulo: 'Sora', system-ui, sans-serif;
  --font-corpo: 'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --esp: 1rem;

  /* Sombras */
  --sombra-sm: 0 1px 2px rgba(10, 31, 68, 0.06);
  --sombra: 0 4px 12px rgba(10, 31, 68, 0.08);
  --sombra-md: 0 10px 30px rgba(10, 31, 68, 0.10);
  --sombra-lg: 0 20px 50px rgba(10, 31, 68, 0.15);
  --sombra-cta: 0 8px 20px rgba(34, 197, 94, 0.35);

  /* Bordas */
  --raio: 14px;
  --raio-sm: 8px;
  --raio-lg: 24px;
  --raio-pill: 999px;

  /* Transições */
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --header-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-corpo);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cinza-900);
  background: var(--branco);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
section { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- ACESSIBILIDADE ---------- */
:focus-visible { outline: 3px solid var(--azul-claro); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--azul); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4 { font-family: var(--font-titulo); line-height: 1.15; color: var(--azul-marinho); font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--cinza-700); }
p.lead { font-size: 1.15rem; color: var(--cinza-700); }
.gradient-text {
  background: linear-gradient(120deg, var(--azul), var(--azul-claro) 60%, var(--dourado));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-header .tag { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; margin-top: 12px; }
.bg-suave { background: var(--azul-suave); }
.bg-marinho { background: var(--azul-marinho); }
.bg-marinho h1, .bg-marinho h2, .bg-marinho h3 { color: #fff; }
.bg-marinho p { color: rgba(255,255,255,0.78); }

/* ---------- BADGE / TAG ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: var(--azul-suave); color: var(--azul);
  border: 1px solid rgba(37, 99, 235, 0.18); border-radius: var(--raio-pill);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
}
.tag.verde { background: rgba(34,197,94,0.12); color: var(--verde-escuro); border-color: rgba(34,197,94,0.25); }
.tag.dourado { background: rgba(255,180,0,0.14); color: var(--dourado-escuro); border-color: rgba(255,180,0,0.3); }

/* ---------- BOTÕES / CTAs ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--raio-pill);
  font-family: var(--font-titulo); font-weight: 600; font-size: 1rem;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primario { background: var(--verde); color: #fff; box-shadow: var(--sombra-cta); }
.btn-primario:hover { background: var(--verde-escuro); box-shadow: 0 12px 28px rgba(34,197,94,0.45); }
.btn-secundario { background: var(--branco); color: var(--azul-marinho); border: 2px solid var(--cinza-200); }
.btn-secundario:hover { border-color: var(--azul); color: var(--azul); box-shadow: var(--sombra); }
.btn-dourado { background: var(--dourado); color: var(--azul-marinho); box-shadow: 0 8px 20px rgba(255,180,0,0.35); }
.btn-dourado:hover { background: var(--dourado-escuro); }
.btn-fantasma { background: rgba(255,255,255,0.1); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-fantasma:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn .pulse { animation: pulse 2s infinite; }

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: all var(--t);
}
.header.scrolled { background: rgba(255,255,255,0.97); border-bottom-color: var(--cinza-200); box-shadow: var(--sombra-sm); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-titulo); font-weight: 800; font-size: 1.3rem; color: var(--azul-marinho); }
/* Logo em imagem (logo real) */
.logo-img { height: 58px; width: auto; display: block; transition: height var(--t); }
@media (max-width: 768px) { .logo-img { height: 46px; } }
/* Versão para fundo escuro (footer) */
.footer .logo-img { filter: brightness(0) invert(1); opacity: 0.95; height: 64px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--azul), var(--azul-marinho));
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo span { color: var(--azul); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.96rem; font-weight: 500; color: var(--cinza-700); position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--azul); transition: width var(--t);
}
.nav-links a:not(.nav-cta):hover { color: var(--azul); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 10px 22px; border-radius: var(--raio-pill); background: var(--verde); color: #fff !important; font-weight: 600 !important; box-shadow: var(--sombra-cta); }
.nav-cta:hover { background: var(--verde-escuro); }
.nav-cta::after { display: none; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.menu-toggle span { width: 22px; height: 2px; background: var(--azul-marinho); transition: all var(--t); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; padding: calc(var(--header-h) + 60px) 0 80px;
  background:
    radial-gradient(circle at 85% 20%, rgba(37,99,235,0.10), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,180,0,0.08), transparent 45%),
    linear-gradient(180deg, #fff 0%, var(--azul-suave) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge { margin-bottom: 24px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .sub { display: block; }
.hero-sub { font-size: 1.2rem; color: var(--cinza-700); margin-bottom: 32px; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero-proof { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.avatares { display: flex; }
.avatares img, .avatares .avatar {
  width: 44px; height: 44px; border-radius: 50%; border: 3px solid #fff;
  margin-left: -12px; object-fit: cover; background: linear-gradient(135deg, var(--azul), var(--dourado));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--font-titulo);
}
.avatares img:first-child, .avatares .avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.92rem; color: var(--cinza-700); }
.hero-proof-text strong { color: var(--azul-marinho); }
.stars { color: var(--dourado); letter-spacing: 2px; font-size: 1rem; }

/* Mockup do site */
.hero-visual { position: relative; }
.mockup {
  background: #fff; border-radius: 16px; box-shadow: var(--sombra-lg);
  overflow: hidden; border: 1px solid var(--cinza-200); position: relative; z-index: 2;
}
.mockup-top { height: 36px; background: var(--cinza-100); display: flex; align-items: center; gap: 6px; padding: 0 16px; border-bottom: 1px solid var(--cinza-200); }
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--cinza-300); }
.mockup-body { padding: 24px; }
.mockup-banner { height: 130px; border-radius: 10px; background: linear-gradient(120deg, var(--azul-marinho), var(--azul)); margin-bottom: 18px; position: relative; overflow: hidden; }
.mockup-banner::after { content: 'SUA IMOBILIÁRIA AQUI'; position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.9); font-family: var(--font-titulo); font-weight: 700; letter-spacing: 0.05em; }
.mockup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mockup-card { background: var(--cinza-50); border-radius: 8px; padding: 8px; }
.mockup-img { height: 56px; border-radius: 6px; background: linear-gradient(135deg, var(--cinza-200), var(--cinza-300)); margin-bottom: 8px; }
.mockup-line { height: 6px; border-radius: 3px; background: var(--cinza-200); margin-bottom: 4px; }
.mockup-line.short { width: 60%; }
.float-card {
  position: absolute; background: #fff; border-radius: 12px; padding: 14px 16px;
  box-shadow: var(--sombra-md); display: flex; align-items: center; gap: 12px; z-index: 3;
  animation: flutuar 4s ease-in-out infinite;
}
.float-card-1 { top: 8%; right: -16px; }
.float-card-2 { bottom: 10%; left: -16px; animation-delay: 1s; }
.float-card .ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.float-card .ico.green { background: rgba(34,197,94,0.15); color: var(--verde-escuro); }
.float-card .ico.gold { background: rgba(255,180,0,0.15); color: var(--dourado-escuro); }
.float-card .txt { font-size: 0.8rem; }
.float-card .txt strong { display: block; font-family: var(--font-titulo); color: var(--azul-marinho); font-size: 0.95rem; }

/* ---------- LOGOS / SOCIAL PROOF ---------- */
.logos { padding: 40px 0; border-bottom: 1px solid var(--cinza-200); }
.logos-label { text-align: center; font-size: 0.85rem; color: var(--cinza-500); margin-bottom: 24px; font-weight: 500; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.7; }
.logos-row .logo-item { font-family: var(--font-titulo); font-weight: 700; font-size: 1.1rem; color: var(--cinza-500); display: flex; align-items: center; gap: 8px; }
.logos-row .logo-item svg { width: 22px; height: 22px; }

/* ---------- MÉTRICAS ---------- */
.metricas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.metrica { text-align: center; }
.metrica .num { font-family: var(--font-titulo); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--azul); line-height: 1; }
.metrica .num .plus { color: var(--dourado); }
.metrica .label { font-size: 0.9rem; color: var(--cinza-700); margin-top: 8px; }

/* ---------- FEATURES (DORES → BENEFÍCIOS) ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: #fff; border: 1px solid var(--cinza-200); border-radius: var(--raio);
  padding: 32px 28px; transition: all var(--t); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--dourado)); transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-md); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-ico {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--azul), var(--azul-marinho));
}
.feature-ico.dourado { background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro)); }
.feature-ico.verde { background: linear-gradient(135deg, var(--verde), var(--verde-escuro)); }
.feature-ico svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { font-size: 0.96rem; color: var(--cinza-700); }

/* ---------- COMO FUNCIONA ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: #fff; border: 2px solid var(--cinza-200); display: grid; place-items: center;
  font-family: var(--font-titulo); font-weight: 800; font-size: 1.5rem; color: var(--azul);
  position: relative; z-index: 2; transition: all var(--t);
}
.step:hover .step-num { border-color: var(--azul); background: var(--azul); color: #fff; transform: scale(1.05); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }
.steps::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px; background: var(--cinza-200); z-index: 1; }

/* ---------- MODELOS (PREVIEW) ---------- */
.modelos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.modelo-card { border-radius: var(--raio); overflow: hidden; background: #fff; border: 1px solid var(--cinza-200); transition: all var(--t); }
.modelo-card:hover { transform: translateY(-8px); box-shadow: var(--sombra-lg); }
.modelo-preview { aspect-ratio: 16/10; background: var(--azul-marinho); position: relative; overflow: hidden; }
.modelo-preview .ph-content { position: absolute; inset: 16px; display: flex; flex-direction: column; }
.modelo-preview .ph-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.modelo-preview .ph-logo { width: 44px; height: 12px; background: rgba(255,255,255,0.4); border-radius: 3px; }
.modelo-preview .ph-nav { display: flex; gap: 8px; }
.modelo-preview .ph-nav span { width: 24px; height: 5px; background: rgba(255,255,255,0.3); border-radius: 3px; }
.modelo-preview .ph-hero { flex: 1; border-radius: 6px; background: rgba(255,255,255,0.12); margin-bottom: 12px; display: flex; align-itemms: flex-end; padding: 12px; }
.modelo-preview .ph-hero .ph-text { width: 60%; }
.modelo-preview .ph-hero .ph-text span { display: block; height: 7px; background: rgba(255,255,255,0.5); border-radius: 3px; margin-bottom: 5px; }
.modelo-preview .ph-hero .ph-text span:last-child { width: 40%; }
.modelo-preview .ph-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.modelo-preview .ph-card { aspect-ratio: 1; background: rgba(255,255,255,0.18); border-radius: 4px; }
.modelo-preview .ph-card.alt { background: rgba(255,180,0,0.3); }
.modelo-info { padding: 24px; }
.modelo-info h3 { margin-bottom: 6px; }
.modelo-info p { font-size: 0.9rem; margin-bottom: 16px; }
.modelo-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.modelo-tag { font-size: 0.75rem; padding: 4px 10px; background: var(--cinza-100); color: var(--cinza-700); border-radius: var(--raio-pill); font-weight: 500; }

/* Variantes de cor dos previews */
.modelo-preview.v-azul { background: linear-gradient(135deg, #1E3A8A, #0A1F44); }
.modelo-preview.v-verde { background: linear-gradient(135deg, #166534, #064E3B); }
.modelo-preview.v-dourado { background: linear-gradient(135deg, #92400E, #451A03); }
.modelo-preview.v-roxo { background: linear-gradient, #581C87, #3B0764); }
.modelo-preview.v-roxo { background: linear-gradient(135deg, #581C87, #3B0764); }
.modelo-preview.v-grená { background: linear-gradient(135deg, #7F1D1D, #450A0A); }
.modelo-preview.v-petros { background: linear-gradient(135deg, #155E75, #083344); }

/* ---------- DEPOIMENTOS ---------- */
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.depoimento { background: #fff; border-radius: var(--raio); padding: 32px; border: 1px solid var(--cinza-200); position: relative; transition: all var(--t); }
.depoimento:hover { box-shadow: var(--sombra-md); transform: translateY(-4px); }
.depoimento .stars { margin-bottom: 16px; font-size: 1.1rem; }
.depoimento p { font-size: 1rem; color: var(--cinza-900); font-style: italic; margin-bottom: 24px; }
.depoimento .cliente { display: flex; align-items: center; gap: 14px; }
.depoimento .cliente .avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--azul), var(--dourado)); display: grid; place-items: center; color: #fff; font-family: var(--font-titulo); font-weight: 700; }
.depoimento .cliente-info strong { display: block; color: var(--azul-marinho); font-family: var(--font-titulo); }
.depoimento .cliente-info span { font-size: 0.85rem; color: var(--cinza-500); }
.depoimento::before { content: '“'; position: absolute; top: 10px; right: 24px; font-size: 5rem; font-family: Georgia, serif; color: var(--azul-suave); line-height: 1; }

/* ---------- PREÇO / OFERTA ---------- */
.oferta-wrap { max-width: 980px; margin: 0 auto; }
.oferta-card {
  background: #fff; border-radius: var(--raio-lg); overflow: hidden;
  box-shadow: var(--sombra-lg); border: 2px solid var(--azul);
  display: grid; grid-template-columns: 1.3fr 1fr;
}
.oferta-esq { padding: 48px 44px; background: linear-gradient(160deg, var(--azul-marinho), #122a5c); color: #fff; }
.oferta-esq h2 { color: #fff; margin-bottom: 16px; }
.oferta-esq p { color: rgba(255,255,255,0.85); }
.oferta-esq ul { margin-top: 28px; display: grid; gap: 14px; }
.oferta-esq li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.92); font-size: 0.98rem; }
.oferta-esq li svg { width: 22px; height: 22px; color: var(--verde); flex-shrink: 0; margin-top: 2px; }
.oferta-dir { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: #fff; }
.oferta-dir .selo { margin-bottom: 20px; }
.preco-box { margin-bottom: 28px; }
.preco-box .de { font-size: 0.95rem; color: var(--cinza-500); text-decoration: line-through; }
.preco-box .valor { font-family: var(--font-titulo); font-weight: 800; font-size: clamp(3rem, 7vw, 4.5rem); color: var(--azul-marinho); line-height: 1; }
.preco-box .valor .cifra { font-size: 0.5em; vertical-align: top; margin-right: 2px; }
.preco-box .periodo { font-size: 1rem; color: var(--cinza-700); }
.preco-box .economia { display: inline-block; margin-top: 12px; padding: 5px 14px; background: rgba(34,197,94,0.15); color: var(--verde-escuro); border-radius: var(--raio-pill); font-weight: 600; font-size: 0.85rem; }
.oferta-cta { width: 100%; margin-bottom: 16px; }
.garantia-row { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--cinza-700); margin-top: 8px; }
.garantia-row svg { width: 18px; height: 18px; color: var(--verde); flex-shrink: 0; }
.countdown { display: flex; gap: 10px; justify-content: center; margin: 24px 0; }
.countdown .unit { background: var(--azul-marinho); color: #fff; border-radius: 10px; padding: 10px 8px; min-width: 58px; text-align: center; }
.countdown .unit .n { font-family: var(--font-titulo); font-weight: 800; font-size: 1.5rem; display: block; line-height: 1; }
.countdown .unit .l { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--cinza-200); border-radius: var(--raio); overflow: hidden; transition: all var(--t); }
.faq-item.open { border-color: var(--azul); box-shadow: var(--sombra); }
.faq-q { width: 100%; text-align: left; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-titulo); font-weight: 600; color: var(--azul-marinho); font-size: 1.05rem; }
.faq-q .ico { width: 30px; height: 30px; border-radius: 50%; background: var(--azul-suave); color: var(--azul); display: grid; place-items: center; flex-shrink: 0; transition: all var(--t); }
.faq-item.open .faq-q .ico { background: var(--azul); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 24px 24px; color: var(--cinza-700); }

/* ---------- CAPTURA / FORMS ---------- */
.capture-card {
  background: #fff; border-radius: var(--raio-lg); padding: 40px;
  box-shadow: var(--sombra-lg); border: 1px solid var(--cinza-200);
}
.capture-card .preview { display: flex; gap: 20px; margin-bottom: 24px; align-items: center; }
.capture-card .preview .thumb {
  width: 84px; height: 108px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--azul-marinho), var(--azul));
  display: grid; place-items: center; color: #fff; box-shadow: var(--sombra);
}
.capture-card .preview .thumb svg { width: 36px; height: 36px; }
.capture-card .preview h3 { margin-bottom: 4px; }
.capture-card .preview p { font-size: 0.9rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--azul-marinho); margin-bottom: 6px; font-family: var(--font-titulo); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--cinza-200); border-radius: var(--raio-sm);
  font-family: var(--font-corpo); font-size: 1rem; color: var(--azul-marinho); background: #fff; transition: all var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 4px rgba(37,99,235,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--cinza-700); }
.form-check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--azul); }
.form-msg { display: none; padding: 14px 16px; border-radius: var(--raio-sm); font-size: 0.92rem; margin-top: 12px; }
.form-msg.ok { display: block; background: rgba(34,197,94,0.12); color: var(--verde-escuro); }
.form-msg.erro { display: block; background: rgba(239,68,68,0.12); color: #b91c1c; }

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: linear-gradient(120deg, var(--azul-marinho) 0%, var(--azul) 100%);
  border-radius: var(--raio-lg); padding: clamp(40px, 6vw, 72px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,180,0,0.18), transparent 70%); }
.cta-final h2 { color: #fff; position: relative; }
.cta-final p { color: rgba(255,255,255,0.85); font-size: 1.15rem; position: relative; max-width: 600px; margin: 16px auto 32px; }
.cta-final .btn { position: relative; }

/* ---------- FOOTER ---------- */
.footer { background: var(--preto); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-titulo); }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--dourado); }
.footer-newsletter input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; margin-bottom: 12px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter input:focus { border-color: var(--dourado); box-shadow: 0 0 0 3px rgba(255,180,0,0.15); }
.footer-bottom { display: flex; justify-content: space-between; align-items: site_navigation; flex-wrap: wrap; gap: 16px; padding: 24px 0; font-size: 0.85rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: all var(--t); }
.footer-social a:hover { background: var(--dourado); color: var(--preto); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; background: var(--verde); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(34,197,94,0.5);
  transition: all var(--t); animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); background: var(--verde-escuro); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- EXIT-INTENT POPUP ---------- */
.overlay { position: fixed; inset: 0; background: rgba(10,31,68,0.6); backdrop-filter: blur(4px); z-index: 1500; display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity var(--t); }
.overlay.show { display: flex; opacity: 1; }
.popup {
  background: #fff; border-radius: var(--raio-lg); max-width: 520px; width: 100%; overflow: hidden;
  box-shadow: var(--sombra-lg); transform: scale(0.9); transition: transform var(--t); position: relative;
}
.overlay.show .popup { transform: scale(1); }
.popup-top { background: linear-gradient(135deg, var(--azul-marinho), var(--azul)); padding: 32px; text-align: center; color: #fff; position: relative; }
.popup-top .close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.2); color: #fff; display: grid; place-items: center; font-size: 1.3rem; }
.popup-top .close:hover { background: rgba(255,255,255,0.35); }
.popup-top .badge-ico { width: 70px; height: 70px; border-radius: 20px; background: rgba(255,255,255,0.15); margin: 0 auto 16px; display: grid; place-items: center; }
.popup-top .badge-ico svg { width: 38px; height: 38px; color: var(--dourado); }
.popup-top h3 { color: #fff; margin-bottom: 8px; }
.popup-top p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.popup-body { padding: 28px 32px 32px; }
.popup-body .form-msg { margin-bottom: 12px; }
.popup-urgency { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 0.85rem; color: var(--dourado-escuro); margin-top: 14px; font-weight: 600; }

/* ---------- TOAST ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--azul-marinho); color: #fff; padding: 14px 24px; border-radius: var(--raio-pill); box-shadow: var(--sombra-lg); z-index: 2000; transition: transform var(--t); display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 20px; height: 20px; color: var(--verde); }

/* ---------- ANIMAÇÕES ---------- */
@keyframes pulse { 0%, 100% { box-shadow: 0 8px 24px rgba(34,197,94,0.5), 0 0 0 0 rgba(34,197,94,0.4); } 50% { box-shadow: 0 8px 24px rgba(34,197,94,0.5), 0 0 0 14px rgba(34,197,94,0); } }
@keyframes flutuar { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .features-grid, .modelos-grid, .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .oferta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .metricas { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 24px; border-bottom: 1px solid var(--cinza-200);
    transform: translateY(-130%); transition: transform var(--t); box-shadow: var(--sombra-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--cinza-100); }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 12px; }
  .menu-toggle { display: flex; }
  .nav .btn:not(.nav-cta) { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-proof { justify-content: center; }
  .float-card-1 { right: 0; }
  .float-card-2 { left: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .features-grid, .modelos-grid, .depoimentos-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .metricas { grid-template-columns: 1fr 1fr; }
  .oferta-esq, .oferta-dir { padding: 32px 24px; }
  .capture-card { padding: 28px 20px; }
  .capture-card .preview { flex-direction: column; text-align: center; }
  .countdown .unit { min-width: 48px; padding: 8px 6px; }
  .countdown .unit .n { font-size: 1.2rem; }
  .float-card { display: none; }
}

/* ============================================================
   BLOG & ARTIGOS
   ============================================================ */

/* ---------- Cabeçalho do blog ---------- */
.blog-hero { padding: calc(var(--header-h) + 60px) 0 56px; background: linear-gradient(180deg, #fff 0%, var(--azul-suave) 100%); text-align: center; }
.blog-hero h1 { margin: 16px 0; }
.blog-hero p { max-width: 620px; margin: 0 auto; font-size: 1.15rem; }

/* ---------- Newsletter bar (captura no topo do blog) ---------- */
.blog-news { background: linear-gradient(120deg, var(--azul-marinho), var(--azul)); border-radius: var(--raio-lg); padding: 32px; margin: 0 24px 56px; max-width: calc(var(--container) - 48px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.blog-news .txt h3 { color: #fff; margin-bottom: 6px; }
.blog-news .txt p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin: 0; }
.blog-news form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 480px; }
.blog-news input { flex: 1; padding: 14px 18px; border-radius: var(--raio-pill); border: 2px solid transparent; font-family: var(--font-corpo); font-size: 1rem; }
.blog-news input:focus { outline: none; border-color: var(--dourado); }

/* ---------- Grid de artigos ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { background: #fff; border: 1px solid var(--cinza-200); border-radius: var(--raio); overflow: hidden; transition: all var(--t); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-lg); border-color: transparent; }
.post-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; display: grid; place-items: center; color: rgba(255,255,255,0.95); }
.post-thumb svg { width: 56px; height: 56px; opacity: 0.85; }
.post-thumb.t-azul { background: linear-gradient(135deg, #1E3A8A, #0A1F44); }
.post-thumb.t-verde { background: linear-gradient(135deg, #166534, #064E3B); }
.post-thumb.t-dourado { background: linear-gradient(135deg, #92400E, #451A03); }
.post-thumb.t-roxo { background: linear-gradient(135deg, #581C87, #3B0764); }
.post-thumb.t-grená { background: linear-gradient(135deg, #7F1D1D, #450A0A); }
.post-thumb.t-petros { background: linear-gradient(135deg, #155E75, #083344); }
.post-cat { position: absolute; top: 14px; left: 14px; padding: 5px 12px; background: rgba(255,255,255,0.95); color: var(--azul-marinho); border-radius: var(--raio-pill); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--cinza-500); margin-bottom: 12px; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--cinza-300); }
.post-body h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.3; transition: color var(--t); }
.post-card:hover h3 { color: var(--azul); }
.post-body p { font-size: 0.92rem; color: var(--cinza-700); margin-bottom: 18px; flex: 1; }
.post-link { font-family: var(--font-titulo); font-weight: 600; color: var(--azul); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.post-link svg { width: 16px; height: 16px; transition: transform var(--t); }
.post-card:hover .post-link svg { transform: translateX(4px); }

/* ---------- Artigo (página de leitura) ---------- */
.artigo-wrap { max-width: 760px; margin: 0 auto; padding: calc(var(--header-h) + 48px) 24px 80px; }
.artigo-hero { text-align: center; margin-bottom: 40px; }
.artigo-hero .post-cat-inline { display: inline-block; padding: 6px 14px; background: var(--azul-suave); color: var(--azul); border-radius: var(--raio-pill); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 20px; }
.artigo-hero h1 { margin-bottom: 20px; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.artigo-hero .artigo-lead { font-size: 1.2rem; color: var(--cinza-700); max-width: 640px; margin: 0 auto 24px; }
.artigo-meta { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 0.9rem; color: var(--cinza-500); }
.artigo-meta .autor { display: flex; align-items: center; gap: 10px; }
.artigo-meta .avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--azul), var(--dourado)); display: grid; place-items: center; color: #fff; font-family: var(--font-titulo); font-weight: 700; font-size: 0.85rem; }
.artigo-thumb { aspect-ratio: 16/7; border-radius: var(--raio-lg); margin-bottom: 48px; display: grid; place-items: center; color: rgba(255,255,255,0.95); max-width: 100%; }
.artigo-thumb svg { width: 80px; height: 80px; opacity: 0.85; }

/* Conteúdo do artigo */
.artigo-content { font-size: 1.08rem; line-height: 1.8; color: var(--cinza-900); }
.artigo-content h2 { font-size: 1.6rem; margin: 48px 0 16px; }
.artigo-content h3 { font-size: 1.25rem; margin: 36px 0 12px; }
.artigo-content p { margin-bottom: 22px; color: var(--cinza-900); }
.artigo-content ul, .artigo-content ol { margin: 0 0 24px 4px; padding-left: 24px; }
.artigo-content li { margin-bottom: 10px; color: var(--cinza-900); }
.artigo-content li::marker { color: var(--azul); }
.artigo-content blockquote { border-left: 4px solid var(--azul); padding: 16px 24px; margin: 28px 0; background: var(--azul-suave); border-radius: 0 var(--raio-sm) var(--raio-sm) 0; font-style: italic; color: var(--azul-marinho); }
.artigo-content strong { color: var(--azul-marinho); }
.artigo-content a { color: var(--azul); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.artigo-content img { border-radius: var(--raio); margin: 28px 0; }

/* Callout dentro do artigo */
.callout { background: linear-gradient(120deg, var(--azul-marinho), var(--azul)); color: #fff; border-radius: var(--raio); padding: 28px; margin: 36px 0; }
.callout h3 { color: #fff; margin-bottom: 10px; }
.callout p { color: rgba(255,255,255,0.88); margin-bottom: 18px; font-size: 1rem; }
.callout .btn { margin: 0; }

/* Box de dica */
.dica-box { background: rgba(255,180,0,0.1); border: 1px solid rgba(255,180,0,0.3); border-radius: var(--raio); padding: 20px 24px; margin: 28px 0; display: flex; gap: 16px; align-items: flex-start; }
.dica-box .ico { width: 36px; height: 36px; border-radius: 10px; background: var(--dourado); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.dica-box .ico svg { width: 20px; height: 20px; }
.dica-box .txt strong { display: block; font-family: var(--font-titulo); color: var(--azul-marinho); margin-bottom: 4px; }
.dica-box .txt p { margin: 0; font-size: 0.95rem; color: var(--cinza-700); }

/* CTA no final do artigo */
.artigo-cta { background: var(--azul-suave); border: 2px dashed var(--azul); border-radius: var(--raio-lg); padding: 36px; text-align: center; margin: 48px 0; }
.artigo-cta h3 { margin-bottom: 12px; }
.artigo-cta p { margin-bottom: 24px; color: var(--cinza-700); }

/* Box de captura no fim do artigo (captura 5) */
.artigo-capture { background: #fff; border: 1px solid var(--cinza-200); border-radius: var(--raio-lg); padding: 36px; margin: 48px 0; box-shadow: var(--sombra); }
.artigo-capture .head { text-align: center; margin-bottom: 24px; }
.artigo-capture .head .tag { margin-bottom: 12px; }
.artigo-capture .head h3 { margin-bottom: 8px; }
.artigo-capture .head p { font-size: 0.95rem; }

/* ---------- Box de compartilhamento ---------- */
.share-row { display: flex; align-items: center; gap: 12px; justify-content: center; padding: 24px 0; border-top: 1px solid var(--cinza-200); border-bottom: 1px solid var(--cinza-200); margin: 48px 0; }
.share-row span { font-size: 0.9rem; color: var(--cinza-700); font-weight: 600; }
.share-btn { width: 40px; height: 40px; border-radius: 10px; background: var(--cinza-100); display: grid; place-items: center; color: var(--azul-marinho); transition: all var(--t); }
.share-btn:hover { background: var(--azul); color: #fff; transform: translateY(-3px); }
.share-btn svg { width: 20px; height: 20px; }

/* ---------- Artigos relacionados ---------- */
.relacionados { margin-top: 64px; }
.relacionados h2 { text-align: center; margin-bottom: 32px; }

/* ---------- Autor bio ---------- */
.autor-bio { display: flex; gap: 20px; align-items: center; background: var(--cinza-50); border-radius: var(--raio); padding: 24px; margin: 40px 0; }
.autor-bio .avatar-lg { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--azul), var(--dourado)); display: grid; place-items: center; color: #fff; font-family: var(--font-titulo); font-weight: 700; font-size: 1.3rem; flex-shrink: 0; }
.autor-bio .info strong { display: block; font-family: var(--font-titulo); color: var(--azul-marinho); font-size: 1.05rem; }
.autor-bio .info span { font-size: 0.85rem; color: var(--cinza-500); }
.autor-bio .info p { font-size: 0.92rem; margin-top: 6px; color: var(--cinza-700); }

/* ---------- Responsivo blog ---------- */
@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-news { flex-direction: column; text-align: center; }
  .blog-news form { max-width: 100%; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-news { padding: 24px; }
  .blog-news form { flex-direction: column; }
  .artigo-wrap { padding-left: 20px; padding-right: 20px; }
  .artigo-content { font-size: 1.02rem; }
  .artigo-content h2 { font-size: 1.4rem; }
}
