/* =========================================================
   PANTANAL FLAG WINDBANNER — style.css
   Palette extraída da logo (k-means): azul do wordmark, verde-folha e
   dourado das fitas do símbolo, ciano da fita clara — remete às águas,
   vegetação e pôr do sol do Pantanal. Tipografia: Sora (display,
   geométrica e firme) + Plus Jakarta Sans (corpo, alta legibilidade).
   ========================================================= */

:root {
  /* Cores da marca (derivadas da logo via k-means) */
  --blue:        #0A5FC4;   /* azul do wordmark "PANTANAL" */
  --blue-deep:   #052D57;   /* azul profundo — hero/rodapé */
  --leaf:        #2F8F4E;   /* verde-folha da fita do símbolo */
  --gold:        #F2C600;   /* fita dourada do símbolo */
  --sky:         #11CAF8;   /* fita ciano clara do símbolo */
  --green:       #25D366;   /* reservado exclusivamente para WhatsApp */
  --hero-green-light: #4CAE6B; /* topo do degradê da hero */
  --hero-green-dark:  #0B3D22; /* base do degradê da hero */
  --footer-green-light: #1E6B41; /* topo do degradê do rodapé */
  --footer-green-dark:  #062A17; /* base do degradê do rodapé */
  --cream:       #F2F8F6;   /* fundo claro, tom de água parada */
  --ink:         #0A222E;   /* texto principal */
  --ink-soft:    #4C6B75;   /* texto secundário */
  --white:       #FFFFFF;

  /* Raio assimétrico — dois cantos vivos, dois arredondados (ar mais
     dinâmico, referência às pontas das flags) */
  --radius-sm: 8px;
  --radius-md: 6px 26px 6px 26px;
  --radius-lg: 8px 40px 8px 40px;
  --shadow-sm: 0 4px 16px rgba(5,45,87,0.10);
  --shadow-md: 0 14px 34px rgba(5,45,87,0.16);

  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --container: 1180px;

  /* Corte chanfrado usado nos botões (ponta única, referência à flag) */
  --btn-clip: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 18px 100%);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.3px; margin: 0 0 .5em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Proteção de conteúdo (client-side) ---------- */
body.no-copy {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
body.no-copy img { -webkit-user-drag: none; pointer-events: auto; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
}
.eyebrow--light { color: var(--gold); }

.section-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); color: var(--blue-deep); }
.section-title--light { color: var(--white); }
.section-lede { color: var(--ink-soft); max-width: 60ch; margin: 0 0 32px; font-size: 1.05rem; }

/* ---------- Buttons ----------
   Formato chanfrado (clip-path com uma ponta única), sem borda
   transparente — preenchimento sólido sempre (ver playbook, bug de
   clip-path + border transparent em mobile). Variante outline usa
   fundo sólido translúcido em vez de borda. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px 15px 24px;
  clip-path: var(--btn-clip);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.btn--primary { background: var(--blue); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue-deep); }
.btn--outline { background: rgba(10,95,196,.08); color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--outline-light { background: rgba(255,255,255,.14); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,.24); }
.btn--gold { background: var(--gold); color: var(--blue-deep); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #ffd94a; }
.btn--whatsapp { background: var(--green); color: var(--white); padding: 11px 24px 11px 18px; font-size: .9rem; }
.btn--whatsapp svg { width: 18px; height: 18px; fill: currentColor; }
.btn--sm { padding: 11px 22px 11px 16px; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  transition: transform .18s ease;
}
.btn-icon:hover { transform: scale(1.08); }
.btn-icon svg { width: 22px; height: 22px; fill: var(--white); }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,248,246,0.98);
  border-bottom: 1px solid rgba(5,45,87,0.08);
}
.header__row { display: flex; align-items: center; justify-content: space-between; padding: 4px 24px; gap: 16px; }
.brand { padding: 0; }
.brand img { height: 80px; width: auto; display: block; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a { font-weight: 600; font-size: 0.95rem; color: var(--ink); position: relative; }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width .2s ease;
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta { background: var(--blue); color: var(--white) !important; padding: 9px 20px; clip-path: var(--btn-clip); }
.nav-cta::after { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; z-index: 101; }
.nav-toggle span { width: 26px; height: 3px; background: var(--blue-deep); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.header__whatsapp { flex-shrink: 0; }

/* ================= HERO ================= */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(76,174,107,.78) 0%, rgba(11,61,34,.94) 100%),
    url('../assets/img/campo-grande-ms.webp') center 42% / cover no-repeat;
  padding: 60px 0 0;
  overflow: hidden;
}
/* Painel decorativo diagonal atrás do mockup, em vez de overlay liso */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__visual::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: linear-gradient(135deg, rgba(17,202,248,.22) 0%, rgba(242,198,0,.16) 55%, transparent 78%);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
  z-index: 0;
}
.hero__visual img { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
}
.hero .eyebrow { color: var(--gold); }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.hero__title--single { font-size: clamp(2.2rem, 5.6vw, 4.1rem); line-height: 1.08; letter-spacing: -0.5px; }
.hero__title-line1 { color: var(--gold); font-size: calc(1em - 2px); white-space: nowrap; }
.hero__title-line2 { color: var(--white); font-size: calc(1em + 4px); white-space: nowrap; }

@media (max-width: 480px) {
  /* Em telas bem estreitas, "EM MOVIMENTO" ainda não cabe numa linha só
     mesmo no menor tamanho do clamp — permite quebrar aqui em vez de
     estourar a largura da tela (nowrap + overflow ficaria pior). */
  .hero__title-line2 { white-space: normal; }
}
.hero__subtitle { font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; color: #EAF6FB; margin: 18px 0 8px; }
.hero__lede { color: rgba(234,246,251,.92); font-size: 1.15rem; font-weight: 500; max-width: 50ch; margin: 26px 0 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__visual img { max-height: 480px; width: auto; filter: drop-shadow(0 20px 40px rgba(5,45,87,.28)); }

/* Assinatura: as flags "balançam" como se estivessem ao vento */
@keyframes flagSway {
  0%   { transform: rotate(-2.5deg) translateY(0); }
  50%  { transform: rotate(2deg) translateY(-4px); }
  100% { transform: rotate(-2.5deg) translateY(0); }
}
.flag-sway {
  transform-origin: bottom center;
  animation: flagSway 5.5s ease-in-out infinite;
  will-change: transform;
}
.model-card:hover .flag-sway,
.model-card:focus-within .flag-sway { animation-duration: 1.8s; }

/* Divisor de seção — motivo de "meandro de rio" (curvas mais largas e
   assimétricas que a fita ondulada padrão), em referência aos rios do
   Pantanal, com 3 camadas azul/verde-folha/dourado. */
.wave-divider { display: block; width: 100%; height: 100px; margin: -1px 0 -3px; }
.wave-divider__ribbon--green { fill: var(--blue); opacity: .9; }
.wave-divider__ribbon--gold  { fill: var(--leaf); opacity: .9; }
.wave-divider__ribbon--sky   { fill: var(--cream); }
/* Sem flip no rodapé: as curvas (com folgas transparentes) precisam ficar
   encostadas no topo — onde a folga transparente mostra o cream da seção
   anterior, criando a mesma técnica de transição da hero. O flip usado no
   template original fazia a borda RETA de fechamento do path (sempre
   plana) aparecer em cima, criando a linha dura que motivou este ajuste. */
/* A fita "sky" é a última desenhada (fica por cima) e é a que encosta na
   costura — por isso recebe a cor do TOPO do degradê do rodapé, criando a
   mesma técnica de transição usada na hero (seção com fundo próprio +
   fita cuja cor de fechamento é a cor da seção seguinte). */
.site-footer .wave-divider__ribbon--sky { fill: var(--footer-green-light); }

/* ================= SECTIONS GENERIC ================= */
.section { padding: 80px 0; }
.diferenciais { background: var(--cream); padding-top: 40px; }

.cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px; }

/* Cards de diferenciais — selo numerado (01, 02...) em vez de ícone
   emoji, usando counter-reset/counter-increment. */
.cards-row { counter-reset: diferencial; }
.mini-card {
  counter-increment: diferencial;
  position: relative;
  background: var(--white); border-radius: var(--radius-md); padding: 34px 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mini-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mini-card::before {
  content: counter(diferencial, decimal-leading-zero);
  position: absolute;
  top: -16px; left: 22px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  clip-path: polygon(50% 0, 100% 22%, 100% 100%, 50% 82%, 0 100%, 0 22%);
}
.mini-card .mini-card__icon { display: none; }
.mini-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; color: var(--blue-deep); margin: 6px 0 6px; }
.mini-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.beneficios { background: var(--white); }
.beneficios__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
.beneficio { border-left: 4px solid var(--leaf); padding-left: 18px; }
.beneficio:nth-child(2n) { border-left-color: var(--gold); }
.beneficio:nth-child(3n) { border-left-color: var(--sky); }
.beneficio h3 { font-family: var(--font-body); font-weight: 800; color: var(--blue-deep); font-size: 1.1rem; margin-bottom: 6px; }
.beneficio p { color: var(--ink-soft); margin: 0; }

/* ---------- Campanhas políticas ---------- */
.campanhas {
  background: radial-gradient(circle at 20% 20%, #0B3E73 0%, var(--blue-deep) 60%);
  color: var(--white);
  position: relative;
}
.campanhas__grid { max-width: 760px; }
.campanhas__text { color: #C7DCEC; margin-bottom: 16px; }
.campanhas__text strong { color: var(--gold); }

/* ---------- Modelos ---------- */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.model-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.model-card:hover, .model-card:focus-visible { transform: translateY(-8px); box-shadow: var(--shadow-md); outline: none; }
.model-card__media { position: relative; background: var(--white); padding: 22px; display: flex; align-items: flex-end; justify-content: center; height: 240px; }
/* Canto dobrado triangular no topo do card (em vez da tarja lisa) */
.model-card__media::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 46px 46px 0;
  border-color: transparent var(--blue) transparent transparent;
  opacity: .92;
}
.model-card__media img { height: 100%; width: auto; object-fit: contain; transition: filter .25s ease; }
.flag-tint-blue { filter: hue-rotate(213deg) saturate(1.5) brightness(1.05); }
.flag-tint-leaf { filter: hue-rotate(139deg) saturate(1.35) brightness(1.02); }
.flag-tint-gold { filter: hue-rotate(49deg)  saturate(1.3)  brightness(1.12); }
.flag-tint-sky  { filter: hue-rotate(192deg) saturate(1.5)  brightness(1.05); }
.model-card:hover .flag-tint-blue,
.model-card:focus-within .flag-tint-blue { filter: hue-rotate(213deg) saturate(1.7) brightness(1.1); }
.model-card:hover .flag-tint-leaf,
.model-card:focus-within .flag-tint-leaf { filter: hue-rotate(139deg) saturate(1.55) brightness(1.08); }
.model-card:hover .flag-tint-gold,
.model-card:focus-within .flag-tint-gold { filter: hue-rotate(49deg) saturate(1.5) brightness(1.16); }
.model-card:hover .flag-tint-sky,
.model-card:focus-within .flag-tint-sky { filter: hue-rotate(192deg) saturate(1.7) brightness(1.1); }
.model-card__body { padding: 20px 22px 24px; border-top: 4px solid var(--cream); }
.model-card__body h3 { font-family: var(--font-body); font-weight: 800; color: var(--blue-deep); font-size: 1.15rem; margin-bottom: 10px; }
.model-card__sizes { display: flex; gap: 8px; margin-bottom: 18px; }
.chip { background: var(--cream); border: 1px solid #D6E9E3; color: var(--blue); font-size: .8rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.model-card__actions { display: flex; align-items: center; gap: 10px; }
.model-card__actions .btn--sm { flex: 1; justify-content: center; }

/* ---------- Galeria (carrossel) ---------- */
.gallery-carousel { position: relative; display: flex; align-items: center; gap: 12px; padding: 0 24px; max-width: var(--container); margin: 0 auto; }
.gallery-track {
  display: flex; gap: 20px; flex: 1; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none; padding: 4px 0 12px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 calc((100% - 3 * 20px) / 4);
  scroll-snap-align: start;
  position: relative; border: none; padding: 0; border-radius: var(--radius-md); overflow: hidden;
  background: var(--white); aspect-ratio: 4/3; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.07); }

.carousel-btn {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--white); color: var(--blue); box-shadow: var(--shadow-sm);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.carousel-btn:hover { background: var(--blue); color: var(--white); transform: scale(1.06); }
.carousel-btn:disabled { opacity: .35; cursor: default; pointer-events: none; }

.lightbox {
  position: fixed; inset: 0; background: rgba(3,20,33,.92); z-index: 999;
  display: flex; align-items: center; justify-content: center; padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 720px; text-align: center; }
.lightbox img { max-height: 75vh; margin: 0 auto; border-radius: var(--radius-md); }
.lightbox figcaption { color: var(--white); margin-top: 14px; font-weight: 700; }
.lightbox__close {
  position: absolute; top: 20px; right: 28px; background: none; border: none;
  color: var(--white); font-size: 2.4rem; line-height: 1; z-index: 2;
}

/* ---------- Clientes marquee ---------- */
.clientes { background: var(--white); text-align: center; }
.clientes .container { margin-bottom: 20px; }
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__item { flex: 0 0 auto; width: 160px; padding: 0 26px; display: flex; align-items: center; justify-content: center; }
.marquee__item img { max-height: 60px; width: auto; filter: grayscale(1); opacity: .7; transition: filter .2s ease, opacity .2s ease; }
.marquee__item img:hover { filter: grayscale(0); opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Orçamento ---------- */
.orcamento { background: var(--cream); }
.orcamento__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.form { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row label { font-weight: 700; font-size: .9rem; color: var(--blue-deep); }
.form__row input, .form__row select, .form__row textarea {
  border: 1.5px solid #D6E9E3; border-radius: var(--radius-sm); padding: 12px 14px;
  font-family: var(--font-body); font-size: 0.95rem; background: var(--cream); color: var(--ink);
  transition: border-color .18s ease, background .18s ease;
}
.form__row input:focus, .form__row select:focus, .form__row textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
}
/* Bug conhecido (ver playbook, seção 3, item 9 / checklist 2.8): campos
   required SEM placeholder disparam :invalid:not(:placeholder-shown) já
   no carregamento da página, com borda vermelha falsa antes de qualquer
   interação. Todos os campos required abaixo têm placeholder — a regra
   já nasce correta neste site (não precisa do fallback de :not([placeholder])). */
.form__row input:invalid:not(:placeholder-shown) { border-color: #E0554B; }
#modelo.is-highlighted { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(242,198,0,.35); }
.form__feedback { min-height: 1.4em; font-weight: 600; font-size: .9rem; }
.form__feedback.is-success { color: var(--leaf); }
.form__feedback.is-error { color: #C4342A; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ================= FOOTER ================= */
/* .site-footer fica transparente (deixa o cream da página aparecer atrás
   da parte superior da fita, igual à técnica usada na hero) — quem recebe
   o degradê de verde é o .site-footer__body, que começa exatamente onde a
   fita termina (margem negativa se sobrepondo à costura). */
.site-footer { background: transparent; color: #D7ECE0; overflow: hidden; }
.site-footer__body {
  background: linear-gradient(180deg, var(--footer-green-light) 0%, var(--footer-green-dark) 100%);
}
.cta-final { padding: 88px 0 96px; }
.cta-final__inner { text-align: center; }
.cta-final h2 { color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 36px; }
.cta-final .hero__cta { justify-content: center; }

.footer__grid { display: grid; grid-template-columns: 18fr 26fr 28fr 28fr; gap: 32px; padding: 50px 24px; align-items: start; }
.footer__grid .footer__col:nth-child(2) { margin-right: 28px; }
.footer__col h3 { font-family: var(--font-body); color: var(--white); font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.footer__col p { margin: 0 0 6px; font-size: .92rem; }
.footer__col p svg { vertical-align: middle; margin-right: 6px; position: relative; top: -1px; }
.footer__col a:hover { color: var(--gold); }
/* Bug conhecido (playbook, seção 3, item 9): .site-footer tem
   overflow:hidden pra não vazar o divisor — sem word-break, e-mails
   longos ultrapassam a coluna e ficam invisíveis (cortados, sem scroll
   visível). Sempre quebrar palavras longas nos links de contato. */
.footer__col a[href^="mailto:"] { word-break: break-word; overflow-wrap: break-word; }
/* A logo já tem contorno/preenchimento branco no texto ("PANTANAL",
   "WINDBANNER"), então lê bem direto sobre o verde do rodapé — sem
   precisar de caixa branca por trás (a aplicação de brightness(0)
   invert(1), pensada pra logos de 1 cor só, é que embaralhava as formas
   antes; a logo original, sem filtro, funciona bem aqui). */
.footer__logo { height: 46px; width: auto; margin-bottom: 10px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
.footer__social { display: flex; gap: 14px; margin-top: 10px; }
.footer__social a { font-size: .85rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; text-align: center; font-size: .82rem; color: #8FC2A3; }

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(5,45,87,.35);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.floating-whatsapp svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes floatPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .brand img { height: 60px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__visual img { max-height: 320px; }
  .cards-row { grid-template-columns: repeat(2, 1fr); }
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { flex-basis: calc((100% - 20px) / 2); }
  .orcamento__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid .footer__col:nth-child(2) { margin-right: 0; }
}

@media (max-width: 720px) {
  .brand img { height: 46px; }
  .header__row { flex-wrap: wrap; }
  .main-nav { order: 3; position: fixed; inset: 72px 0 0 0; background: var(--cream); padding: 24px; transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s; z-index: 90; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-toggle { display: flex; order: 2; }
  .header__whatsapp { order: 1; }
  .header__whatsapp span { display: none; }
  .cards-row, .beneficios__grid, .models-grid { grid-template-columns: 1fr; }
  .gallery-item { flex-basis: 82%; }
  .gallery-carousel { padding: 0 12px; }
  .carousel-btn { width: 38px; height: 38px; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__grid .footer__col:nth-child(2) { margin-right: 0; }
  .footer__social { justify-content: center; }
  .footer__col { align-items: center; display: flex; flex-direction: column; }
  .model-card__media::after { border-width: 0 36px 36px 0; }
}