/* ───────────── Solução Despachante — Landing ───────────── */
:root {
  /* Brand — Classic Blue (default) */
  --bg: #f6f7fb;
  --bg-2: #ffffff;
  --ink: #0b1220;
  --ink-2: #1f2937;
  --muted: #5b6678;
  --line: #e5e9f2;
  --line-2: #d8dde9;

  --brand: #1e40af;       /* deep facade blue */
  --brand-2: #2563eb;     /* brighter blue */
  --brand-ink: #ffffff;
  --accent: #facc15;      /* sign yellow */
  --accent-ink: #0b1220;
  --danger: #dc2626;      /* PARE red */
  --ok: #16a34a;          /* whatsapp green-ish */
  --wa: #25d366;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(13, 22, 49, .06), 0 1px 1px rgba(13, 22, 49, .04);
  --shadow-md: 0 6px 24px -8px rgba(13, 22, 49, .14), 0 2px 6px rgba(13, 22, 49, .06);
  --shadow-lg: 0 28px 60px -20px rgba(13, 22, 49, .22), 0 12px 24px -12px rgba(13, 22, 49, .12);

  --maxw: 1180px;
  --pad-x: clamp(16px, 5vw, 32px);

  --section-pad: clamp(64px, 9vw, 120px);
  --section-pad-sm: clamp(40px, 6vw, 72px);

  --font-display: "Bricolage Grotesque", "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

/* Bold direction */
[data-theme="bold"] {
  --bg: #fffbea;
  --bg-2: #ffffff;
  --brand: #0b1f63;
  --brand-2: #1d4ed8;
  --accent: #fb923c;
  --line: #f0e6c6;
  --line-2: #e6d9a5;
}

/* Premium dark direction */
[data-theme="dark"] {
  --bg: #0a0f1f;
  --bg-2: #0f1530;
  --ink: #f7f9ff;
  --ink-2: #d6dcf0;
  --muted: #8c95b0;
  --line: #1c2546;
  --line-2: #2a3461;
  --brand: #6aa6ff;
  --brand-2: #8ec1ff;
  --brand-ink: #060914;
  --accent: #f5c64a;
  --accent-ink: #0b1220;
  --shadow-md: 0 6px 24px -8px rgba(0, 0, 0, .5), 0 2px 6px rgba(0, 0, 0, .35);
  --shadow-lg: 0 28px 60px -20px rgba(0, 0, 0, .6), 0 12px 24px -12px rgba(0, 0, 0, .4);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 7vw, 64px); line-height: 1.04; letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 4.4vw, 44px); line-height: 1.08; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2.4vw, 24px); line-height: 1.2; }
p  { margin: 0; color: var(--ink-2); }
p.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px;
  font-weight: 700; color: var(--brand);
  padding: 6px 10px;
  border: 1px solid color-mix(in oklab, var(--brand) 25%, transparent);
  background: color-mix(in oklab, var(--brand) 8%, transparent);
  border-radius: 999px;
}

/* ───────── Nav ───────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 14px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-logo {
  display: block;
  height: 44px; width: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklab, white 30%, var(--line));
  transition: transform .2s ease;
}
.brand:hover .brand-logo { transform: translateY(-1px); }
.brand-tag {
  display: none;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  padding-left: 4px;
  border-left: 2px solid var(--accent);
  line-height: 1.1;
}
@media (min-width: 720px) { .brand-tag { display: block; padding: 2px 0 2px 10px; } }

.nav-actions { display: inline-flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--ink-2);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.theme-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in oklab, var(--brand) 8%, var(--bg-2));
}
.theme-toggle .i-sun { display: none; }
[data-theme="dark"] .theme-toggle .i-sun { display: block; }
[data-theme="dark"] .theme-toggle .i-moon { display: none; }

.nav-links { display: none; gap: 4px; }
.nav-links a {
  padding: 8px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: color-mix(in oklab, var(--brand) 10%, transparent); color: var(--brand); }
@media (min-width: 900px) {
  .nav-links { display: inline-flex; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 18px; border-radius: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent; cursor: pointer; user-select: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-wa { background: var(--wa); color: #04210d; box-shadow: 0 6px 22px -8px rgba(37,211,102,.55); }
.btn-wa:hover { background: #1ec05c; box-shadow: 0 10px 28px -8px rgba(37,211,102,.65); }
.btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 6px 22px -10px color-mix(in oklab, var(--brand) 80%, black); }
.btn-primary:hover { background: color-mix(in oklab, var(--brand) 88%, black); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--brand); color: var(--brand); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 22px; font-size: 15.5px; border-radius: 14px; }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 80px) 0 var(--section-pad);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 90% 0%, color-mix(in oklab, var(--brand) 18%, transparent) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 30%, color-mix(in oklab, var(--accent) 18%, transparent) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; display: grid; gap: clamp(36px, 6vw, 64px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
}
.hero h1 .accent {
  display: inline;
  background: var(--accent);
  color: var(--accent-ink);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 4px;
}
.hero-sub {
  margin-top: 18px; font-size: clamp(16px, 1.5vw, 18px); color: var(--muted); max-width: 56ch;
}
.hero-ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center;
  font-size: 13px; color: var(--muted);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--brand); }

/* Hero visual collage */
.collage {
  position: relative; aspect-ratio: 4/5; max-width: 520px; margin: 0 auto;
}
.collage-card {
  position: absolute; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid color-mix(in oklab, white 50%, var(--line));
  background: var(--bg-2);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.collage-card img { width: 100%; height: 100%; object-fit: cover; }
.collage-card.c1 { left: 0; top: 8%; width: 64%; aspect-ratio: 4/3; transform: rotate(-3deg); }
.collage-card.c2 { right: 0; top: 0; width: 52%; aspect-ratio: 3/4; transform: rotate(4deg); }
.collage-card.c3 { left: 16%; bottom: 0; width: 60%; aspect-ratio: 4/3; transform: rotate(2deg); }
.collage:hover .c1 { transform: rotate(-5deg) translate(-4px, -4px); }
.collage:hover .c2 { transform: rotate(6deg) translate(4px, -2px); }
.collage:hover .c3 { transform: rotate(0deg) translate(0, 6px); }

.badge-stamp {
  position: absolute; left: -16px; bottom: -8px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  letter-spacing: -.01em; text-align: center; line-height: 1.05;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.25);
  transform: rotate(-12deg);
  z-index: 2;
  padding: 12px;
}

/* Marquee */
.marquee {
  margin-top: clamp(40px, 6vw, 64px);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  position: relative;
}
[data-theme="dark"] .marquee { background: var(--bg-2); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  padding: 18px 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; opacity: .9; }
.marquee-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media (max-width: 640px) { .marquee-track { animation-duration: 18s; } }

/* ───────── Section base ───────── */
section { padding: var(--section-pad) 0; position: relative; }
.section-head { display: grid; gap: 14px; margin-bottom: clamp(28px, 4vw, 48px); max-width: 760px; }
.section-head p.lead { font-size: clamp(15px, 1.6vw, 17px); color: var(--muted); }

/* ───────── Services ───────── */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.service-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklab, var(--brand) 30%, var(--line));
}
.service-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: color-mix(in oklab, var(--brand) 10%, transparent);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 14px;
  transition: background .25s, color .25s, transform .25s;
}
.service-card:hover .ic {
  background: var(--brand); color: var(--brand-ink); transform: rotate(-6deg) scale(1.06);
}
.service-card h3 { font-size: 19px; }
.service-card p { margin-top: 6px; font-size: 14.5px; color: var(--muted); }
.service-card .more {
  margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--brand);
  display: inline-flex; gap: 4px; align-items: center;
}
.service-card .corner-tag {
  position: absolute; top: 12px; right: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent);
  padding: 4px 8px; border-radius: 6px;
}

.services-more {
  margin-top: 24px; padding-top: 24px; border-top: 1px dashed var(--line-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (min-width: 700px) { .services-more { grid-template-columns: repeat(4, 1fr); } }
.svc-mini {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.svc-mini svg { color: var(--brand); flex-shrink: 0; }
.svc-mini:hover { border-color: var(--brand); color: var(--brand); }

/* ───────── Steps / Como funciona ───────── */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  counter-reset: stp;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  counter-increment: stp;
}
.step::before {
  content: counter(stp, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800; line-height: 1;
  color: color-mix(in oklab, var(--brand) 18%, transparent);
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 18px; }
.step p { margin-top: 6px; font-size: 14.5px; color: var(--muted); }

/* ───────── Two-paths ───────── */
.paths {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px;
}
@media (min-width: 800px) { .paths { grid-template-columns: 1fr 1fr; } }
.path {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.path .pic {
  position: absolute; inset: 0; opacity: .14; pointer-events: none;
  background-position: center; background-size: cover; filter: saturate(0.8);
}
.path.local { background: linear-gradient(160deg, var(--brand) 0%, color-mix(in oklab, var(--brand) 70%, black) 100%); color: var(--brand-ink); border-color: transparent; }
.path.local h3, .path.local p { color: var(--brand-ink); }
.path.local .eyebrow { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.25); }
.path.remote .eyebrow { background: color-mix(in oklab, var(--accent) 20%, transparent); color: var(--ink); border-color: color-mix(in oklab, var(--accent) 40%, transparent); }
.path h3 { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 6px; }
.path p { font-size: 14.5px; }
.path .points { margin: 16px 0 22px; padding: 0; list-style: none; display: grid; gap: 8px; }
.path .points li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.path .points li svg { flex-shrink: 0; margin-top: 2px; }
.path.local .points svg { color: var(--accent); }
.path.remote .points svg { color: var(--brand); }

/* ───────── About / Photos ───────── */
.about {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 900px) { .about { grid-template-columns: 1fr 1.05fr; } }
.about-photos {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;
  gap: 12px;
}
.about-photos .ph {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-2);
}
.about-photos .ph img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-photos .ph.tall { grid-row: span 2; }
.about-photos .ph.tall img { aspect-ratio: 4/6; }

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 24px;
  border-top: 1px solid var(--line); padding-top: 22px;
}
.stat .n {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3vw, 34px); letter-spacing: -.03em; color: var(--brand);
  line-height: 1;
}
.stat .l { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* ───────── Differentiators / Credentials ───────── */
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 700px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .diff-grid { grid-template-columns: repeat(4, 1fr); } }
.diff {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.diff .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
  display: grid; place-items: center; color: var(--ink);
}
.diff h3 { font-size: 17px; }
.diff p { font-size: 14px; color: var(--muted); }

/* ───────── Reviews ───────── */
.reviews-head {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.google-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.stars { color: #fbbf24; letter-spacing: -2px; font-size: 16px; }
.review-rail {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 720px) { .review-rail { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .review-rail { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: var(--brand-ink); display: grid; place-items: center;
  font-weight: 700; font-size: 15px;
}
.review .nm { font-weight: 600; font-size: 14.5px; }
.review .dt { font-size: 12px; color: var(--muted); }
.review p { font-size: 14.5px; line-height: 1.55; }
.review .stars { font-size: 15px; }

/* ───────── FAQ ───────── */
.faq { display: grid; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2);
  overflow: hidden;
}
.faq-q {
  width: 100%; padding: 18px 20px; background: transparent; border: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  color: var(--ink); text-align: left; cursor: pointer;
}
.faq-q .chev { transition: transform .25s ease; color: var(--brand); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 20px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ───────── Contact / Map ───────── */
.contact {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 920px) { .contact { grid-template-columns: 0.9fr 1.1fr; } }
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: color-mix(in oklab, var(--brand) 12%, transparent);
  color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0;
}
.info-row .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.info-row .val { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.info-row .val small { display: block; font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.hours-list { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 4px; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
}
.hours-list li .d { color: var(--muted); text-transform: capitalize; }
.hours-list li .t { text-align: right; white-space: nowrap; }
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  background: var(--bg-2);
}
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; filter: var(--map-filter, none); }
[data-theme="dark"] .map-wrap iframe { filter: invert(0.92) hue-rotate(180deg) saturate(0.8); }

/* ───────── CTA strip ───────── */
.cta-strip {
  margin: var(--section-pad-sm) auto;
  background: linear-gradient(135deg, var(--brand) 0%, color-mix(in oklab, var(--brand) 60%, #000) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  color: var(--brand-ink);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 320px; height: 320px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 60%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip-inner {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center;
}
.cta-strip h2 { color: var(--brand-ink); font-size: clamp(22px, 3vw, 30px); max-width: 24ch; }
.cta-strip p { color: color-mix(in oklab, var(--brand-ink) 80%, transparent); font-size: 15px; margin-top: 6px; max-width: 50ch; }

/* ───────── Footer ───────── */
footer {
  padding: var(--section-pad-sm) 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.foot-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  margin-bottom: 28px;
}
@media (min-width: 720px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink); margin-bottom: 12px; }
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-links a:hover { color: var(--brand); }
.soc { display: flex; gap: 10px; margin-top: 14px; }
.soc a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bg-2); border: 1px solid var(--line);
  transition: all .2s ease;
}
.soc a:hover { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); transform: translateY(-2px); }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
}

/* ───────── Floating WhatsApp ───────── */
.fab-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #04210d;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -10px rgba(37,211,102,.6), 0 4px 12px rgba(0,0,0,.1);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.08); box-shadow: 0 24px 50px -10px rgba(37,211,102,.75); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 18px 40px -10px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.55); }
  50% { box-shadow: 0 18px 40px -10px rgba(37,211,102,.6), 0 0 0 16px rgba(37,211,102,0); }
}

/* ───────── Reveal-on-scroll ───────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .28s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .36s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .44s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .52s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .6s; }
.reveal-stagger.in > *:nth-child(9) { transition-delay: .68s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: .76s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .fab-wa { animation: none; }
}

/* ───────── Road dashes separator ───────── */
.road {
  height: 8px; width: 100%;
  background: repeating-linear-gradient(90deg, var(--accent) 0 22px, transparent 22px 38px);
  opacity: .85;
}
[data-theme="dark"] .road { opacity: .7; }

/* mobile menu spacing */
.mobile-cta { display: inline-flex; }
@media (max-width: 540px) {
  .mobile-cta span.hide-xs { display: none; }
}
