/* ============================================================
   MOREIRA CAMINHÕES — Folha de estilo principal
   Mobile-first · Azul-marinho #162a6b · WhatsApp #25D366
   ============================================================ */

/* ---------- TOKENS / VARIÁVEIS ---------- */
:root{
  --navy:        #162a6b;   /* cor principal da marca */
  --navy-deep:   #0f1d4d;   /* tons mais escuros (hero, rodapé) */
  --navy-700:    #1d3585;
  --navy-50:     #eef1f9;   /* fundos suaves */
  --ink:         #16213a;   /* texto principal */
  --muted:       #5b6478;   /* texto secundário */
  --line:        #e3e7f0;   /* bordas */
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-soft:     #f6f8fc;   /* faixas alternadas */
  --wa:          #25D366;   /* verde WhatsApp */
  --wa-dark:     #1ebe5a;
  --gold:        #f0b429;   /* destaque / preço acento */
  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 1px 2px rgba(16,29,77,.06), 0 12px 28px -12px rgba(16,29,77,.22);
  --shadow-lg:   0 24px 60px -24px rgba(16,29,77,.45);
  --maxw:        1180px;
  --pad:         clamp(16px, 5vw, 28px);
  --font-head:   'Saira Condensed', 'Arial Narrow', sans-serif;
  --font-body:   'Barlow', system-ui, -apple-system, sans-serif;
}

/* ---------- RESET ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:0; background:none; }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0; line-height:1.02; letter-spacing:.5px; }

/* ---------- UTILITÁRIOS ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
.section{ padding-block:clamp(48px,8vw,88px); }
.section--soft{ background:var(--bg-soft); }
.eyebrow{
  font-family:var(--font-head); font-weight:700; text-transform:uppercase;
  letter-spacing:3px; font-size:15px; color:var(--navy);
  display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:28px; height:3px; background:var(--gold); border-radius:2px; }
.section-title{
  font-weight:800; text-transform:uppercase;
  font-size:clamp(30px,6vw,48px); color:var(--navy); margin-top:14px;
  text-wrap:balance;
}
.section-sub{ color:var(--muted); max-width:60ch; margin-top:12px; font-size:1.05rem; }

/* ---------- BOTÕES ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-head); font-weight:700; text-transform:uppercase;
  letter-spacing:.6px; font-size:18px;
  padding:15px 24px; border-radius:var(--radius-sm);
  transition:transform .12s ease, box-shadow .2s ease, background .2s ease;
  line-height:1; white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn svg{ width:22px; height:22px; flex:0 0 auto; }
.btn--wa{ background:var(--wa); color:#063a1b; box-shadow:0 10px 24px -10px rgba(37,211,102,.7); }
.btn--wa:hover{ background:var(--wa-dark); color:#fff; }
.btn--call{ background:var(--navy); color:#fff; }
.btn--call:hover{ background:var(--navy-700); }
.btn--ghost{ background:#fff; color:var(--navy); border:2px solid var(--navy); }
.btn--ghost:hover{ background:var(--navy); color:#fff; }
.btn--gold{ background:var(--gold); color:#3a2c00; }
.btn--lg{ font-size:20px; padding:18px 30px; }
.btn--block{ width:100%; }

/* ============================================================
   CABEÇALHO FIXO
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.94); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; min-height:68px; padding-block:8px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:42px; width:auto; }
.header-actions{ display:flex; align-items:center; gap:10px; }
.header-phone{
  display:none; align-items:center; gap:9px; font-family:var(--font-head);
  font-weight:700; color:var(--navy); font-size:19px; letter-spacing:.5px;
}
.header-phone svg{ width:20px; height:20px; flex:0 0 auto; }
.header-phone span{ white-space:nowrap; }
.header-phone small{ display:block; font-family:var(--font-body); font-weight:600;
  font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); line-height:1; }
.header .btn{ font-size:15px; padding:11px 16px; }
@media(min-width:760px){
  .header-phone{ display:flex; }
  .header .btn{ font-size:16px; padding:12px 20px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; color:#fff; overflow:hidden;
  background:linear-gradient(180deg,var(--navy-deep),var(--navy));
}
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg img{ width:100%; height:100%; object-fit:cover; opacity:.6; }
.hero__bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,29,77,.55) 0%, rgba(15,29,77,.78) 60%, rgba(15,29,77,.95) 100%);
}
.hero__inner{ position:relative; z-index:1; padding-block:clamp(40px,9vw,84px); }
.hero__tag{
  display:inline-flex; align-items:center; gap:8px; font-family:var(--font-head);
  font-weight:600; text-transform:uppercase; letter-spacing:2px; font-size:13px;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22);
  padding:7px 14px; border-radius:100px; color:#dfe6ff;
}
.hero h1{
  font-weight:800; text-transform:uppercase;
  font-size:clamp(34px,8.5vw,68px); margin-top:18px; max-width:16ch; text-wrap:balance;
}
.hero h1 .hl{ color:var(--gold); }
.hero p{ font-size:clamp(17px,4vw,21px); color:#cdd6f2; margin-top:16px; max-width:48ch; }
.hero__cta{ display:flex; flex-direction:column; gap:12px; margin-top:28px; max-width:440px; }
@media(min-width:560px){ .hero__cta{ flex-direction:row; } .hero__cta .btn{ flex:1; } }
.hero__mini{ margin-top:22px; display:flex; flex-wrap:wrap; gap:18px 26px; color:#aeb9e0; font-size:14px; }
.hero__mini span{ display:inline-flex; align-items:center; gap:7px; }
.hero__mini svg{ width:17px; height:17px; color:var(--gold); }

/* ============================================================
   FAIXA DE CONFIANÇA
   ============================================================ */
.trust{ background:var(--navy); color:#fff; }
.trust__grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:1px;
  background:rgba(255,255,255,.12);
}
@media(min-width:760px){ .trust__grid{ grid-template-columns:repeat(4,1fr); } }
.trust__item{ background:var(--navy); padding:22px 16px; text-align:center; }
.trust__num{ font-family:var(--font-head); font-weight:800; font-size:clamp(26px,5vw,38px); color:#fff; line-height:1; }
.trust__num .gold{ color:var(--gold); }
.trust__label{ font-size:13px; color:#b9c3e6; margin-top:6px; letter-spacing:.4px; }

/* ============================================================
   CATÁLOGO
   ============================================================ */
.catalog__head{ display:flex; flex-wrap:wrap; align-items:end; justify-content:space-between; gap:16px; }
.filters{
  margin-top:26px; background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow); padding:16px;
}
.filters__row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(min-width:760px){ .filters__row{ grid-template-columns:repeat(5,1fr); } }
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--muted); }
.field select{
  appearance:none; width:100%; font-family:var(--font-body); font-size:16px; font-weight:600;
  color:var(--ink); background:#fff; border:1.5px solid var(--line); border-radius:10px;
  padding:12px 36px 12px 12px; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23162a6b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 10px center; background-size:18px;
}
.field select:focus{ outline:none; border-color:var(--navy); box-shadow:0 0 0 3px rgba(22,42,107,.12); }
.filters__foot{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:14px; flex-wrap:wrap; }
.filters__count{ font-size:14px; color:var(--muted); font-weight:600; }
.filters__count b{ color:var(--navy); font-family:var(--font-head); font-size:18px; }
.btn-clear{ font-family:var(--font-body); font-weight:700; color:var(--navy); font-size:14px;
  text-decoration:underline; text-underline-offset:3px; }

.grid{
  margin-top:26px; display:grid; gap:18px;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
}
.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow); display:flex; flex-direction:column;
  transition:transform .14s ease, box-shadow .2s ease;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.card__media{ position:relative; aspect-ratio:4/3; background:var(--navy-50); }
.card__media img{ width:100%; height:100%; object-fit:cover; }
.card__badge{
  position:absolute; top:12px; left:12px; font-family:var(--font-head); font-weight:700;
  text-transform:uppercase; letter-spacing:.6px; font-size:12px; color:#fff;
  background:var(--navy); padding:6px 11px; border-radius:7px;
}
.card__badge--gold{ background:var(--gold); color:#3a2c00; }
.card__body{ padding:16px 16px 18px; display:flex; flex-direction:column; flex:1; }
.card__model{ font-family:var(--font-head); font-weight:700; font-size:21px; color:var(--navy); text-transform:uppercase; line-height:1.05; }
.card__specs{ display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; }
.chip{ font-size:12.5px; font-weight:600; color:var(--navy); background:var(--navy-50);
  border-radius:6px; padding:4px 9px; letter-spacing:.2px; }
.card__price{ margin-top:14px; }
.card__price .lbl{ font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; font-weight:700; }
.card__price .val{ font-family:var(--font-head); font-weight:800; font-size:30px; color:var(--ink); line-height:1; margin-top:2px; }
.card__actions{ margin-top:16px; display:grid; grid-template-columns:1fr auto; gap:9px; }
.card__actions .btn{ font-size:15px; padding:13px 14px; }
.card__detail{ background:var(--navy); color:#fff; }
.card__detail:hover{ background:var(--navy-700); }
.card__wa{ background:var(--wa); color:#063a1b; width:50px; padding:0; }
.empty{ grid-column:1/-1; text-align:center; padding:50px 20px; color:var(--muted); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.feat-grid{ margin-top:30px; display:grid; gap:16px; grid-template-columns:1fr; }
@media(min-width:620px){ .feat-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:980px){ .feat-grid{ grid-template-columns:repeat(3,1fr); } }
.feat{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:24px; display:flex; gap:16px; align-items:flex-start;
}
.feat__icon{
  flex:0 0 auto; width:52px; height:52px; border-radius:12px; display:grid; place-items:center;
  background:var(--navy-50); color:var(--navy);
}
.feat__icon svg{ width:28px; height:28px; }
.feat h3{ font-size:21px; font-weight:700; color:var(--navy); text-transform:uppercase; }
.feat p{ margin:6px 0 0; color:var(--muted); font-size:15.5px; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.steps{ margin-top:32px; display:grid; gap:18px; grid-template-columns:1fr; counter-reset:step; }
@media(min-width:760px){ .steps{ grid-template-columns:repeat(4,1fr); } }
.step{ position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px 22px; }
.step__n{
  font-family:var(--font-head); font-weight:800; font-size:46px; line-height:1;
  color:var(--navy-50); -webkit-text-stroke:2px var(--navy); position:absolute; top:14px; right:18px;
}
.step__ico{ width:46px; height:46px; color:var(--navy); }
.step__ico svg{ width:46px; height:46px; }
.step h3{ font-size:20px; font-weight:700; color:var(--navy); text-transform:uppercase; margin-top:14px; }
.step p{ margin:6px 0 0; color:var(--muted); font-size:15px; }

/* ============================================================
   PROVA SOCIAL
   ============================================================ */
.testi-grid{ margin-top:30px; display:grid; gap:18px; grid-template-columns:1fr; }
@media(min-width:760px){ .testi-grid{ grid-template-columns:repeat(3,1fr); } }
.testi{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px; box-shadow:var(--shadow); }
.testi__stars{ color:var(--gold); font-size:18px; letter-spacing:2px; }
.testi p{ font-size:16px; color:var(--ink); margin:12px 0 16px; }
.testi__who{ display:flex; align-items:center; gap:12px; }
.testi__av{ width:44px; height:44px; border-radius:50%; background:var(--navy); color:#fff;
  display:grid; place-items:center; font-family:var(--font-head); font-weight:700; font-size:19px; }
.testi__who b{ display:block; color:var(--navy); font-size:15px; }
.testi__who span{ font-size:13px; color:var(--muted); }

.patio{ margin-top:26px; display:grid; gap:14px; grid-template-columns:repeat(2,1fr); }
@media(min-width:760px){ .patio{ grid-template-columns:repeat(4,1fr); } }
.patio img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:12px; border:1px solid var(--line); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final{ background:linear-gradient(135deg,var(--navy),var(--navy-deep)); color:#fff; text-align:center; }
.cta-final .section-title{ color:#fff; }
.cta-final p{ color:#cdd6f2; max-width:50ch; margin:14px auto 0; font-size:1.1rem; }
.cta-final__btns{ margin-top:28px; display:flex; flex-direction:column; gap:12px; max-width:440px; margin-inline:auto; }
@media(min-width:560px){ .cta-final__btns{ flex-direction:row; } .cta-final__btns .btn{ flex:1; } }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer{ background:var(--navy-deep); color:#c2cbe6; padding-block:48px 28px; font-size:15px; }
.footer__grid{ display:grid; gap:30px; grid-template-columns:1fr; }
@media(min-width:760px){ .footer__grid{ grid-template-columns:1.4fr 1fr 1fr; } }
.footer h4{ font-size:18px; color:#fff; text-transform:uppercase; letter-spacing:1px; margin-bottom:14px; }
.footer a:hover{ color:#fff; }
.footer__logo{ height:46px; margin-bottom:14px; }
.footer__row{ display:flex; gap:10px; align-items:flex-start; margin-bottom:10px; }
.footer__row svg{ width:19px; height:19px; flex:0 0 auto; color:var(--gold); margin-top:2px; }
.footer__social{ display:flex; gap:12px; margin-top:6px; }
.footer__social a{ width:42px; height:42px; border-radius:10px; background:rgba(255,255,255,.08);
  display:grid; place-items:center; transition:background .2s; }
.footer__social a:hover{ background:var(--wa); }
.footer__social svg{ width:22px; height:22px; color:#fff; }
.footer__bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:34px; padding-top:20px;
  display:flex; flex-wrap:wrap; gap:8px 18px; justify-content:space-between; font-size:13.5px; color:#8e9ac4; }

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.wa-float{
  position:fixed; right:16px; bottom:16px; z-index:60;
  width:62px; height:62px; border-radius:50%; background:var(--wa);
  display:grid; place-items:center; box-shadow:0 12px 30px -6px rgba(37,211,102,.7);
  animation:wa-pulse 2.4s infinite;
}
.wa-float svg{ width:34px; height:34px; color:#fff; }
@keyframes wa-pulse{ 0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }
/* dá espaço pro botão flutuante não cobrir o rodapé no celular */
@media(max-width:560px){ .footer{ padding-bottom:90px; } }

/* ============================================================
   PÁGINA DE DETALHE DO CAMINHÃO
   ============================================================ */
.breadcrumb{ font-size:14px; color:var(--muted); padding-block:16px; display:flex; gap:8px; flex-wrap:wrap; }
.breadcrumb a{ color:var(--navy); font-weight:600; }
.detail-grid{ display:grid; gap:30px; grid-template-columns:1fr; }
@media(min-width:980px){ .detail-grid{ grid-template-columns:1.25fr .85fr; align-items:start; } }

/* galeria */
.gallery__main{ position:relative; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); background:var(--navy-50); aspect-ratio:4/3; }
.gallery__main img{ width:100%; height:100%; object-fit:cover; }
.gallery__badge{ position:absolute; top:14px; left:14px; background:var(--navy); color:#fff; white-space:nowrap;
  font-family:var(--font-head); font-weight:700; text-transform:uppercase; padding:7px 13px; border-radius:8px; font-size:13px; z-index:2; }
.gallery__thumbs{ display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:8px; }
.gallery__thumbs button{ aspect-ratio:4/3; border-radius:8px; overflow:hidden; border:2px solid var(--line); background:var(--navy-50); }
.gallery__thumbs button.active{ border-color:var(--navy); }
.gallery__thumbs img{ width:100%; height:100%; object-fit:cover; }

.video-block{ margin-top:24px; }
.video-frame{ position:relative; aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); background:#000; }
.video-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* coluna de compra */
.buybox{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); padding:24px; position:sticky; top:84px; }
.buybox__brand{ font-family:var(--font-head); font-weight:600; text-transform:uppercase; letter-spacing:2px; color:var(--navy); font-size:14px; }
.buybox__title{ font-family:var(--font-head); font-weight:800; text-transform:uppercase; font-size:30px; color:var(--ink); line-height:1.02; margin-top:4px; }
.buybox__chips{ display:flex; flex-wrap:wrap; gap:7px; margin-top:14px; }
.buybox__price{ margin-top:18px; padding-top:18px; border-top:1px solid var(--line); }
.buybox__price .lbl{ font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; font-weight:700; }
.buybox__price .val{ font-family:var(--font-head); font-weight:800; font-size:44px; color:var(--navy); line-height:1; margin-top:4px; }
.buybox__price .obs{ font-size:13px; color:var(--muted); margin-top:6px; }
.fipe-ref{ display:block; font-size:14px; color:var(--muted); font-weight:600; margin-bottom:8px; }
.fipe-ref s{ color:var(--ink); }
.fipe-save{ display:inline-block; background:#e7f8ee; color:#147a40; font-weight:700; font-size:13px; padding:5px 11px; border-radius:7px; margin-top:10px; }
.buybox__cta{ display:flex; flex-direction:column; gap:10px; margin-top:20px; }
.buybox__trust{ margin-top:18px; display:grid; gap:8px; }
.buybox__trust div{ display:flex; gap:9px; align-items:center; font-size:14px; color:var(--ink); font-weight:600; }
.buybox__trust svg{ width:18px; height:18px; color:var(--wa); flex:0 0 auto; }

/* ficha técnica */
.specs-table{ width:100%; border-collapse:collapse; margin-top:22px; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.specs-table tr{ border-bottom:1px solid var(--line); }
.specs-table tr:nth-child(odd){ background:var(--bg-soft); }
.specs-table th{ text-align:left; font-family:var(--font-body); font-weight:700; color:var(--navy);
  width:42%; padding:14px 16px; font-size:14px; text-transform:uppercase; letter-spacing:.5px; vertical-align:top; }
.specs-table td{ padding:14px 16px; font-size:16px; color:var(--ink); font-weight:600; }

.finance-box{ margin-top:24px; background:var(--navy); color:#fff; border-radius:var(--radius); padding:26px; display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
.finance-box svg{ width:46px; height:46px; color:var(--gold); flex:0 0 auto; }
.finance-box h3{ font-size:23px; text-transform:uppercase; color:#fff; }
.finance-box p{ margin:6px 0 0; color:#cdd6f2; font-size:15.5px; }
.finance-box .btn{ margin-left:auto; }

/* barra fixa de CTA no celular (detalhe) */
.mobile-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:65;
  display:flex; gap:8px; padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.97); backdrop-filter:blur(8px); border-top:1px solid var(--line);
}
.mobile-cta .btn{ flex:1; font-size:16px; padding:14px 10px; }
.mobile-cta .btn--call{ flex:0 0 56px; }
@media(min-width:980px){ .mobile-cta{ display:none; } }
@media(max-width:979px){ .wa-float{ display:none; } } /* evita duplicar CTA no detalhe mobile */

/* ============================================================
   FORMULÁRIO DE CONTATO (fallback — nome + telefone)
   ============================================================ */
.lead{ background:linear-gradient(135deg,var(--navy),var(--navy-deep)); color:#fff; }
.lead__grid{ display:grid; gap:30px; grid-template-columns:1fr; align-items:center; }
@media(min-width:860px){ .lead__grid{ grid-template-columns:1.05fr .95fr; } }
.lead__copy .section-title{ color:#fff; }
.lead__copy p{ color:#cdd6f2; max-width:46ch; margin-top:14px; font-size:1.08rem; }
.lead__bullets{ list-style:none; padding:0; margin:20px 0 0; display:grid; gap:10px; }
.lead__bullets li{ display:flex; gap:10px; align-items:center; color:#e7ecfb; font-weight:600; font-size:15.5px; }
.lead__bullets svg{ width:20px; height:20px; color:var(--gold); flex:0 0 auto; }
.lead__card{ background:#fff; border-radius:var(--radius); padding:26px; box-shadow:var(--shadow-lg); }
.lead__card h3{ font-family:var(--font-head); font-weight:800; text-transform:uppercase; color:var(--navy); font-size:24px; }
.lead__card .sub{ color:var(--muted); font-size:14.5px; margin:6px 0 18px; }
.lead-field{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.lead-field label{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--muted); }
.lead-field input{ font-family:var(--font-body); font-size:16px; color:var(--ink); background:#fff;
  border:1.5px solid var(--line); border-radius:10px; padding:13px 14px; width:100%; }
.lead-field input:focus{ outline:none; border-color:var(--navy); box-shadow:0 0 0 3px rgba(22,42,107,.12); }
.lead-form .btn{ width:100%; margin-top:4px; }
.lead-form .erro{ color:var(--danger,#d23c3c); font-size:14px; font-weight:600; min-height:18px; margin-top:4px; }
.lead-ok{ text-align:center; padding:16px 6px; }
.lead-ok svg{ width:52px; height:52px; color:var(--wa); margin:0 auto 12px; }
.lead-ok h3{ color:var(--navy); }
.lead-ok p{ color:var(--muted); font-size:15px; margin-top:8px; }
.lead__priv{ font-size:12px; color:var(--muted); margin-top:14px; text-align:center; line-height:1.5; }
.lead__priv a{ color:var(--navy); text-decoration:underline; }

/* ============================================================
   BANNER DE COOKIES (LGPD)
   ============================================================ */
.cookie{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:90;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  box-shadow:0 20px 50px -16px rgba(15,29,77,.55);
  padding:18px 20px; display:flex; gap:18px; align-items:center; flex-wrap:wrap;
  max-width:1040px; margin:0 auto;
}
.cookie__txt{ flex:1 1 300px; font-size:14.5px; color:var(--ink); line-height:1.5; }
.cookie__txt b{ color:var(--navy); }
.cookie__txt a{ color:var(--navy); text-decoration:underline; text-underline-offset:2px; font-weight:600; }
.cookie__btns{ display:flex; gap:10px; flex:0 0 auto; }
.cookie .btn{ font-size:15px; padding:11px 20px; }
.cookie__recusar{ background:#fff; color:var(--navy); border:2px solid var(--line); }
.cookie__recusar:hover{ border-color:var(--navy); }
@media(max-width:560px){
  .cookie{ padding:16px; }
  .cookie__btns{ width:100%; }
  .cookie__btns .btn{ flex:1; }
  /* sobe o banner pra não cobrir a barra fixa de CTA no detalhe */
  body.tem-mobile-cta .cookie{ bottom:74px; }
}
