/* ==========================================================================
   Leva & Lava | Caminho das Árvores — Landing page
   Mobile first. Paleta oficial: #22A9E0 (azul) e #30B946 (verde).
   Os tons "-ink" são variações mais escuras das mesmas cores, usados apenas
   onde há texto sobre a cor (contraste AA ≥ 4.5:1).
   ========================================================================== */

:root {
  color-scheme: light;

  --blue: #22A9E0;
  --blue-ink: #0F77A6;
  --blue-deep: #0B5F86;
  --blue-50: #EDF8FD;
  --blue-100: #D6EFFA;
  --blue-200: #B4E2F6;

  --green: #30B946;
  --green-ink: #1E7F31;
  --green-50: #EDF9F0;
  --green-100: #D3F1DA;

  --navy: #0B2540;
  --ink: #0B2540;
  --ink-2: #4A6079;
  --line: #DCE9F1;
  --bg: #FFFFFF;
  --bg-soft: #F5FAFD;

  --r-sm: 14px;
  --r: 22px;
  --r-lg: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgb(11 37 64 / .05), 0 3px 10px rgb(11 37 64 / .05);
  --shadow: 0 16px 36px -18px rgb(11 37 64 / .22);
  --shadow-blue: 0 24px 50px -24px rgb(15 119 166 / .45);

  --container: 1180px;
  --gutter: 20px;
  --header-h: 68px;
  --section-y: clamp(64px, 9vw, 112px);

  --font: "Nunito", ui-rounded, "SF Pro Rounded", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--blue-ink); text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.icon { width: 1.25em; height: 1.25em; flex: none; display: inline-block; vertical-align: middle; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
@media (min-width: 768px) { :root { --gutter: 32px; } }

.u-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
@media (max-width: 379px) { .u-hide-xs { display: none; } }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); font-weight: 700; }
.skip-link:focus { top: 12px; }

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-ink);
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--blue), var(--green)); }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: linear-gradient(90deg, #fff, var(--green)); }
.eyebrow--green { color: #7CE08D; }
.eyebrow--green::before { background: var(--green); }

.section__title {
  font-size: clamp(1.75rem, 1.15rem + 2.4vw, 2.75rem);
  line-height: 1.12; font-weight: 900; letter-spacing: -.02em;
  text-wrap: balance;
}
.section__lead { color: var(--ink-2); font-size: clamp(1.02rem, .95rem + .3vw, 1.15rem); max-width: 34ch; }

.hl { color: var(--blue-ink); position: relative; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: -.08em; height: .22em;
  background: no-repeat center / 100% 100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8.5C40 3 90 2 198 6' fill='none' stroke='%2330B946' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  z-index: -1;
}
@media (max-width: 420px) { .hl { white-space: normal; } .hl::after { display: none; } }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--blue-ink); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 24px;
  border: 2px solid var(--btn-bd); border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 800; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; line-height: 1.2;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.3em; height: 1.3em; }
.btn--primary { box-shadow: 0 10px 22px -10px rgb(15 119 166 / .7); }
.btn--primary:hover { --btn-bg: var(--blue-deep); box-shadow: 0 14px 28px -12px rgb(15 119 166 / .8); }
.btn--secondary { --btn-bg: var(--green-50); --btn-fg: var(--green-ink); --btn-bd: var(--green-100); }
.btn--secondary:hover { --btn-bg: var(--green-100); }
.btn--wa, .btn--green { --btn-bg: var(--green-ink); box-shadow: 0 10px 22px -10px rgb(30 127 49 / .7); }
.btn--wa:hover, .btn--green:hover { --btn-bg: #186A28; }
.btn--wa-soft { --btn-bg: var(--green-50); --btn-fg: var(--green-ink); --btn-bd: var(--green-100); }
.btn--wa-soft:hover { --btn-bg: var(--green-100); }
.btn--white { --btn-bg: #fff; --btn-fg: var(--blue-ink); box-shadow: 0 12px 26px -12px rgb(0 0 0 / .35); }
.btn--white:hover { --btn-fg: var(--blue-deep); }
.btn--outline-white { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgb(255 255 255 / .7); }
.btn--outline-white:hover { --btn-bg: rgb(255 255 255 / .12); --btn-bd: #fff; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--ink-2); }
.btn--sm { min-height: 42px; padding: 8px 16px; font-size: .82rem; }
.btn--lg { min-height: 58px; padding: 14px 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .65; cursor: progress; transform: none; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-stack { display: grid; gap: 10px; }
@media (max-width: 559px) {
  .cta-row > .btn { width: 100%; }
  .btn--lg { padding-inline: 16px; font-size: .9rem; letter-spacing: .02em; }
}

.linklike { background: none; border: 0; padding: 0; color: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* ---------- Bolhas decorativas ---------- */
.bubble {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 32% 28%, rgb(255 255 255 / .95) 0 7%, transparent 8%),
    radial-gradient(circle at 50% 50%, rgb(34 169 224 / 0) 58%, rgb(34 169 224 / .20) 86%, rgb(48 185 70 / .18) 100%);
  border: 1.5px solid rgb(34 169 224 / .22);
}
.bubble--a { width: 120px; height: 120px; top: 96px; right: -40px; }
.bubble--b { width: 44px; height: 44px; top: 42%; left: 4%; display: none; }
.bubble--c { width: 70px; height: 70px; bottom: 60px; left: 46%; display: none; }
.bubble--d { width: 160px; height: 160px; top: -50px; right: 6%; }
.bubble--e, .bubble--f, .bubble--g, .bubble--h, .bubble--i, .bubble--j { border-color: rgb(255 255 255 / .35); background: radial-gradient(circle at 32% 28%, rgb(255 255 255 / .9) 0 7%, transparent 8%), radial-gradient(circle at 50% 50%, transparent 58%, rgb(255 255 255 / .22) 100%); }
.bubble--e { width: 90px; height: 90px; top: 14%; left: 48%; }
.bubble--f { width: 36px; height: 36px; bottom: 22%; left: 6%; }
.bubble--g { width: 110px; height: 110px; top: -30px; right: -30px; border-color: rgb(34 169 224 / .25); background: radial-gradient(circle at 32% 28%, #fff 0 7%, transparent 8%), radial-gradient(circle at 50% 50%, transparent 58%, rgb(34 169 224 / .18) 100%); }
.bubble--h { width: 40px; height: 40px; bottom: 30px; left: 40%; border-color: rgb(48 185 70 / .3); background: radial-gradient(circle at 32% 28%, #fff 0 7%, transparent 8%), radial-gradient(circle at 50% 50%, transparent 58%, rgb(48 185 70 / .2) 100%); }
.bubble--i { width: 140px; height: 140px; top: -44px; left: 38%; }
.bubble--j { width: 46px; height: 46px; bottom: 26px; left: 8%; }
@media (min-width: 1024px) { .bubble--b, .bubble--c { display: block; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgb(255 255 255 / .92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px -16px rgb(11 37 64 / .35); }
.header__bar { height: var(--header-h); display: flex; align-items: center; gap: 16px; }
.header__logo { display: block; flex: none; margin-right: auto; }
.header__logo img { height: 48px; width: auto; }
.header__actions { display: flex; align-items: center; gap: 8px; }

.menu-toggle {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; color: var(--ink);
}
.menu-toggle .icon { width: 22px; height: 22px; }
.menu-toggle .icon--close { display: none; }
.menu-toggle[aria-expanded="true"] .icon--open { display: none; }
.menu-toggle[aria-expanded="true"] .icon--close { display: block; }

.nav { display: none; }
.nav.is-open {
  display: block; position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px -20px rgb(11 37 64 / .3);
  padding: 8px var(--gutter) 20px;
}
.nav__list a {
  display: block; padding: 14px 4px; font-weight: 800; font-size: 1.1rem; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav__list li:last-child a { border-bottom: 0; }

@media (min-width: 960px) {
  :root { --header-h: 80px; }
  .header__logo img { height: 58px; }
  .menu-toggle { display: none; }
  .nav, .nav.is-open { display: block; position: static; padding: 0; border: 0; box-shadow: none; background: none; margin-right: 12px; }
  .nav__list { display: flex; gap: 4px; }
  .nav__list a { padding: 8px 14px; font-size: .98rem; border: 0; border-radius: var(--r-pill); color: var(--ink); transition: background-color .15s, color .15s; }
  .nav__list a:hover { background: var(--blue-50); color: var(--blue-ink); }
  .header .btn--sm { min-height: 46px; padding: 10px 20px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding-block: 28px 56px;
  background:
    radial-gradient(900px 480px at 100% 0%, var(--blue-50), transparent 70%),
    radial-gradient(600px 400px at 0% 100%, var(--green-50), transparent 70%),
    #fff;
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: 36px; }

.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--green-100); box-shadow: var(--shadow-sm);
  font-size: .85rem; font-weight: 800; color: var(--green-ink);
  margin-bottom: 18px;
}
.status-pill__sep { color: var(--ink-2); }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); position: relative; }
.live-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--green); opacity: .35; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(1.8); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .live-dot::after { animation: none; } }

.hero__title {
  font-size: clamp(2.15rem, 1.25rem + 3.9vw, 3.9rem);
  line-height: 1.04; font-weight: 900; letter-spacing: -.03em;
  text-wrap: balance;
}
.hero__lead { margin-top: 16px; font-size: clamp(1.08rem, 1rem + .45vw, 1.3rem); color: var(--ink-2); max-width: 42ch; font-weight: 600; }

.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 28px; }
.perks li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm);
  background: #fff; border: 1px solid var(--line);
  font-weight: 700; font-size: .9rem; line-height: 1.25;
}
.perks__ic { flex: none; width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-ink); }
.perks li:nth-child(even) .perks__ic { background: var(--green-50); color: var(--green-ink); }

.hero__sign { display: flex; align-items: center; gap: 6px; margin-top: 18px; font-size: .9rem; font-weight: 700; color: var(--ink-2); }
.hero__sign .icon { color: var(--green); }

.hero__media { position: relative; padding-bottom: 36px; }
.hero__photo {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-blue);
  aspect-ratio: 1 / 1; background: var(--blue-100);
  border: 5px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.hero__inset {
  position: absolute; left: -6px; bottom: 0; width: 34%; max-width: 170px;
  aspect-ratio: 3 / 4; border-radius: var(--r); overflow: hidden;
  border: 5px solid #fff; box-shadow: var(--shadow); background: var(--green-100);
  transform: rotate(-4deg);
}
.hero__inset img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%; }

.price-sticker {
  position: absolute; right: 10px; bottom: 6px;
  display: grid; justify-items: center; text-align: center; line-height: 1.05;
  width: 136px; height: 136px; align-content: center; gap: 2px;
  border-radius: 50%; background: var(--green-ink); color: #fff;
  box-shadow: 0 16px 30px -14px rgb(30 127 49 / .8), inset 0 0 0 5px rgb(255 255 255 / .9), inset 0 0 0 7px var(--green-ink);
  transform: rotate(6deg);
}
.price-sticker__label { font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; max-width: 92px; }
.price-sticker__value { font-size: 1.6rem; font-weight: 900; letter-spacing: -.02em; }
.price-sticker__unit { font-size: .72rem; font-weight: 700; }

@media (min-width: 640px) {
  .perks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__inset { width: 28%; left: -12px; }
  .price-sticker { width: 150px; height: 150px; right: -6px; }
  .price-sticker__value { font-size: 1.8rem; }
}
@media (min-width: 1024px) {
  .hero { padding-block: 56px 120px; }
  .hero__grid { grid-template-columns: 1.12fr .88fr; align-items: center; gap: 48px; }
  .hero .btn--lg { padding-inline: 24px; letter-spacing: .03em; }
  .hero__media { padding: 0 0 40px 40px; }
  .hero__photo { aspect-ratio: 1 / 1.02; }
  .hero__photo img { object-position: 50% 16%; }
  .hero__inset { width: 38%; max-width: 210px; left: -8px; bottom: 0; }
  .price-sticker { width: 164px; height: 164px; right: -18px; bottom: auto; top: -18px; }
  .price-sticker__value { font-size: 2rem; }
}

/* ==========================================================================
   02 · NÚMEROS
   ========================================================================== */
.stats { position: relative; z-index: 2; margin-top: -20px; }
.stats__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 24px 18px;
}
.stats__title { font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem); font-weight: 900; text-align: center; margin-bottom: 18px; letter-spacing: -.01em; }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat {
  display: grid; justify-items: center; text-align: center; gap: 4px;
  padding: 16px 8px; border-radius: var(--r); background: var(--bg-soft);
}
.stat__ic { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-ink); margin-bottom: 4px; }
.stat__ic--green { background: var(--green-100); color: var(--green-ink); }
.stat__num { font-size: clamp(2.2rem, 1.7rem + 2vw, 3.1rem); font-weight: 900; line-height: 1; letter-spacing: -.03em; color: var(--navy); }
.stat__num small { font-size: .42em; font-weight: 800; margin-left: 3px; letter-spacing: 0; color: var(--blue-ink); }
.stat__label { font-size: .88rem; font-weight: 700; color: var(--ink-2); }
@media (min-width: 768px) {
  .stats { margin-top: -64px; }
  .stats__card { padding: 28px 32px; display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 28px; }
  .stats__title { text-align: left; margin: 0; font-size: 1.5rem; line-height: 1.2; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

/* ==========================================================================
   SEÇÕES
   ========================================================================== */
.section { position: relative; padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * .6); }
.section--tint { background: linear-gradient(180deg, var(--blue-50), #F4FBF6); overflow: hidden; }
.section--soft { background: var(--bg-soft); }
.section__head { margin-bottom: clamp(28px, 4vw, 48px); max-width: 760px; }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--split { max-width: none; display: grid; gap: 12px; }
@media (min-width: 900px) {
  .section__head--split { grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
}

/* Reveal suave (só com JS) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   03 · COMO FUNCIONA
   ========================================================================== */
.steps { display: grid; gap: 14px; counter-reset: step; }
.step {
  position: relative; padding: 24px 22px 22px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.step__num {
  position: absolute; top: 16px; right: 20px;
  font-size: 2.6rem; font-weight: 900; line-height: 1; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1.5px var(--blue-200);
}
.step__ic { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: var(--blue); color: #fff; margin-bottom: 16px; box-shadow: 0 10px 20px -10px rgb(34 169 224 / .9); }
.step__ic .icon { width: 28px; height: 28px; }
.step__ic--green { background: var(--green); box-shadow: 0 10px 20px -10px rgb(48 185 70 / .9); }
.step__title { font-size: 1.35rem; font-weight: 900; margin-bottom: 6px; }
.step p { color: var(--ink-2); }
.step .step__time {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  padding: 5px 12px; border-radius: var(--r-pill); background: var(--blue-50);
  color: var(--blue-ink); font-weight: 800; font-size: .85rem;
}
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .step::after {
    content: ""; position: absolute; top: 50px; right: -18px; width: 18px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--blue-200) 0 4px, transparent 4px 8px);
  }
  .step:last-child::after { display: none; }
}

.callout {
  margin-top: 22px; padding: 20px; border-radius: var(--r);
  display: grid; gap: 14px; align-items: center;
  background: linear-gradient(120deg, var(--green-50), var(--blue-50));
  border: 1px solid var(--green-100);
}
.callout__ic { width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--green-ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.callout__ic .icon { width: 28px; height: 28px; }
.callout__text { font-size: 1.08rem; }
.callout__text strong { color: var(--green-ink); font-weight: 900; }
@media (min-width: 768px) {
  .callout { grid-template-columns: auto 1fr auto; padding: 20px 20px 20px 24px; gap: 20px; }
}

/* ==========================================================================
   04 · PREÇO
   ========================================================================== */
.pricing {
  position: relative; z-index: 1;
  display: grid; gap: 24px;
  padding: 28px 20px; border-radius: var(--r-lg);
  background: #fff; box-shadow: var(--shadow-blue); border: 1px solid var(--blue-100);
}
.pricing__badge {
  display: inline-block; margin: 0 0 10px 10px;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--green); color: var(--navy); font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  vertical-align: 2px;
}
.pricing__note { margin-top: 12px; color: var(--ink-2); font-weight: 600; }
.pricing__next {
  display: inline-flex; margin-top: 14px; padding: 8px 14px; border-radius: var(--r-sm);
  background: var(--bg-soft); border: 1px dashed var(--blue-200);
  font-size: .9rem; font-weight: 700; color: var(--ink-2);
}
.pricing__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price-tile {
  position: relative; overflow: hidden;
  padding: 18px 16px; border-radius: var(--r);
  background: linear-gradient(160deg, var(--blue-ink), var(--blue-deep)); color: #fff;
}
.price-tile::before {
  content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%;
  background: var(--blue); opacity: .55;
}
.price-tile--green { background: linear-gradient(160deg, var(--green-ink), #186A28); }
.price-tile--green::before { background: var(--green); }
.price-tile > * { position: relative; }
.price-tile__ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgb(255 255 255 / .16); margin-bottom: 12px; }
.price-tile__name { font-size: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.price-tile__value { display: flex; align-items: flex-start; font-weight: 900; line-height: 1; margin-top: 6px; letter-spacing: -.03em; }
.money__cur { font-size: .95rem; margin: .35em 4px 0 0; letter-spacing: 0; }
.money__int { font-size: clamp(2.6rem, 2rem + 2.6vw, 3.6rem); }
.money__dec { font-size: 1.25rem; margin-top: .3em; }
.price-tile__unit { font-size: .85rem; font-weight: 700; opacity: .92; margin-top: 4px; }

.pricing__foot { display: grid; gap: 16px; align-items: center; }
.pay { display: flex; flex-wrap: wrap; gap: 8px; }
.pay li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: var(--r-pill);
  background: var(--bg-soft); border: 1px solid var(--line); font-weight: 800; font-size: .88rem;
}
.pay .icon { color: var(--blue-ink); }

@media (min-width: 900px) {
  .pricing { grid-template-columns: 1fr 1.05fr; padding: 44px; gap: 28px 48px; align-items: center; }
  .pricing__foot { grid-column: 1 / -1; grid-template-columns: 1fr auto; border-top: 1px solid var(--line); padding-top: 24px; }
  .price-tile { padding: 26px 24px; }
}

/* ==========================================================================
   05 · BENEFÍCIOS
   ========================================================================== */
.benefits { display: grid; grid-template-columns: 1fr; gap: 12px; }
.benefit {
  display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: start;
  padding: 20px; border-radius: var(--r); background: #fff; border: 1px solid var(--line);
  align-content: start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.benefit__ic { grid-row: span 2; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-ink); }
.benefit__ic .icon { width: 26px; height: 26px; }
.benefit__ic--green { background: var(--green-50); color: var(--green-ink); }
.benefit h3 { font-size: 1.15rem; font-weight: 900; line-height: 1.3; margin-top: 2px; }
.benefit p { color: var(--ink-2); margin-top: 2px; }
@media (min-width: 640px) { .benefits { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (min-width: 1024px) {
  .benefits { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .benefit { grid-template-columns: 1fr; padding: 28px; }
  .benefit__ic { grid-row: auto; margin-bottom: 16px; width: 60px; height: 60px; }
}

/* ==========================================================================
   06 · ESTRUTURA (galeria)
   ========================================================================== */
.gallery {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 210px 300px 190px;
  grid-template-areas:
    "esp esp"
    "int fac"
    "ent cap";
}
.g-int { grid-area: int; } .g-esp { grid-area: esp; } .g-fac { grid-area: fac; } .g-ent { grid-area: ent; } .g-cap { grid-area: cap; }
.gallery__item {
  position: relative; display: block; overflow: hidden; border-radius: var(--r);
  background: var(--blue-100); color: #fff; text-decoration: none;
  isolation: isolate;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-int img { object-position: 50% 45%; }
.g-fac img { object-position: 50% 19%; }
.g-ent img { object-position: 50% 58%; }
.g-cap img { object-position: 50% 23%; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgb(11 37 64 / .75));
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__cap {
  position: absolute; left: 12px; right: 12px; bottom: 10px; z-index: 2;
  font-weight: 800; font-size: .88rem; line-height: 1.25;
  text-shadow: 0 1px 8px rgb(0 0 0 / .4);
}
.gallery__zoom {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgb(255 255 255 / .9); color: var(--blue-ink);
  opacity: 0; transform: scale(.8); transition: opacity .2s, transform .2s;
}
.gallery__zoom .icon { width: 16px; height: 16px; }
.gallery__item:hover .gallery__zoom, .gallery__item:focus-visible .gallery__zoom { opacity: 1; transform: none; }
@media (hover: none) { .gallery__zoom { opacity: 1; transform: none; } }

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    grid-template-areas:
      "int esp esp fac"
      "int ent cap fac";
    gap: 14px;
  }
  .gallery__cap { font-size: 1rem; left: 16px; bottom: 14px; }
}

.structure-foot { margin-top: 24px; display: grid; gap: 20px; align-items: center; }
.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.checks li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px 8px 10px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: .92rem;
}
.checks .icon { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: var(--green); color: #fff; }
@media (min-width: 900px) { .structure-foot { grid-template-columns: 1fr auto; } }

/* ==========================================================================
   07 · 24 HORAS
   ========================================================================== */
.allday {
  position: relative; overflow: hidden; color: #fff;
  padding-block: calc(var(--section-y) + 30px);
  background:
    radial-gradient(520px 420px at 92% 18%, rgb(34 169 224 / .95), transparent 70%),
    radial-gradient(420px 360px at 4% 96%, rgb(48 185 70 / .45), transparent 70%),
    linear-gradient(150deg, var(--blue-ink) 0%, var(--blue-deep) 100%);
}
.wave { position: absolute; left: 0; width: 100%; height: 44px; z-index: 1; }
.wave--top { top: -1px; fill: var(--bg-soft); }
.wave--bottom { bottom: -1px; fill: #fff; }
@media (min-width: 900px) { .wave { height: 60px; } }

.allday__grid { position: relative; z-index: 2; display: grid; gap: 40px; align-items: center; }
.allday__title {
  font-size: clamp(1.75rem, 1.1rem + 2.6vw, 2.9rem); line-height: 1.12; font-weight: 900; letter-spacing: -.02em;
  text-wrap: balance;
}
.allday__title span { display: block; margin-top: 8px; color: #fff; font-weight: 700; opacity: .92; font-size: .78em; }

.moments { display: grid; gap: 10px; margin-top: 28px; }
.moment {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  padding: 12px 12px 12px 12px; border-radius: var(--r);
  background: rgb(255 255 255 / .10); border: 1px solid rgb(255 255 255 / .18);
  transition: background-color .3s, color .3s;
}
.moment__ic { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: rgb(255 255 255 / .15); }
.moment__q { font-weight: 800; font-size: 1.08rem; }
.moment__a {
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--green); color: var(--navy); font-weight: 900; font-size: .95rem;
}
.moment.is-now { background: #fff; color: var(--navy); border-color: #fff; box-shadow: 0 16px 30px -16px rgb(0 0 0 / .4); }
.moment.is-now .moment__ic { background: var(--blue-50); color: var(--blue-ink); }
.moment.is-now::before {
  content: "agora"; position: absolute; top: -9px; left: 64px;
  padding: 1px 9px; border-radius: var(--r-pill);
  background: var(--navy); color: #fff; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}

.allday__clock { display: grid; justify-items: center; gap: 14px; }
.clock { position: relative; width: min(78vw, 360px); aspect-ratio: 1; }
.clock svg { width: 100%; height: 100%; overflow: visible; }
.clock__face { fill: rgb(255 255 255 / .08); stroke: rgb(255 255 255 / .55); stroke-width: 2.5; }
.clock__ticks line { stroke: #fff; stroke-width: 3; stroke-linecap: round; }
.clock__hand { stroke-linecap: round; transform-origin: 100px 100px; transform-box: view-box; transition: transform .6s cubic-bezier(.3, 1.4, .5, 1); }
.clock__hand--h { stroke: #fff; stroke-width: 7; }
.clock__hand--m { stroke: var(--green); stroke-width: 5; }
.clock__pin { fill: #fff; stroke: var(--green); stroke-width: 3; }
.clock__badge {
  position: absolute; left: 50%; bottom: 17%; transform: translateX(-50%);
  display: grid; justify-items: center; text-align: center; line-height: 1.1;
  padding: 8px 16px; border-radius: var(--r-sm); background: #fff; color: var(--navy);
  box-shadow: 0 12px 24px -12px rgb(0 0 0 / .4); white-space: nowrap;
}
.clock__badge strong { font-size: clamp(.95rem, .8rem + .6vw, 1.2rem); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; color: var(--blue-ink); }
.clock__badge span { font-size: .82rem; font-weight: 800; color: var(--green-ink); }
.clock__now { font-weight: 700; text-align: center; font-size: .98rem; opacity: .95; }
.clock__now strong { font-weight: 900; font-variant-numeric: tabular-nums; }

@media (min-width: 960px) {
  .allday__grid { grid-template-columns: 1.1fr .9fr; gap: 64px; }
  .moments { grid-template-columns: 1fr 1fr; gap: 14px; }
  .moment { grid-template-columns: auto 1fr; padding: 16px; }
  .moment__a { grid-column: 2; justify-self: start; margin-top: -4px; }
  .moment__ic { grid-row: span 2; }
}

/* ==========================================================================
   08 · LOCALIZAÇÃO
   ========================================================================== */
.location { display: grid; gap: 16px; }
.location__photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--blue-100);
}
.location__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.location__photo figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--r-sm);
  background: rgb(255 255 255 / .95); color: var(--navy); font-weight: 700; font-size: .9rem; line-height: 1.3;
  box-shadow: var(--shadow-sm);
}
.location__photo figcaption .icon { color: var(--green-ink); }
.location__photo figcaption span { min-width: 0; }
.location__photo figcaption strong { color: var(--blue-ink); font-weight: 900; }

.location__info {
  padding: 24px 20px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  display: grid; gap: 18px; align-content: start;
}
.address { font-style: normal; }
.address dl { display: grid; gap: 0; }
.address dl > div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.address dl > div:first-child { padding-top: 0; }
.address dt { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-2); padding-top: 2px; }
.address dd { font-weight: 800; line-height: 1.35; }
.parking {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-sm);
  background: var(--green-50); color: var(--navy); font-size: .95rem; line-height: 1.35;
}
.parking__ic { flex: none; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--green); color: #fff; }
.location__phone { font-size: .92rem; color: var(--ink-2); text-align: center; }
.location__phone a { font-weight: 800; }

.location__map {
  border-radius: var(--r-lg); overflow: hidden; background: var(--blue-50);
  min-height: 320px; border: 1px solid var(--line);
}
.location__map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

@media (min-width: 768px) {
  .location { grid-template-columns: 1fr 1fr; }
  .location__map { grid-column: 1 / -1; }
  .location__photo { aspect-ratio: auto; min-height: 100%; }
}
@media (min-width: 1100px) {
  .location { grid-template-columns: .8fr 1fr 1.25fr; gap: 20px; }
  .location__map { grid-column: auto; }
}

/* ==========================================================================
   09 · PARA QUEM É
   ========================================================================== */
.audience { display: grid; gap: 12px; }
.persona {
  position: relative; overflow: hidden;
  padding: 22px 20px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-content: start;
}
.persona__ic { grid-row: span 2; width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; background: var(--blue); color: #fff; }
.persona__ic--green { background: var(--green); }
.persona__ic .icon { width: 26px; height: 26px; }
.persona h3 { font-size: 1.1rem; font-weight: 900; line-height: 1.3; }
.persona p { color: var(--ink-2); margin-top: 2px; }
@media (min-width: 640px) { .audience { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .audience { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .persona { grid-column: span 2; grid-template-columns: 1fr; padding: 26px; }
  .persona:nth-child(4), .persona:nth-child(5) { grid-column: span 3; }
  .persona__ic { grid-row: auto; margin-bottom: 14px; }
  .persona:nth-child(4), .persona:nth-child(5) { grid-template-columns: auto 1fr; column-gap: 20px; align-content: center; }
  .persona:nth-child(4) .persona__ic, .persona:nth-child(5) .persona__ic { grid-row: span 2; margin: 0; }
}

/* ==========================================================================
   10 · LEADS B2C
   ========================================================================== */
.lead {
  position: relative; overflow: hidden;
  display: grid; gap: 24px;
  padding: 28px 18px 18px; border-radius: var(--r-lg);
  background:
    radial-gradient(600px 400px at 0% 0%, #fff, transparent 70%),
    linear-gradient(135deg, var(--blue-100), var(--green-100));
}
.lead > :not(.bubble) { position: relative; z-index: 1; }
.lead__title { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem); line-height: 1.14; font-weight: 900; letter-spacing: -.02em; text-wrap: balance; }
.lead__text { margin-top: 12px; font-size: 1.05rem; color: var(--ink-2); font-weight: 600; }
.lead__list { display: grid; gap: 8px; margin-top: 20px; }
.lead__list li { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.lead__list .icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--blue-ink); color: #fff; }
.lead__panel { background: #fff; border-radius: var(--r); padding: 22px 18px; box-shadow: var(--shadow); }
@media (min-width: 960px) {
  .lead { grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px; align-items: center; }
  .lead__panel { padding: 32px; }
}

/* ---------- Formulários ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; align-content: start; }
.field label { font-weight: 800; font-size: .92rem; }
.req { color: var(--blue-ink); }
.opt { font-weight: 600; color: var(--ink-2); }
.field input[type="text"], .field input[type="tel"], .field select {
  width: 100%; min-height: 52px; padding: 12px 16px;
  border: 1.5px solid #C5D8E4; border-radius: var(--r-sm); background: #fff;
  font-size: 1rem; /* evita zoom no iOS */
  transition: border-color .15s, box-shadow .15s;
}
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F77A6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center / 18px;
}
.field input::placeholder { color: #8A9BAE; }
.field input:hover, .field select:hover { border-color: #9DB8CA; }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue-ink); box-shadow: 0 0 0 4px rgb(34 169 224 / .22); }
.field [aria-invalid="true"] { border-color: #C2362B !important; box-shadow: 0 0 0 3px rgb(194 54 43 / .12); }
.field__error { color: #B42318; font-size: .85rem; font-weight: 700; }

.field--check { grid-template-columns: auto 1fr; column-gap: 12px; align-items: start; }
.field--check input {
  appearance: none; -webkit-appearance: none; margin: 1px 0 0;
  width: 24px; height: 24px; border-radius: 7px; border: 2px solid #9DB8CA; background: #fff;
  display: grid; place-items: center; cursor: pointer; transition: background-color .15s, border-color .15s;
}
.field--check input::after {
  content: ""; width: 12px; height: 7px; border: solid #fff; border-width: 0 0 2.5px 2.5px;
  transform: rotate(-45deg) translate(1px, -1px) scale(0); transition: transform .15s;
}
.field--check input:checked { background: var(--blue-ink); border-color: var(--blue-ink); }
.field--check input:checked::after { transform: rotate(-45deg) translate(1px, -1px) scale(1); }
.field--check input:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.field--check label { font-weight: 600; font-size: .92rem; line-height: 1.45; cursor: pointer; }
.field--check .field__error { grid-column: 2; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__legal { font-size: .82rem; color: var(--ink-2); line-height: 1.45; }
.form__status:empty { display: none; }
.form__status { font-size: .9rem; font-weight: 700; color: #B42318; }

.success { display: grid; justify-items: center; text-align: center; gap: 10px; padding: 12px 0; outline: none; }
.success__ic { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-ink); color: #fff; box-shadow: 0 0 0 8px var(--blue-50); margin-bottom: 8px; animation: pop .45s cubic-bezier(.3, 1.6, .5, 1); }
.success__ic--green { background: var(--green-ink); box-shadow: 0 0 0 8px var(--green-50); }
.success__ic .icon { width: 32px; height: 32px; }
.success__title { font-size: 1.6rem; font-weight: 900; }
.success__text { color: var(--ink-2); font-weight: 600; margin-bottom: 8px; }
.success .cta-stack, .success .btn { width: 100%; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }

/* ==========================================================================
   11 · B2B
   ========================================================================== */
.b2b {
  position: relative; overflow: hidden;
  display: grid; gap: 24px;
  padding: 28px 18px 18px; border-radius: var(--r-lg);
  background:
    radial-gradient(500px 300px at 100% 0%, rgb(48 185 70 / .28), transparent 70%),
    radial-gradient(500px 300px at 0% 100%, rgb(34 169 224 / .25), transparent 70%),
    var(--navy);
  color: #fff;
}
.b2b__title { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem); line-height: 1.14; font-weight: 900; letter-spacing: -.02em; text-wrap: balance; }
.b2b__text { margin-top: 12px; font-size: 1.05rem; color: #C9D8E6; font-weight: 600; }
.b2b__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.b2b__tags li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgb(255 255 255 / .08); border: 1px solid rgb(255 255 255 / .16);
  font-weight: 700; font-size: .92rem;
}
.b2b__tags .icon { color: #7CE08D; }
.b2b__panel { background: #fff; color: var(--ink); border-radius: var(--r); padding: 22px 18px; }
@media (min-width: 960px) {
  .b2b { grid-template-columns: .9fr 1.1fr; gap: 56px; padding: 56px; align-items: center; }
  .b2b__panel { padding: 32px; }
}

/* ==========================================================================
   12 · FAQ
   ========================================================================== */
.faq { display: grid; gap: 28px; }
.faq__help {
  display: grid; grid-template-columns: 96px 1fr; gap: 6px 16px; align-items: center;
  margin-top: 22px; padding: 16px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.faq__mascot { grid-row: span 2; width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 4px solid var(--blue-50); }
.faq__help-text { font-weight: 900; font-size: 1.1rem; line-height: 1.25; }
.faq__help .btn { grid-column: 1 / -1; margin-top: 10px; }
.faq__help-text { grid-row: span 2; }

.faq__list { display: grid; gap: 10px; }
.qa { border-radius: var(--r-sm); background: #fff; border: 1px solid var(--line); transition: border-color .2s, box-shadow .2s; }
.qa[open] { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.qa summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 18px; font-weight: 800; font-size: 1.05rem; line-height: 1.35;
  border-radius: var(--r-sm);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .icon { flex: none; width: 32px; height: 32px; padding: 6px; border-radius: 50%; background: var(--blue-50); color: var(--blue-ink); transition: transform .25s, background-color .2s, color .2s; }
.qa[open] summary .icon { transform: rotate(180deg); background: var(--blue-ink); color: #fff; }
.qa p { padding: 0 18px 18px; color: var(--ink-2); font-size: 1rem; }

@media (min-width: 960px) {
  .faq { grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
  .faq__aside { position: sticky; top: calc(var(--header-h) + 24px); }
  .faq__help { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 28px; }
  .faq__mascot { grid-row: auto; width: 180px; height: 180px; margin-bottom: 8px; }
  .faq__help-text { font-size: 1.25rem; margin-bottom: 8px; grid-row: auto; }
  .faq__help .btn { margin-top: 0; font-size: .88rem; }
}

/* ==========================================================================
   13 · CTA FINAL
   ========================================================================== */
.final {
  position: relative; overflow: hidden; color: #fff;
  display: grid; gap: 24px;
  padding: 36px 20px 0; border-radius: var(--r-lg);
  background:
    radial-gradient(420px 360px at 100% 100%, rgb(48 185 70 / .55), transparent 70%),
    radial-gradient(520px 380px at 0% 0%, rgb(34 169 224 / .9), transparent 70%),
    linear-gradient(140deg, var(--blue-ink), var(--blue-deep));
}
.final > :not(.bubble) { position: relative; z-index: 1; }
.final__title { font-size: clamp(2rem, 1.2rem + 3.4vw, 3.4rem); line-height: 1.05; font-weight: 900; letter-spacing: -.03em; text-wrap: balance; }
.final__text { margin-top: 14px; font-size: 1.12rem; font-weight: 600; max-width: 38ch; }
.final__sign { display: flex; align-items: center; gap: 6px; margin: 16px 0 24px; font-weight: 800; }
.final__sign .icon { color: #9BE8A8; }
.final__photo {
  justify-self: center; width: min(72%, 280px);
  aspect-ratio: 4 / 5; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden;
  border: 6px solid rgb(255 255 255 / .9); border-bottom: 0;
}
.final__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 37%; }
@media (min-width: 900px) {
  .final { grid-template-columns: 1fr auto; align-items: end; padding: 56px 56px 0; gap: 48px; }
  .final__copy { padding-bottom: 56px; }
  .final__photo { width: 300px; }
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer { padding: 56px 0 calc(96px + env(safe-area-inset-bottom, 0px)); background: #fff; border-top: 1px solid var(--line); font-size: .95rem; }
.footer__grid { display: grid; gap: 28px; }
.footer__brand img { height: 72px; width: auto; margin-bottom: 12px; }
.footer__h { font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); margin-bottom: 10px; }
.footer__col p { line-height: 1.55; }
.footer__links { display: grid; gap: 8px; }
.footer__links a, .footer__plain, .footer__links .linklike { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; font-weight: 700; min-height: 32px; }
.footer__links a:hover, .footer__links .linklike:hover { color: var(--blue-ink); text-decoration: underline; }
.footer__links .icon { color: var(--blue-ink); }
.footer__links .linklike { text-decoration: none; }
.footer__bottom { margin-top: 36px; color: var(--ink-2); font-size: .85rem; }
.footer__bottom p { padding-top: 20px; border-top: 1px solid var(--line); }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer { padding-bottom: 40px; } .footer__grid { grid-template-columns: 1.1fr 1.2fr 1fr 1fr; gap: 40px; } }

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.wa-float {
  position: fixed; z-index: 60;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  display: inline-flex; align-items: center; gap: 10px;
  height: 60px; min-width: 60px; padding: 0 17px; border-radius: var(--r-pill);
  background: var(--green-ink); color: #fff; text-decoration: none; font-weight: 800;
  box-shadow: 0 14px 30px -10px rgb(30 127 49 / .75), 0 0 0 4px rgb(255 255 255 / .9);
  transition: transform .2s ease, bottom .25s ease;
}
.wa-float .icon { width: 26px; height: 26px; }
.wa-float__label { display: none; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; border: 2px solid var(--green);
  animation: ring 2.6s ease-out infinite; pointer-events: none;
}
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 70%, 100% { transform: scale(1.35); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; opacity: 0; } }
@media (min-width: 768px) {
  .wa-float { right: 24px; bottom: 24px; padding: 0 22px 0 18px; }
  .wa-float__label { display: inline; }
}
body.has-cookie .wa-float { bottom: calc(var(--cookie-h, 120px) + 16px + env(safe-area-inset-bottom, 0px)); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0;
  background: rgb(6 20 36 / .94); color: #fff;
}
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: rgb(6 20 36 / .6); }
.lightbox__fig { display: grid; justify-items: center; gap: 12px; padding: 64px 16px 24px; max-width: 100%; }
.lightbox__fig img { max-width: min(1100px, 100%); max-height: calc(100vh - 150px); width: auto; height: auto; border-radius: var(--r-sm); }
.lightbox__fig figcaption { font-weight: 700; text-align: center; max-width: 60ch; }
.lightbox__btn {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgb(255 255 255 / .12); color: #fff; border: 1px solid rgb(255 255 255 / .25);
}
.lightbox__btn:hover { background: rgb(255 255 255 / .22); }
.lightbox__close { top: calc(12px + env(safe-area-inset-top, 0px)); right: 12px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox__prev, .lightbox__next { top: auto; bottom: 16px; transform: none; }
  .lightbox__prev { left: calc(50% - 60px); }
  .lightbox__next { right: calc(50% - 60px); }
  .lightbox__fig { padding-bottom: 80px; }
}

/* ==========================================================================
   COOKIES
   ========================================================================== */
.cookie {
  position: fixed; z-index: 70; left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: grid; gap: 12px;
  padding: 16px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 50px -20px rgb(11 37 64 / .45);
  font-size: .9rem;
}
.cookie__actions { display: flex; gap: 8px; justify-content: flex-end; }
.cookie__actions .btn { flex: 1; }
@media (min-width: 768px) {
  .cookie { left: 24px; right: auto; max-width: 440px; bottom: 24px; }
  body.has-cookie .wa-float { bottom: 24px; }
}

/* ==========================================================================
   PÁGINAS LEGAIS
   ========================================================================== */
.legal { padding-block: 40px 96px; }
.legal__wrap { max-width: 760px; }
.legal h1 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.8rem); line-height: 1.1; font-weight: 900; letter-spacing: -.02em; margin-bottom: 8px; }
.legal__meta { color: var(--ink-2); font-weight: 600; margin-bottom: 28px; }
.legal h2 { font-size: 1.3rem; font-weight: 900; margin: 32px 0 8px; }
.legal p, .legal li { color: #243B53; margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 1.3em; margin-bottom: 12px; }
.legal .todo { background: #FFF4CC; border-radius: 6px; padding: 0 6px; font-weight: 700; color: #6B4E00; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; margin-bottom: 20px; text-decoration: none; }
