:root {
  --navy: #1b3a5b;
  --navy-deep: #12283f;
  --navy-900: #0e2036;
  --blue: #2e5c8a;
  --gray: #5b6570;
  --gray-soft: #626d78;
  --lgray: #eef1f4;
  --line: #e2e7ec;
  --white: #ffffff;
  --orange: #e0772e;
  --orange-soft: #f2a869;
  --ink: #182634;

  --display: "Archivo", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Escala de elevação (sombras) */
  --sh-1: 0 1px 2px rgba(14, 32, 54, 0.06), 0 2px 6px rgba(14, 32, 54, 0.05);
  --sh-2: 0 4px 10px -4px rgba(14, 32, 54, 0.12), 0 10px 24px -12px rgba(14, 32, 54, 0.14);
  --sh-3: 0 12px 24px -12px rgba(14, 32, 54, 0.18), 0 24px 48px -24px rgba(14, 32, 54, 0.22);

  /* Malha técnica (blueprint) para superfícies escuras */
  --grid-line: rgba(143, 163, 181, 0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a, button { touch-action: manipulation; }
::selection { background: var(--orange); color: #fff; }

/* Foco visível para navegação por teclado (WCAG 2.4.7) */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 10px;
  font-family: var(--display); font-weight: 700; font-size: 0.92rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(52px, 6.5vw, 96px); position: relative; }
.section--dark {
  color: #fff;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px) 0 0 / 100% 58px,
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 58px 100%,
    var(--navy);
}
.section--deep { background: var(--navy-900); color: #fff; }
.section--soft { background: var(--lgray); }

/* ---------- Type ---------- */
.kicker {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--orange); display: inline-block; }
.kicker--nomark::before { display: none; }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; text-wrap: balance; }
.display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.4vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--gray); max-width: 60ch; text-wrap: pretty; }
.section--dark .lead, .section--deep .lead { color: #b9c6d3; }
.muted { color: var(--gray); }
.section--dark .muted { color: #a9b8c6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 0.98rem;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.25s, opacity 0.2s;
  will-change: transform;
}
.btn svg { flex: none; }
.btn:active { transform: translateY(0) scale(0.975); transition-duration: 0.09s; }
.btn--wa { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(224, 119, 46, 0.7); }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(224, 119, 46, 0.9); }
.btn--ghost { background: transparent; color: inherit; border: 1.5px solid currentColor; padding: 13.5px 24px; opacity: 0.9; }
.btn--ghost:hover { opacity: 1; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(0, 0, 0, 0.5); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding-block 0.35s var(--ease);
  padding-block: 20px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: nowrap; }
.nav.is-stuck, .nav.is-open { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav.is-stuck { padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 11px; color: #fff; transition: color 0.35s; flex: none; }
.nav.is-stuck .brand, .nav.is-open .brand { color: var(--navy); }
.brand__name { display: block; font-family: var(--display); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em; line-height: 1; white-space: nowrap; }
.brand__desc { display: block; font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; margin-top: 6px; white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: #fff; opacity: 0.86; white-space: nowrap; transition: opacity 0.2s, color 0.35s; }
.nav.is-stuck .nav__links a { color: var(--ink); }
.nav__links a:hover { opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.nav__wa { padding: 11px 20px; font-size: 0.9rem; white-space: nowrap; }

/* Bot&atilde;o hamburguer */
.nav__toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; border: 1.5px solid currentColor; background: transparent; color: #fff; cursor: pointer; flex: none; transition: color 0.35s; }
.nav.is-stuck .nav__toggle, .nav.is-open .nav__toggle { color: var(--navy); }
.nav__toggle .ic-close { display: none; }
.nav.is-open .nav__toggle .ic-menu { display: none; }
.nav.is-open .nav__toggle .ic-close { display: block; }

@media (max-width: 1024px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px -14px rgba(14, 32, 54, 0.4);
    border-top: 1px solid var(--line);
    padding: 6px 0; display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { color: var(--ink); opacity: 1; font-weight: 600; padding: 15px var(--pad); font-size: 1rem; }
  .nav__links a:hover { background: var(--lgray); }
}
@media (max-width: 560px) { .nav__wa { display: none; } .brand__desc { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--navy-900); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media picture { display: contents; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 32, 54, 0.94) 0%, rgba(14, 32, 54, 0.72) 38%, rgba(14, 32, 54, 0.18) 72%, rgba(14, 32, 54, 0.34) 100%),
    linear-gradient(0deg, rgba(14, 32, 54, 0.86) 0%, rgba(14, 32, 54, 0) 46%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 104px 58px; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end; }
.hero h1 { max-width: 15ch; margin-top: 20px; }
.hero h1 em { font-style: normal; color: var(--orange-soft); }
.hero__sub { margin-top: 24px; font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: #cdd9e5; max-width: 42ch; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; font-size: 0.94rem; color: #b9c6d3; max-width: 44ch; }
.hero__note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none; box-shadow: 0 0 0 4px rgba(224, 119, 46, 0.18); }
@media (max-width: 820px) {
  .hero__grid { gap: 26px; }
  .hero__media img { object-position: 64% center; }
}

/* ---------- Trust bar ---------- */
.trust { background: var(--navy); color: #fff; padding-block: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.trust__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; }
.trust__label { font-family: var(--display); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8ea0b2; }
.trust__logos {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: logo-marquee 34s linear infinite; }
.trust__logos:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; gap: 16px; padding-right: 16px; flex: none; }
@keyframes logo-marquee { to { transform: translateX(-50%); } }
.logo {
  flex: none;
  width: 152px; height: 78px; padding: 14px 20px;
  background: #fff; border-radius: 12px;
  display: grid; place-items: center; overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.logo:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; gap: 16px; }
  .marquee-group:nth-child(2) { display: none; }
  .marquee-group { padding-right: 0; flex-wrap: wrap; justify-content: center; }
}
.logo img { max-width: 100%; max-height: 46px; width: auto; height: auto; object-fit: contain; }
/* Ascensus tem muita margem interna no arquivo: aumenta a escala para
   igualar o tamanho visual das demais logos (o excedente vazio é cortado). */
.logo img[src*="ascensus"] { max-height: 54px; }
@media (max-width: 560px) {
  .logo { width: 132px; height: 64px; padding: 12px 16px; }
  .logo img { max-height: 38px; }
  .logo img[src*="ascensus"] { max-height: 44px; }
}

/* ---------- Section head ---------- */
.head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: end; margin-bottom: clamp(28px, 3.5vw, 46px); }
.head__title { margin-top: 16px; }
.head__title.h2 { max-width: 16ch; }
.head--center { grid-template-columns: 1fr; text-align: center; justify-items: center; margin-bottom: clamp(18px, 2.2vw, 30px); }
.head--center .lead { margin-inline: auto; }
.section--compact { padding-block: clamp(34px, 4.5vw, 60px); }
@media (max-width: 820px) { .head { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- Cost of stopping ---------- */
.cost { position: relative; overflow: hidden; }
.cost__media { position: absolute; inset: 0; z-index: 0; }
.cost__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.cost__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--navy-900) 8%, rgba(14,32,54,0.66) 62%, rgba(14,32,54,0.4)); }
.cost__inner { position: relative; z-index: 2; }
.cost__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.cost__points { display: grid; gap: 14px; }
.cost__point { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); }
.cost__point b { font-family: var(--display); display: block; margin-bottom: 2px; }
.cost__point span { color: #b9c6d3; font-size: 0.95rem; }
.cost__point .ic { color: var(--orange-soft); flex: none; width: 24px; height: 24px; }
@media (max-width: 820px) { .cost__grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.svc { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); min-height: 260px; display: flex; box-shadow: var(--sh-1); transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out); }
.svc:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }
.svc--lg { grid-column: span 3; }
.svc--sm { grid-column: span 2; }
.svc--md { grid-column: span 3; }
.svc__img { position: absolute; inset: 0; background: var(--navy-900); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.06); }
/* Fotos verticais: mostrar a parte de cima (rosto/ação), nao o centro */
.svc__img img[src*="facilities"] { object-position: 50% 20%; }
.svc__img img[src*="jardinagem"] { object-position: 50% 30%; }
.svc__img img[src*="administrativo"] { object-position: 50% 16%; }
/* No desktop os cards ficam largos e baixos; mais altura evita cortar as fotos verticais */
@media (min-width: 901px) { .svc { min-height: 340px; } }
.svc__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,25,42,0.92) 6%, rgba(11,25,42,0.5) 42%, rgba(11,25,42,0.12) 100%); }
.svc__body { position: relative; z-index: 2; margin-top: auto; padding: 22px; color: #fff; }
.svc__ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(224,119,46,0.16); border: 1px solid rgba(224,119,46,0.4); display: flex; align-items: center; justify-content: center; color: var(--orange-soft); margin-bottom: 14px; }
.svc__ic svg { width: 20px; height: 20px; }
.svc__body h3 { font-size: 1.24rem; }
.svc__body p { margin-top: 6px; color: #c4d0dc; font-size: 0.94rem; max-width: 34ch; }
.svc__tag { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--display); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: rgba(224,119,46,0.9); padding: 5px 10px; border-radius: 6px; }
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc--lg, .svc--sm, .svc--md { grid-column: span 1; }
}
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Why / differentials ---------- */
.why__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 54px; align-items: center; }
.why__media { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--sh-2); }
.why__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.why__badge { position: absolute; left: 22px; bottom: 22px; background: rgba(14,32,54,0.88); backdrop-filter: blur(6px); color: #fff; padding: 16px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14); }
.why__badge b { font-family: var(--display); font-size: 1.9rem; display: block; line-height: 1; color: var(--orange-soft); }
.why__badge span { font-size: 0.82rem; color: #b9c6d3; }
.why__list { display: grid; gap: 6px; }
.why__item { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 22px 4px; border-top: 1px solid var(--line); align-items: start; }
.why__item:last-child { border-bottom: 1px solid var(--line); }
.why__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--lgray); display: flex; align-items: center; justify-content: center; color: var(--navy); }
.why__ic svg { width: 24px; height: 24px; }
.why__item h3 { font-size: 1.18rem; margin-bottom: 4px; }
.why__item p { color: var(--gray); font-size: 0.98rem; }
@media (max-width: 860px) { .why__grid { grid-template-columns: 1fr; gap: 32px; } .why__media img { aspect-ratio: 16/11; } }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 34px 28px; position: relative; }
.step__n { font-family: var(--display); font-weight: 900; font-size: 3.2rem; color: rgba(224,119,46,0.28); line-height: 1; letter-spacing: -0.04em; }
.step__ic { position: absolute; top: 30px; right: 28px; color: var(--orange-soft); width: 26px; height: 26px; }
.step h3 { margin-top: 10px; font-size: 1.3rem; color: #fff; }
.step p { margin-top: 10px; color: #b9c6d3; font-size: 0.97rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Value ladder ---------- */
.ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; background: #fff; display: flex; flex-direction: column; position: relative; box-shadow: var(--sh-1); transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.tier:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }
.tier--mid { background: var(--navy); color: #fff; border-color: var(--navy); }
.tier__step { font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.tier--mid .tier__step { color: var(--orange-soft); }
.tier h3 { font-size: 1.22rem; margin: 8px 0 6px; }
.tier p { color: var(--gray); font-size: 0.96rem; flex: 1; }
.tier--mid p { color: #c4d0dc; }
.tier__foot { margin-top: 20px; font-size: 0.85rem; color: var(--gray-soft); display: flex; align-items: center; gap: 8px; }
.tier__foot svg { width: 16px; height: 16px; flex: none; }
.tier--mid .tier__foot { color: #9fb0c0; }
.ladder-note { margin-top: 24px; text-align: center; color: var(--gray); font-size: 0.95rem; position: relative; z-index: 1; }
@media (max-width: 640px) { .ladder { grid-template-columns: 1fr; } }

/* ---------- Proof ---------- */
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; display: flex; flex-direction: column; box-shadow: var(--sh-1); }
.quote__mark { font-family: var(--display); font-weight: 900; font-size: 2.6rem; color: var(--lgray); line-height: 0.6; }
.quote p { margin: 8px 0 20px; color: var(--ink); font-size: 1.02rem; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: var(--lgray); border: 1px dashed var(--gray-soft); flex: none; }
.quote__who b { font-family: var(--display); font-size: 0.95rem; }
.quote__who span { display: block; font-size: 0.82rem; color: var(--gray-soft); }
.ba { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ba__card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--lgray); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; position: relative; }
.ba__card span { font-family: var(--display); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-soft); font-size: 0.8rem; }
.ba__card::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(91,101,112,0.06) 14px, rgba(91,101,112,0.06) 28px); }
.proof-hint { margin-top: 20px; font-size: 0.86rem; color: var(--gray-soft); display: flex; gap: 8px; align-items: center; }
.proof-hint .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex: none; }
@media (max-width: 860px) { .proof__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: start; }
.faq__list { display: grid; gap: 0; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 4px; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.faq__q .ic { flex: none; width: 22px; height: 22px; color: var(--orange); transition: transform 0.3s var(--ease); }
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease-out); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > p { overflow: hidden; min-height: 0; padding: 0 4px 24px; color: var(--gray); max-width: 60ch; }
@media (max-width: 820px) { .faq__grid { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Final CTA ---------- */
.final { position: relative; overflow: hidden; color: #fff; }
.final__media { position: absolute; inset: 0; z-index: 0; }
.final__media img { width: 100%; height: 100%; object-fit: cover; }
.final__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,32,54,0.72), rgba(14,32,54,0.88)); }
.final__inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.final h2 { max-width: 18ch; }
.final__sub { margin-top: 20px; max-width: 52ch; color: #cdd9e5; font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.final__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.final__phone { margin-top: 26px; font-size: 0.95rem; color: #9fb0c0; }
.final__phone b { color: #fff; font-family: var(--display); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #cdd9e5; padding-block: 60px 34px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand .brand { color: #fff; }
.footer__brand p { margin-top: 16px; max-width: 34ch; font-size: 0.94rem; color: #9fb0c0; }
.footer h4 { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: #7e91a3; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer__bar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: 0.82rem; color: #7e91a3; }
@media (max-width: 780px) { .footer__top { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float span { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: wa-pulse 2.2s infinite; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float span { animation: none; } }

/* reveal baseline (JS sets opacity back) */
[data-reveal], [data-reveal-group] > * { will-change: transform, opacity; }
