/* ===================================================================
   Cursos Liberty Politécnica — Estética Automotiva
   Paleta do logo (navy, aço, vinho, creme) + acento bronze/latão
   =================================================================== */

:root {
  --navy-900: #0d141d;
  --navy-800: #141d27;
  --navy-700: #1c2a39;
  --navy-600: #22374c;
  --steel:    #345167;
  --steel-light: #6d90ac;
  --wine:     #6a1211;
  --wine-600: #8a2224;
  --wine-500: #ab2f30;
  --gold:     #c19a5b;   /* bronze / latão — acento premium */
  --gold-soft:#dcbd8b;

  --cream:   #f3eee6;    /* fundo claro quente */
  --cream-2: #eae2d5;
  --ink:     #17222e;    /* texto em fundo claro */
  --ink-soft:#5c6874;

  --text:  #eef1f4;      /* texto em fundo escuro */
  --muted: #94a2b0;
  --line:  rgba(255,255,255,.09);

  --radius: 16px;
  --radius-lg: 26px;
  --round: 46px;         /* dobra arredondada entre seções */
  --shadow: 0 30px 70px -26px rgba(0,0,0,.7);
  --shadow-sm: 0 14px 34px -16px rgba(0,0,0,.55);
  --shadow-light: 0 30px 60px -30px rgba(23,34,46,.35);
  --maxw: 1180px;

  --ff-display: "Oswald", "Arial Narrow", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-hand: "Caveat", cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* grão orgânico global — tira o "flat digital" */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- tipografia ---------- */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.04; letter-spacing: .2px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); text-transform: uppercase; font-weight: 700; }
h1 em { font-style: italic; font-weight: 500; color: var(--gold-soft); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); text-transform: uppercase; font-weight: 700; }
h3 { font-size: 1.34rem; text-transform: uppercase; letter-spacing: .5px; }
.hl { color: var(--wine-500); }
.section-light .hl { color: var(--wine-600); }
.ink { color: var(--gold); }
/* marca-texto: sublinhado bronze desenhado (varia o destaque, foge da fórmula) */
.underline-mark { position: relative; white-space: nowrap; }
.underline-mark::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: .06em; height: .26em; z-index: -1;
  background: linear-gradient(var(--gold-soft), var(--gold)); opacity: .5; border-radius: 3px;
  transform: rotate(-.6deg);
}

/* kicker (substitui o "badge") */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 3px;
  font-size: .8rem; font-weight: 600; color: var(--wine-600); margin-bottom: 18px;
}
.kicker-line { width: 34px; height: 2px; background: currentColor; display: inline-block; }
.kicker-light { color: var(--gold); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 500; font-size: .98rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 13px 26px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--wine-600), var(--wine));
  color: #fff; box-shadow: 0 14px 28px -14px rgba(138,34,36,.8);
}
.btn-primary:hover { box-shadow: 0 18px 38px -14px rgba(171,47,48,.9); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,.24); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(193,154,91,.06); }
.section-light .btn-ghost { color: var(--ink); border-color: rgba(23,34,46,.2); }
.section-light .btn-ghost:hover { border-color: var(--wine-600); color: var(--wine-600); background: rgba(138,34,36,.05); }
.btn-sm { padding: 9px 18px; font-size: .84rem; }
.btn-lg { padding: 16px 32px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13,20,29,.94);
  backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 46px; width: auto; filter: drop-shadow(0 3px 6px rgba(0,0,0,.4)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--ff-display); }
.brand-text strong { font-size: 1.18rem; letter-spacing: 2px; color: var(--cream); }
.brand-text small { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) { font-size: .92rem; color: #c7cfd7; font-weight: 500; transition: color .2s; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .25s ease; }
.nav a:not(.btn):hover { color: #fff; }
.nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; overflow: hidden; background: var(--navy-900); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: url("../img/hero.jpg") center right / cover no-repeat; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--navy-900) 26%, rgba(13,20,29,.9) 50%, rgba(13,20,29,.5) 100%),
    linear-gradient(to top, var(--navy-800), transparent 42%);
}
/* grade técnica sutil */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(109,144,172,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,144,172,.06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(105deg, #000 30%, transparent 75%);
  -webkit-mask-image: linear-gradient(105deg, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.55fr .8fr; gap: 50px; align-items: center;
  padding-block: clamp(64px, 10vw, 120px);
}
.hero-content { max-width: 660px; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.12rem; color: #c3ccd5; max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-trust { display: flex; align-items: flex-start; gap: 26px; flex-wrap: wrap; }
.hero-trust > div:not(.sep) { display: flex; flex-direction: column; gap: 2px; }
.hero-trust strong { font-family: var(--ff-display); font-size: 2.1rem; color: #fff; line-height: 1; }
.hero-trust strong::after { content: ""; display: block; width: 22px; height: 3px; background: var(--gold); margin-top: 7px; }
.hero-trust span { font-size: .8rem; color: var(--muted); line-height: 1.25; }
.hero-trust .sep { width: 1px; height: 52px; background: var(--line); }
/* terceiro item é categoria (kit), não métrica — ícone bronze em vez de número */
.stat-kit .stat-ico { display: block; color: var(--gold); margin-bottom: 9px; }
.stat-kit .stat-ico svg { display: block; }

/* card de preço */
.hero-card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, rgba(28,42,57,.96), rgba(20,29,39,.96));
  border: 1px solid rgba(109,144,172,.22); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow);
}
.hero-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); opacity: .8; }
.hero-card-seal {
  display: inline-block; margin-bottom: 16px;
  background: rgba(193,154,91,.14); color: var(--gold-soft); border: 1px solid rgba(193,154,91,.35);
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 1.5px; font-size: .72rem; font-weight: 500;
  padding: 6px 14px; border-radius: 999px;
}
.hero-card-label { display: block; font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; color: var(--gold); }
.hero-price { font-family: var(--ff-display); font-weight: 700; font-size: 3.7rem; color: #fff; line-height: 1; margin: 6px 0 4px; }
.hero-price .cur { font-size: 1.4rem; vertical-align: super; color: #c3ccd5; margin-right: 4px; }
.hero-price .cents { font-size: 1.5rem; color: #c3ccd5; }
.hero-card-note { font-size: .88rem; color: var(--muted); margin-bottom: 22px; }

/* lista com "tick" bronze (sem verde genérico) */
.ticklist { display: grid; gap: 12px; margin-bottom: 24px; }
.ticklist li { position: relative; padding-left: 30px; font-size: .93rem; color: #c8d0d8; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 6px;
  background: rgba(193,154,91,.16); border: 1px solid rgba(193,154,91,.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c19a5b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.ticklist-dark li { color: var(--ink-soft); }
.ticklist-dark li::before { background-color: rgba(138,34,36,.1); border-color: rgba(138,34,36,.3); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a2224' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* indicador de scroll */
.hero-scroll { position: absolute; left: 50%; bottom: 22px; z-index: 2; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.28); border-radius: 14px; }
.hero-scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 3px; background: var(--gold); transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee {
  position: relative; z-index: 3; overflow: hidden; white-space: nowrap;
  background: var(--wine); border-block: 1px solid rgba(0,0,0,.25);
  padding-block: 15px;
}
.marquee-track { display: inline-flex; align-items: center; gap: 26px; animation: marquee 26s linear infinite; }
.marquee span { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 3px; font-size: 1.05rem; color: #f3e7d8; font-weight: 500; }
.marquee i { color: var(--gold-soft); font-style: normal; font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================================================================
   SECTIONS
   =================================================================== */
.section { position: relative; padding-block: clamp(70px, 9vw, 116px); }
.section-dark { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); color: var(--text); }
.section-light { background: var(--cream); color: var(--ink); }
.rounded-top { border-top-left-radius: var(--round); border-top-right-radius: var(--round); margin-top: calc(var(--round) * -1); z-index: 2; }
.section-light.rounded-top { box-shadow: 0 -30px 60px -40px rgba(0,0,0,.5); }

.section-light h2, .section-light h3 { color: var(--ink); }
.section-light .section-head p { color: var(--ink-soft); }

/* estrela decorativa (watermark) — usada UMA vez na página (seção escura) */
.watermark {
  position: absolute; z-index: 0; width: 360px; height: 360px; pointer-events: none;
  top: 50%; right: 40px; transform: translateY(-50%) rotate(-8deg); font-size: 0; opacity: .03;
  background: no-repeat center / contain;
}
.watermark-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' d='M50 2 61.8 35.5 97 36.3 68.6 57.2 78.5 90.5 50 70.5 21.5 90.5 31.4 57.2 3 36.3 38.2 35.5Z'/%3E%3C/svg%3E");
}

.section-head { max-width: 660px; margin: 0 auto clamp(42px, 5vw, 64px); text-align: center; position: relative; z-index: 1; }
.section-head .kicker { justify-content: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- módulos ---------- */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.module {
  position: relative; background: #fff; border: 1px solid rgba(23,34,46,.08); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-light);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.module:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -34px rgba(23,34,46,.5); }
.module-num {
  position: absolute; top: 16px; left: 18px; z-index: 3;
  font-family: var(--ff-display); font-weight: 700; font-size: 2.1rem; color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,.55); line-height: 1;
}
.module-num::after { content: ""; display: block; width: 26px; height: 3px; background: var(--gold); margin-top: 4px; }
.module-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-700); }
.module-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.03); transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.module:hover .module-img img { transform: scale(1.08); }
/* overlay unifica a temperatura das fotos (dá coesão navy) */
.module-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,22,30,.6), rgba(34,55,76,.14) 55%, transparent); }
.module-body { padding: 22px 22px 24px; position: relative; }
.module-body h3 { margin-bottom: 9px; color: var(--ink); }
.module-body p { font-size: .95rem; color: var(--ink-soft); padding-right: 26px; }
.module-arrow {
  position: absolute; right: 20px; bottom: 22px; font-size: 1.3rem; color: var(--wine-600);
  transform: translateX(-6px); opacity: 0; transition: transform .3s ease, opacity .3s ease;
}
.module:hover .module-arrow { transform: translateX(0); opacity: 1; }

/* card 04 (faróis) puxa azul mais forte — domar pra casar com o sistema */
.modules .module:nth-child(4) .module-img img { filter: saturate(.6) contrast(1.04); }
.modules .module:nth-child(4) .module-img::after { background: linear-gradient(to top, rgba(15,22,30,.62), rgba(34,55,76,.26) 55%, rgba(34,55,76,.08)); }

.module-cta {
  background: linear-gradient(155deg, var(--navy-600), var(--navy-800));
  border: 0; display: flex; align-items: center; text-align: left; color: #fff;
}
.module-cta .module-body { padding: 34px 28px; width: 100%; }
.module-cta h3 { color: #fff; margin-bottom: 10px; }
.module-cta p { color: #c3ccd5; margin-bottom: 22px; padding: 0; }
.scribble { font-family: var(--ff-hand); font-size: 1.9rem; color: var(--gold-soft); transform: rotate(-6deg); display: inline-block; margin-bottom: 4px; }

/* ---------- split (estrutura / contato) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; position: relative; z-index: 1; }
.split-content .lead { font-size: 1.1rem; color: #c3ccd5; margin-bottom: 28px; }
.section-light .split-content .lead { color: var(--ink-soft); }
.split-content h2 { margin-bottom: 16px; }

.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; max-height: 580px; object-fit: cover; }
.split-media.tilt { transform: rotate(-1.4deg); }
.split-media.tilt img { transform: scale(1.05); }
.split-badge {
  position: absolute; right: 20px; bottom: 20px; z-index: 2;
  background: rgba(13,20,29,.85); backdrop-filter: blur(6px);
  border: 1px solid rgba(193,154,91,.35); border-radius: 14px; padding: 15px 20px;
  display: flex; align-items: center; gap: 14px;
}
.split-badge strong { font-family: var(--ff-display); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.split-badge span { font-size: .84rem; color: #d5dde4; line-height: 1.3; }
.media-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 1.5px; font-size: .72rem;
  background: rgba(13,20,29,.7); color: var(--gold-soft); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 7px;
}

.features { display: grid; gap: 8px; }
.features li, .contact-list li { display: flex; gap: 16px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.features li:last-child { border-bottom: 0; }
.section-light .features li, .section-light .contact-list li { border-color: rgba(23,34,46,.1); }
.feat-ico {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(193,154,91,.18), rgba(52,81,103,.12));
  border: 1px solid rgba(193,154,91,.3); color: var(--gold);
}
.features strong, .contact-list strong { display: block; font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .6px; font-size: 1.04rem; color: #fff; margin-bottom: 2px; }
.section-light .features strong, .section-light .contact-list strong { color: var(--ink); }
.features span, .contact-list span { font-size: .93rem; color: var(--muted); }

/* ---------- pricing ---------- */
.pricing { display: flex; justify-content: center; position: relative; z-index: 1; }
.price-card {
  position: relative; width: 100%; max-width: 500px; text-align: center;
  background: #fff; border: 1px solid rgba(23,34,46,.09); border-radius: 28px;
  padding: 44px 38px; box-shadow: var(--shadow-light); overflow: hidden;
}
.price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
/* carimbo/selo artesanal — aro bronze, tipografia da casa */
.price-stamp {
  position: absolute; top: 22px; right: 20px; width: 88px; height: 88px; border-radius: 50%;
  border: 1.5px solid rgba(193,154,91,.55); display: grid; place-items: center; transform: rotate(-11deg); opacity: .9;
}
.price-stamp::before { content: ""; position: absolute; inset: 5px; border-radius: 50%; border: 1px solid rgba(193,154,91,.3); }
.price-stamp span { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 1.5px; font-size: .58rem; color: var(--gold); text-align: center; line-height: 1.35; }
.price-tag { display: inline-block; font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; color: var(--gold); padding: 6px 16px; border: 1px solid rgba(193,154,91,.4); border-radius: 999px; margin-bottom: 20px; }
.price-value { font-family: var(--ff-display); font-weight: 700; font-size: 4.6rem; color: var(--ink); line-height: 1; }
.price-value .cur { font-size: 1.6rem; vertical-align: super; color: var(--ink-soft); margin-right: 5px; }
.price-value .cents { font-size: 1.8rem; color: var(--ink-soft); }
.price-pay { color: var(--ink-soft); margin: 8px 0 28px; font-size: .98rem; }
.price-card .ticklist { text-align: left; margin-bottom: 26px; }

.pix-box { background: var(--cream); border: 1px dashed rgba(23,34,46,.24); border-radius: 12px; padding: 15px 16px; margin-bottom: 22px; }
.pix-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-soft); margin-bottom: 8px; }
.pix-key { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pix-key code { font-family: "Consolas", ui-monospace, monospace; font-size: 1.02rem; color: var(--ink); letter-spacing: .5px; }
.btn-copy { display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; background: #fff; border: 1px solid rgba(23,34,46,.18); color: var(--ink-soft); padding: 8px 13px; border-radius: 9px; cursor: pointer; font-size: .8rem; font-weight: 600; transition: .2s; }
.btn-copy:hover { border-color: var(--wine-600); color: var(--wine-600); }
.btn-copy.copied { color: var(--gold); border-color: var(--gold); }
.price-foot { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------- contato / mapa ---------- */
.contact-list { display: grid; gap: 4px; margin-bottom: 30px; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 13px; }
.map-media { min-height: 400px; position: relative; background: var(--navy-700); }
.map-media iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 400px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }
/* fallback com cara de mapa (grade de "ruas" + pin) caso o iframe demore/falhe */
.map-fallback {
  position: absolute; inset: 0; z-index: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 24px; color: #c3ccd5;
  background:
    linear-gradient(rgba(109,144,172,.09) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(90deg, rgba(109,144,172,.09) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(115deg, transparent 46%, rgba(193,154,91,.14) 47% 49%, transparent 50%),
    radial-gradient(circle at 50% 42%, rgba(52,81,103,.4), transparent 62%),
    var(--navy-700);
}
.map-fallback::before {
  content: ""; width: 20px; height: 20px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--wine-500); box-shadow: 0 6px 14px rgba(0,0,0,.4); margin-bottom: 10px;
}
.map-fallback span { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.map-fallback small { font-size: .85rem; color: var(--gold-soft); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); position: relative; z-index: 2; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-block: 44px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { height: 54px; width: auto; }
.footer-brand p { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; color: var(--cream); line-height: 1.3; }
.footer-brand span { font-family: var(--ff-body); text-transform: none; letter-spacing: 0; font-size: .82rem; color: var(--muted); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-nav a { font-size: .92rem; color: #c7cfd7; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 18px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom span { font-size: .82rem; color: var(--muted); }

/* ===================================================================
   WhatsApp flutuante + toast
   =================================================================== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #29a71a, #128c7e); color: #fff;
  box-shadow: 0 12px 30px -8px rgba(18,140,126,.7); transition: transform .2s;
  animation: waPulse 2.8s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0% { box-shadow: 0 12px 30px -8px rgba(18,140,126,.7), 0 0 0 0 rgba(41,167,26,.45); }
  70% { box-shadow: 0 12px 30px -8px rgba(18,140,126,.7), 0 0 0 15px rgba(41,167,26,0); }
  100% { box-shadow: 0 12px 30px -8px rgba(18,140,126,.7), 0 0 0 0 rgba(41,167,26,0); }
}
.toast {
  position: fixed; left: 50%; bottom: 32px; transform: translate(-50%, 120%);
  background: var(--navy-700); color: #fff; border: 1px solid rgba(193,154,91,.45);
  padding: 13px 22px; border-radius: 999px; font-size: .92rem; font-weight: 500;
  box-shadow: var(--shadow); z-index: 90; opacity: 0; transition: transform .35s ease, opacity .35s ease;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================================================================
   RESPONSIVO
   =================================================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 460px; }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-content { order: 2; }
  .split-media { order: 1; }
  .split-media.tilt { transform: none; }
  #contato .split-content { order: 1; }
  #contato .split-media { order: 2; }
  .watermark { font-size: 22rem; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(13,20,29,.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    padding-inline: 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding-block: 0;
  }
  .nav.open { max-height: 360px; padding-block: 10px 22px; }
  .nav a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 14px; }
  .nav-toggle { display: flex; }
  .hero-trust { gap: 18px; }
  .hero-trust strong { font-size: 1.5rem; }
  .hero-scroll { display: none; }
}
@media (max-width: 560px) {
  .modules { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom .container { flex-direction: column; }
  .brand-text small { display: none; }
  .price-stamp { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
}
