/* ARB Vidros · LP de emergência
   Paleta tirada do logo (azul-marinho + vermelho). CTA no verde do WhatsApp. Hex oficiais PENDENTES. */
:root {
  --navy-900: #061a33;
  --navy-800: #0a2445;
  --navy-700: #12325c;
  --navy-100: #e8eef6;
  --red-600: #d0142c;
  --red-50: #fdecee;
  --sky-500: #2f9bea;
  --sky-50: #eaf5fd;
  --wa: #25d366;
  --wa-hover: #1fc15b;
  --wa-ink: #05301a;
  --ink: #16202e;
  --ink-2: #4a5566;
  --line: #dde3eb;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(6, 26, 51, .08);
  --shadow-lg: 0 18px 44px rgba(6, 26, 51, .16);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 16px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* animações laterais não podem alargar a página no celular */
main { overflow-x: clip; }
img { max-width: 100%; height: auto; }
a { color: var(--navy-700); }
.ic { width: 1em; height: 1em; flex: none; vertical-align: -.14em; }
::selection { background: var(--wa); color: var(--wa-ink); }

/* ---------- Seções ---------- */
.section { padding: 56px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 992px) { .section { padding: 96px 0; } }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy-800); color: #fff; }

.section-head { max-width: 760px; margin: 0 auto 32px; text-align: center; }
@media (min-width: 768px) { .section-head { margin-bottom: 44px; } }
.section-head h2 {
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.25rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -.01em;
  margin-bottom: 12px;
  text-wrap: balance;
}
.section-head .sub { font-size: 1.0625rem; color: var(--ink-2); margin: 0; text-wrap: balance; }
.section-navy .section-head .sub { color: #c6d3e6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--red-600); margin-bottom: 14px;
}

/* ---------- Botão de CTA (verde WhatsApp) ---------- */
.btn-cta {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--wa); color: var(--wa-ink); border: 0;
  font-family: inherit; font-weight: 800; font-size: 1.0625rem; line-height: 1.2;
  padding: 16px 28px; border-radius: 999px; min-height: 56px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn-cta:hover, .btn-cta:focus-visible { background: var(--wa-hover); color: var(--wa-ink); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 211, 102, .45); }
.btn-cta:active { transform: translateY(0) scale(.98); }
.btn-cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.section:not(.section-navy) .btn-cta:focus-visible { outline-color: var(--navy-700); }
.btn-cta .ic { width: 22px; height: 22px; }
.btn-cta .ic-arrow { transition: transform .2s var(--ease); }
.btn-cta:hover .ic-arrow { transform: translateX(4px); }
/* brilho que passa pelo botão */
.btn-cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn-cta.shine::after { animation: shine 3.6s ease-in-out 1.2s infinite; }
@keyframes shine { 0%, 60% { transform: translateX(-120%); } 85%, 100% { transform: translateX(120%); } }
.btn-cta-sm { font-size: .875rem; padding: 12px 14px; gap: 8px; min-height: 48px; box-shadow: none; white-space: nowrap; }
.btn-cta-sm .ic { width: 20px; height: 20px; }
@media (min-width: 400px) { .btn-cta-sm { font-size: .9375rem; } }
.btn-cta-block { width: 100%; }
@media (max-width: 575.98px) { .section-cta .btn-cta { width: 100%; } }

.section-cta { text-align: center; margin-top: 36px; }
@media (min-width: 992px) { .section-cta { margin-top: 48px; } }
.microcopy { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--ink-2); margin-top: 12px; }
.section-cta .microcopy { justify-content: center; }
.section-navy .microcopy, .hero .microcopy { color: #c6d3e6; }

/* ---------- Topo ---------- */
.topbar { background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1030; transition: box-shadow .2s; }
.topbar.is-scrolled { box-shadow: 0 6px 20px rgba(6,26,51,.08); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 60px; gap: 12px; }
@media (min-width: 768px) { .topbar .container { min-height: 68px; } }
.topbar img { height: 40px; width: auto; }
.topbar .hours { display: none; align-items: center; gap: 8px; font-size: .875rem; color: var(--ink-2); }
@media (min-width: 768px) { .topbar .hours { display: flex; } }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero-media { position: relative; }
.hero-media img { display: block; width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(transparent, var(--navy-900)); }
.hero-body { position: relative; padding: 0 0 44px; margin-top: -36px; }
.hero h1 {
  font-size: clamp(1.75rem, 1.15rem + 2.8vw, 3.1rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -.015em;
  margin-bottom: 16px; text-wrap: balance;
}
.hero h1 .cta-line { color: var(--wa); display: block; }
.hero .eyebrow { color: #8fd3ff; }
.hero .lead { font-size: 1.0625rem; color: #dbe4f1; margin-bottom: 22px; }
.hero-bullets { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-bullets li {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9375rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 8px 14px;
}
.hero-bullets .ic { width: 18px; height: 18px; color: var(--wa); }
@media (max-width: 575.98px) { .hero .btn-cta { width: 100%; } }

@media (min-width: 768px) {
  .hero { min-height: 560px; display: flex; align-items: center; }
  .hero-media { position: absolute; inset: 0; }
  .hero-media img { height: 100%; aspect-ratio: auto; transform: scale(1.06); animation: heroZoom 14s ease-out forwards; }
  .hero-media::after {
    inset: 0; height: auto;
    background: linear-gradient(90deg, rgba(6,26,51,.97) 0%, rgba(6,26,51,.9) 45%, rgba(6,26,51,.45) 75%, rgba(6,26,51,.15) 100%);
  }
  .hero-body { padding: 72px 0; margin-top: 0; width: 100%; }
  .hero-copy { max-width: 560px; }
  .hero .lead { font-size: 1.125rem; }
}
@media (min-width: 992px) {
  .hero { min-height: 640px; }
  .hero-body { padding: 96px 0; }
  .hero-copy { max-width: 620px; }
}
@keyframes heroZoom { to { transform: scale(1); } }

/* ---------- Cards genéricos ---------- */
.card-x {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; height: 100%;
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card-x:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
@media (min-width: 992px) { .card-x { flex-direction: column; padding: 28px 24px; } }
.icon-badge {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-50); color: var(--red-600);
  transition: transform .3s var(--ease);
}
.icon-badge .ic { width: 26px; height: 26px; }
.card-x:hover .icon-badge, .promise:hover .icon-badge { transform: rotate(-8deg) scale(1.08); }
.card-x h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 4px; }
.card-x p { margin: 0; color: var(--ink-2); }

/* ---------- Serviços ---------- */
.svc-row {
  display: grid; gap: 16px;
  grid-auto-flow: column; grid-auto-columns: 86%;
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  margin: 0 -16px; padding: 4px 16px 18px; scroll-padding: 0 16px;
  scrollbar-width: none;
}
.svc-row::-webkit-scrollbar { display: none; }
.svc-row > * { scroll-snap-align: start; }
@media (min-width: 576px) { .svc-row { grid-auto-columns: 58%; } }
@media (min-width: 768px) {
  .svc-row { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); overflow: visible; margin: 0; padding: 0; gap: 20px; }
}
@media (min-width: 992px) { .svc-row { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.swipe-hint { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .8125rem; font-weight: 600; color: var(--ink-2); margin-top: 4px; }
.swipe-hint .ic { animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(-3px); } 50% { transform: translateX(3px); } }
@media (min-width: 768px) { .swipe-hint { display: none; } }
.svc-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.svc-dots span { width: 7px; height: 7px; border-radius: 99px; background: #c8d1dd; transition: width .25s var(--ease), background .25s; }
.svc-dots span.on { width: 22px; background: var(--navy-700); }
@media (min-width: 768px) { .svc-dots { display: none; } }

.svc { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-img { overflow: hidden; }
.svc img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.svc:hover img { transform: scale(1.07); }
.svc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { display: flex; align-items: center; gap: 10px; font-size: 1.125rem; font-weight: 800; margin-bottom: 6px; }
.svc h3 .ic { width: 22px; height: 22px; color: var(--red-600); }
.svc p { color: var(--ink-2); margin-bottom: 16px; }
.svc .btn-cta { margin-top: auto; }

/* ---------- Compromissos ---------- */
.promise {
  background: var(--navy-700); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 22px; height: 100%;
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform .25s var(--ease), background .25s;
}
.promise:hover { transform: translateY(-4px); background: #173b6b; }
@media (min-width: 992px) { .promise { flex-direction: column; padding: 28px 24px; } }
.promise .icon-badge { background: rgba(37,211,102,.14); color: var(--wa); }
.promise h3 { font-size: 1.1875rem; font-weight: 800; margin-bottom: 4px; }
.promise p { margin: 0; color: #c6d3e6; }
.promise-line { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 28px 0 0; font-weight: 600; text-align: center; }
.promise-line .ic { width: 22px; height: 22px; color: var(--wa); flex: none; }

/* ---------- Como funciona (jornada) ---------- */
.journey-wrap { position: relative; }
.journey { position: relative; list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.journey-track { position: absolute; left: 27px; top: 28px; bottom: 28px; width: 4px; border-radius: 4px; background: var(--line); }
.journey-fill { position: absolute; inset: 0 0 auto 0; height: 0; border-radius: 4px; background: linear-gradient(var(--wa), var(--sky-500)); transition: height .15s linear; }
.jstep {
  position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 0 14px; align-items: start;
  padding: 16px 16px 16px 0; border-radius: var(--radius);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
  cursor: default;
}
.jstep-body { display: flex; flex-direction: column; padding-top: 4px; }
.jstep-dot {
  position: relative; z-index: 1;
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: #8a96a8; border: 3px solid var(--line);
  transition: background .35s var(--ease), color .35s, border-color .35s, transform .35s var(--ease);
}
.jstep-dot .ic { width: 24px; height: 24px; }
.jstep-num { font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #8a96a8; transition: color .3s; }
.jstep h3 { font-size: 1.125rem; font-weight: 800; margin: 2px 0 4px; }
.jstep p { margin: 0; color: var(--ink-2); }
.jstep { cursor: pointer; outline: none; }
/* passo que o trilho já alcançou */
.jstep.is-lit .jstep-dot { border-color: var(--sky-500); color: var(--sky-500); background: var(--sky-50); }
.jstep.is-lit .jstep-num { color: var(--sky-500); }
/* onde o usuário está (passo 1) */
.jstep.is-here .jstep-dot { background: var(--wa); border-color: var(--wa); color: var(--wa-ink); box-shadow: 0 0 0 6px rgba(37,211,102,.2); }
.jstep.is-here .jstep-num { color: #139a48; }
/* passo em foco (hover, toque ou teclado) */
.jstep.is-active, .jstep:focus-visible { background: #fff; box-shadow: var(--shadow-lg); transform: translateX(4px); }
.jstep.is-active .jstep-dot, .jstep:focus-visible .jstep-dot { transform: scale(1.1); }
.here-badge {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  font-size: .75rem; font-weight: 800; color: #fff; background: var(--red-600);
  border-radius: 999px; padding: 4px 10px 4px 8px; margin-bottom: 6px;
  box-shadow: 0 6px 14px rgba(208,20,44,.3);
}
.here-badge .ic { width: 14px; height: 14px; }
.here-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: ping 1.6s ease-out infinite; }
.here-badge .ic { display: none; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.8); } 100% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }
.journey-status { text-align: center; font-weight: 700; color: var(--ink-2); margin: 20px 0 0; min-height: 1.5em; }
.journey-status strong { color: var(--ink); }

@media (min-width: 992px) {
  .journey { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .journey-track { left: 12.5%; right: 12.5%; top: 45px; bottom: auto; width: auto; height: 4px; }
  .journey-fill { inset: 0 auto 0 0; height: 100%; width: 0; background: linear-gradient(90deg, var(--wa), var(--sky-500)); transition: width .15s linear; }
  .jstep { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 16px 16px 24px; }
  .jstep-dot { margin-bottom: 14px; }
  .jstep-body { align-items: center; padding-top: 0; }
  .jstep.is-active, .jstep:focus-visible { transform: translateY(-6px); }
  .here-badge { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); margin: 0; white-space: nowrap; }
}

/* ---------- Números ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 992px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.stat { text-align: center; padding: 20px 10px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .25s var(--ease); }
.stat:hover { transform: translateY(-4px); }
.stat-num { font-size: clamp(2.25rem, 1.7rem + 2.6vw, 3.75rem); font-weight: 800; color: var(--red-600); line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat-label { margin-top: 8px; color: var(--ink-2); font-weight: 600; font-size: .9375rem; }

.logos { margin: 40px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logos-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 28s linear infinite; }
.logos:hover .logos-track { animation-play-state: paused; }
.logos img { height: 38px; width: auto; filter: grayscale(1); opacity: .7; transition: filter .25s, opacity .25s; }
.logos img:hover { filter: none; opacity: 1; }
.logos .wordmark { font-weight: 800; font-size: 1.5rem; letter-spacing: .02em; color: #6b7686; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 768px) { .gallery { gap: 14px; } }
@media (min-width: 992px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery button { all: unset; box-sizing: border-box; cursor: zoom-in; display: block; position: relative; border-radius: 12px; overflow: hidden; }
.gallery button:focus-visible { outline: 3px solid var(--navy-700); outline-offset: 2px; }
.gallery img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.gallery button:hover img { transform: scale(1.08); }
.gallery .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 8px;
  background: linear-gradient(transparent, rgba(6,26,51,.85)); color: #fff; font-size: .75rem; font-weight: 700;
}
@media (min-width: 768px) { .gallery .cap { font-size: .8125rem; padding: 26px 12px 10px; } }
.gallery .zoom { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--navy-800); display: inline-flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.8); transition: opacity .25s, transform .25s var(--ease); }
.gallery button:hover .zoom, .gallery button:focus-visible .zoom { opacity: 1; transform: scale(1); }
@media (hover: none) { .gallery .zoom { opacity: 1; transform: scale(1); width: 26px; height: 26px; } }

.lightbox .modal-content { background: transparent; border: 0; }
.lightbox img { width: 100%; border-radius: 12px; display: block; }
.lightbox .lb-cap { color: #fff; text-align: center; font-weight: 700; margin-top: 12px; }
.lightbox .lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--navy-800); display: inline-flex; align-items: center; justify-content: center; }
.lightbox .lb-prev { left: 8px; } .lightbox .lb-next { right: 8px; }
.lightbox .lb-close { position: absolute; top: -52px; right: 0; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--navy-800); display: inline-flex; align-items: center; justify-content: center; }

.map-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; margin-top: 40px; }
@media (min-width: 768px) { .map-wrap { padding: 28px; } }
.map-wrap h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1875rem; font-weight: 800; }
.map-wrap h3 .ic { color: var(--red-600); }
.map-svg { width: 100%; max-width: 420px; height: auto; display: block; margin: 0 auto; overflow: visible; }
.map-svg .city circle { fill: var(--navy-700); transform-box: fill-box; transform-origin: center; transition: transform .25s var(--ease), fill .25s; }
.map-svg .city text { transition: fill .25s; }
.map-svg .city.hl circle { transform: scale(1.9); fill: var(--wa) !important; }
.map-svg .city.hl text { fill: #139a48; }
.map-svg .radius { transform-origin: 200px 200px; transform: scale(.2); opacity: 0; transition: transform 1.2s var(--ease), opacity .6s; }
.is-in .map-svg .radius, .no-js .map-svg .radius { transform: scale(1); opacity: 1; }
.map-svg .pulse { transform-origin: 200px 200px; animation: mapPulse 2.2s ease-out infinite; }
@keyframes mapPulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(2.4); opacity: 0; } }
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 14px 0 0; }
.city-chips button {
  font: inherit; font-size: .875rem; font-weight: 700; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.city-chips button:hover, .city-chips button:focus-visible, .city-chips button.on { background: var(--wa); border-color: var(--wa); color: var(--wa-ink); transform: translateY(-2px); outline: none; }
.map-note { color: var(--ink-2); font-size: .875rem; margin: 12px 0 0; }

/* ---------- Sobre ---------- */
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.about-img img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s var(--ease); }
.about-img:hover img { transform: scale(1.04); }
.about-tag { position: absolute; left: 14px; bottom: 14px; background: #fff; border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-weight: 800; }
.about-tag strong { font-size: 1.75rem; color: var(--red-600); line-height: 1; }
.about-tag span { font-size: .8125rem; line-height: 1.2; color: var(--ink-2); font-weight: 700; }
.about-text { font-size: 1.0625rem; color: var(--ink-2); }
.seals { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.seals li { display: flex; align-items: center; gap: 12px; font-weight: 700; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--line); transition: border-color .2s, transform .2s var(--ease); }
.seals li:hover { border-color: var(--wa); transform: translateX(4px); }
.seals .ic-wrap { width: 40px; height: 40px; border-radius: 10px; background: var(--red-50); color: var(--red-600); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.seals .ic { width: 20px; height: 20px; }
#sobre .section-head { text-align: left; margin: 0 0 16px; }
#sobre .section-cta { text-align: left; margin-top: 28px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq .accordion-item { border: 1px solid var(--line); border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; transition: box-shadow .25s; }
.faq .accordion-item:hover { box-shadow: var(--shadow); }
.faq .accordion-button { font-weight: 700; font-size: 1.0625rem; gap: 12px; padding: 18px 18px; color: var(--ink); }
.faq .accordion-button:not(.collapsed) { background: var(--navy-100); color: var(--navy-800); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(18,50,92,.2); }
.faq .accordion-button .ic { width: 22px; height: 22px; color: var(--red-600); }
.faq .accordion-body { color: var(--ink-2); padding: 4px 18px 20px 52px; }

/* ---------- Fechamento ---------- */
.closing { position: relative; overflow: hidden; }
.closing::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -180px; top: -200px; background: radial-gradient(circle, rgba(37,211,102,.18), transparent 70%); pointer-events: none; }
.closing .section-head { text-align: left; margin: 0 0 20px; }
.closing-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.closing-img img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.closing .checks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 8px; }
.closing .checks li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #dbe4f1; }
.closing .checks .ic { color: var(--wa); width: 20px; height: 20px; }

/* ---------- Rodapé ---------- */
.footer { background: var(--navy-900); color: #b9c6d9; padding: 36px 0 110px; font-size: .9375rem; }
.footer a, .footer button.link { color: #fff; text-decoration: none; background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }
.footer a:hover, .footer button.link:hover { text-decoration: underline; }
.footer-row { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.footer-row span, .footer-row a, .footer-row button { display: inline-flex; align-items: center; gap: 8px; }
.footer .brand { font-weight: 800; color: #fff; }
@media (max-width: 575.98px) { .footer-row { flex-direction: column; align-items: flex-start; } }

/* ---------- Botão flutuante ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 1040;
  width: 60px; height: 60px; border-radius: 50%; border: 0;
  background: var(--wa); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .2s var(--ease), background .2s, bottom .3s var(--ease), opacity .3s;
  cursor: pointer;
}
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.wa-float:hover, .wa-float:focus-visible { background: var(--wa-hover); transform: scale(1.08); }
.wa-float .ic { width: 32px; height: 32px; }
.wa-float .tip {
  position: absolute; right: 70px; white-space: nowrap; background: var(--navy-900); color: #fff; font-size: .8125rem; font-weight: 700;
  padding: 8px 12px; border-radius: 10px; opacity: 0; transform: translateX(8px); transition: opacity .25s, transform .25s var(--ease); pointer-events: none;
}
.wa-float:hover .tip, .wa-float.peek .tip { opacity: 1; transform: none; }
body.has-consent-bar .wa-float { bottom: 150px; }
@media (min-width: 768px) { body.has-consent-bar .wa-float { bottom: 96px; } }

/* ---------- Popup de orçamento ---------- */
.lead-modal .modal-content { border: 0; border-radius: 20px; overflow: hidden; }
.lead-modal .modal-head { background: var(--navy-800); color: #fff; padding: 22px 22px 18px; position: relative; }
.lead-modal .modal-head h2 { font-size: 1.3125rem; font-weight: 800; margin: 0 40px 4px 0; }
.lead-modal .modal-head p { margin: 0; color: #c6d3e6; font-size: .9375rem; }
.lead-modal .btn-x { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.lead-modal .btn-x:hover { background: rgba(255,255,255,.22); }
.lead-modal .modal-body { padding: 22px; }
.lead-modal .form-label { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9375rem; }
.lead-modal .form-label .ic { width: 18px; height: 18px; color: var(--red-600); }
.lead-modal .form-control, .lead-modal .form-select { min-height: 52px; border-radius: 12px; border-color: #cfd7e2; font-size: 16px; }
.lead-modal .form-control:focus, .lead-modal .form-select:focus { border-color: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.18); }
.lead-modal .outro-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease), margin .3s; }
.lead-modal .outro-wrap > div { overflow: hidden; }
.lead-modal .outro-wrap.open { grid-template-rows: 1fr; }
.lead-modal .form-note .ic { margin-right: 6px; }
.lead-modal .form-note { display: block; font-size: .8125rem; color: var(--ink-2); margin: 12px 0 0; text-align: center; }
.lead-modal .form-legal { font-size: .75rem; color: var(--ink-2); text-align: center; margin: 10px 0 0; }
.lead-modal .trust { display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center; margin: 14px 0 0; padding: 12px 0 0; border-top: 1px solid var(--line); font-size: .8125rem; font-weight: 700; color: var(--ink-2); }
.lead-modal .trust span { display: inline-flex; align-items: center; gap: 6px; }
.lead-modal .trust .ic { color: #139a48; }
.lead-modal .done { text-align: center; padding: 12px 0 4px; }
.lead-modal .done .icon-badge { width: 72px; height: 72px; border-radius: 50%; background: #d9f8e5; color: #139a48; margin-bottom: 14px; animation: pop .5s var(--ease); }
.lead-modal .done .icon-badge .ic { width: 36px; height: 36px; }
.lead-modal .done h3 { font-weight: 800; font-size: 1.25rem; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 575.98px) {
  .lead-modal .modal-dialog { margin: 0; position: fixed; bottom: 0; left: 0; right: 0; max-width: none; transform: translateY(100%); transition: transform .35s var(--ease) !important; }
  .lead-modal.show .modal-dialog { transform: none; }
  .lead-modal .modal-content { border-radius: 22px 22px 0 0; max-height: 92vh; overflow-y: auto; }
  .lead-modal .modal-head::before { content: ""; position: absolute; top: 8px; left: 50%; width: 40px; height: 4px; margin-left: -20px; border-radius: 4px; background: rgba(255,255,255,.3); }
}

/* ---------- Banner de cookies ---------- */
.consent {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1045;
  background: #fff; color: var(--ink); border-radius: 16px; box-shadow: 0 16px 40px rgba(6,26,51,.25);
  padding: 16px; display: none; gap: 12px; flex-direction: column; font-size: .875rem;
}
.consent.show { display: flex; animation: slideUp .4s var(--ease); }
.consent p { margin: 0; color: var(--ink-2); display: flex; gap: 10px; }
.consent p .ic { width: 22px; height: 22px; color: var(--navy-700); flex: none; }
.consent .actions { display: flex; gap: 8px; }
.consent button { flex: 1; font: inherit; font-weight: 700; border-radius: 999px; padding: 10px 16px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; }
.consent button.accept { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
@media (min-width: 768px) {
  .consent { left: 24px; right: auto; bottom: 24px; max-width: 520px; flex-direction: row; align-items: center; }
  .consent .actions { flex: none; }
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- Animações de entrada ---------- */
.js [data-anim] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.js [data-anim="left"] { transform: translateX(-30px); }
.js [data-anim="right"] { transform: translateX(30px); }
.js [data-anim="zoom"] { transform: scale(.94); }
.js [data-anim].is-in { opacity: 1; transform: none; }
/* hero anima no carregamento, sem depender do observer (primeira dobra nunca fica vazia) */
.js .hero [data-anim] { opacity: 1; transform: none; transition: none; animation: fadeUp .7s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Texto longo (política) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-weight: 800; font-size: 2rem; margin-bottom: 24px; }
.prose h2 { font-weight: 800; font-size: 1.25rem; margin-top: 32px; }
.prose p, .prose li { color: var(--ink-2); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-anim] { opacity: 1; transform: none; }
  .map-svg .radius { transform: none; opacity: 1; }
}
