/* Casa do Pintor — link bio.
   Componentes adaptados da landing do Circuito (cards, abas, sheet, toast,
   reveal com blur) em tema claro, com o vermelho e a tipografia (Rubik + Roboto) da marca. */

:root {
  --red: #e4002b;
  --red-dark: #b80023;
  --red-light: #d10028;
  --red-soft: rgba(228, 0, 43, 0.06);
  --red-line: rgba(228, 0, 43, 0.24);
  --gradient: linear-gradient(135deg, #b80023 0%, #e4002b 52%, #ff5a72 100%);

  --bg: #ffffff;
  --bg-elevated: #ffffff;
  --bg-soft: #f6f3f2;
  --divider: rgba(26, 20, 20, 0.08);
  --divider-strong: rgba(26, 20, 20, 0.13);
  --text: #1a1414;
  --text-muted: #5e5454;
  --text-subtle: #857a7a;
  --shadow-card: 0 1px 2px rgba(26, 20, 20, 0.04), 0 8px 24px -16px rgba(26, 20, 20, 0.18);

  --whatsapp: #1fae5b;
  --whatsapp-dark: #168a47;

  --ease-swift: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: "Rubik", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
  --wrap: 1080px;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 80px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); text-wrap: balance; }
address { font-style: normal; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
:focus-visible { outline: 2px solid var(--red-light); outline-offset: 3px; border-radius: 10px; }
.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; border-radius: 12px;
  background: var(--bg-elevated); color: var(--text); font-weight: 500;
  transition: top 200ms var(--ease-swift);
}
.skip-link:focus { top: 12px; }

/* ── Nav (glass fixa) ────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 300ms var(--ease-swift), border-color 300ms var(--ease-swift), backdrop-filter 300ms;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom-color: var(--divider);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
}
.nav-inner { display: flex; height: var(--nav-h); align-items: center; justify-content: space-between; gap: 16px; }
.nav-brand img { width: 128px; height: auto; transition: transform 300ms var(--ease-back); }
.nav-brand:hover img { transform: scale(1.03); }

.pill-button {
  display: inline-flex; min-height: 40px; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1px solid var(--divider-strong); border-radius: 999px;
  background: var(--bg-elevated); color: var(--text);
  font-size: 0.85rem; font-weight: 500;
  transition: transform 160ms var(--ease-swift), border-color 180ms, background 180ms;
}
.pill-button:hover { border-color: var(--red-line); background: var(--red-soft); transform: translateY(-1px); }
.pill-button:active { transform: scale(0.97); }
.pill-button span { display: none; }
@media (min-width: 400px) { .pill-button span { display: inline; } }

/* ── Botões ──────────────────────────────────────────────────────────── */
.button {
  position: relative; display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border: 1px solid transparent; border-radius: 14px; cursor: pointer;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; line-height: 1.1; white-space: nowrap;
  transition: transform 160ms var(--ease-swift), box-shadow 220ms var(--ease-swift), background 180ms, border-color 180ms, filter 180ms;
}
.button svg { transition: transform 220ms var(--ease-back); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(0.97); transition-duration: 80ms; }
.button-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 6px 26px -6px rgba(228, 0, 43, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.button-primary:hover { filter: brightness(1.08); box-shadow: 0 12px 34px -6px rgba(228, 0, 43, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.button-primary:hover svg { transform: translateX(3px); }
.button-primary[href="#lojas"]:not([data-open-picker]):hover svg { transform: translateY(3px); }
.button-light { background: #fff; color: var(--red-dark); box-shadow: 0 10px 30px -8px rgba(91, 0, 16, 0.45); }
.button-light:hover { box-shadow: 0 16px 36px -8px rgba(91, 0, 16, 0.55); }
.button-light:hover svg { transform: rotate(-10deg) scale(1.1); }
.button-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 20px -8px rgba(31, 174, 91, 0.7); }
.button-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 10px 26px -8px rgba(31, 174, 91, 0.8); }
.button-whatsapp:hover svg { transform: rotate(-12deg) scale(1.12); }
.button-ghost { border-color: var(--divider-strong); background: var(--bg-elevated); color: var(--text); }
.button-ghost:hover { border-color: var(--red-line); background: var(--red-soft); }
.button-ghost:hover svg { transform: translateY(-2px); }

.icon-button {
  display: inline-grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center;
  border: 1px solid var(--divider-strong); border-radius: 14px; background: var(--bg-elevated);
  color: var(--text-muted); cursor: pointer;
  transition: transform 160ms var(--ease-swift), color 180ms, border-color 180ms, background 180ms;
}
.icon-button:hover { color: var(--text); border-color: var(--red-line); background: var(--red-soft); }
.icon-button:active { transform: scale(0.92); }
.icon-button.is-done { color: var(--whatsapp); border-color: rgba(31, 174, 91, 0.4); background: rgba(31, 174, 91, 0.1); }
.icon-button.is-done svg { animation: pop-in 320ms var(--ease-back); }

/* ── Tipografia de seção ─────────────────────────────────────────────── */
.kicker {
  color: var(--red-light); font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.section-head { max-width: 620px; }
.section-head h2 { margin-top: 10px; font-size: clamp(2rem, 7vw, 3rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.03em; }
.section-head p:not(.kicker) { margin-top: 12px; color: var(--text-muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border: 1px solid var(--red-line); border-radius: 999px;
  background: var(--red-soft); color: var(--red-dark);
  font-size: 0.8rem; font-weight: 500;
}
.eyebrow svg { color: var(--red-light); }
.ping { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--red-light); }
.ping::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--red-light); animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite; }

.shine { color: var(--red-light); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { padding: calc(var(--nav-h) + 56px) 0 72px; }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero h1 {
  max-width: 14ch; margin-top: 26px;
  font-size: clamp(2.6rem, 11vw, 4.6rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.04em;
}
.hero-copy { max-width: 440px; margin-top: 20px; color: var(--text-muted); font-size: clamp(1.02rem, 3.6vw, 1.2rem); }
.hero-actions { display: flex; width: 100%; justify-content: center; margin-top: 32px; }
.hero-actions .button { width: min(100%, 320px); min-height: 56px; font-size: 1rem; }
.hero-cities { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.hero-cities a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px;
  padding: 8px 12px 8px 14px; border: 1px solid var(--divider-strong); border-radius: 999px;
  background: var(--bg-elevated); color: var(--text-muted); font-size: 0.86rem; font-weight: 500;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform 160ms var(--ease-swift), color 180ms, border-color 180ms, background 180ms;
}
.hero-cities a:hover { color: var(--text); border-color: var(--red-line); background: var(--red-soft); transform: translateY(-2px); }
.hero-cities a:active { transform: scale(0.96); }
.hero-cities small { display: grid; min-width: 20px; height: 20px; place-items: center; border-radius: 999px; background: var(--bg-soft); font-size: 0.72rem; }

/* ── Lojas ───────────────────────────────────────────────────────────── */
.stores { padding: 40px 0 80px; }

.city-tabs {
  position: sticky; top: calc(var(--nav-h) + 8px); z-index: 20;
  display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 0 24px; padding: 5px;
  border: 1px solid var(--divider-strong); border-radius: 16px;
  background: color-mix(in srgb, var(--bg-elevated) 82%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 12px 30px -14px rgba(26, 20, 20, 0.22);
}
.city-tabs a {
  position: relative; z-index: 1; display: grid; min-height: 42px; place-items: center; padding: 0 6px;
  border-radius: 11px; color: var(--text-muted); font-family: var(--font-display); font-size: 0.88rem; font-weight: 500;
  transition: color 220ms var(--ease-swift);
}
.city-tabs a:hover { color: var(--text); }
.city-tabs a.is-active { color: #fff; }
.city-tabs__indicator {
  position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; width: calc((100% - 10px) / 3);
  border-radius: 11px; background: var(--gradient); box-shadow: 0 6px 18px -6px rgba(228, 0, 43, 0.7);
  opacity: 0; transform: translateX(var(--x, 0));
  transition: transform 420ms var(--ease-expo), opacity 200ms;
}
.city-tabs.has-active .city-tabs__indicator { opacity: 1; }

.city-stack { display: grid; gap: 40px; }
.city-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--divider); }
.city-head h3 { font-size: clamp(1.6rem, 6vw, 2rem); font-weight: 600; letter-spacing: -0.025em; }
.count { color: var(--text-subtle); font-size: 0.85rem; font-weight: 500; }

.unit-list { display: grid; gap: 12px; margin-top: 16px; }
.unit {
  --mx: 50%; --my: 50%;
  position: relative; display: grid; gap: 18px; overflow: hidden;
  padding: 20px; border: 1px solid var(--divider); border-radius: 20px; background: var(--bg-elevated);
  transition: transform 260ms var(--ease-swift), border-color 220ms, box-shadow 260ms var(--ease-swift);
}
/* Spotlight que segue o dedo/cursor */
.unit::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(228, 0, 43, 0.12), transparent 60%);
  transition: opacity 300ms var(--ease-swift);
}
.unit::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 106, 0.5), transparent); opacity: 0;
  transition: opacity 300ms;
}
.unit > * { position: relative; z-index: 1; }
.unit:hover { border-color: var(--red-line); transform: translateY(-2px); box-shadow: 0 18px 40px -20px rgba(228, 0, 43, 0.45); }
.unit:hover::before, .unit:hover::after, .unit:focus-within::before { opacity: 1; }
.unit-copy h4 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.015em; }
.unit-copy address { margin-top: 6px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
/* Mobile: WhatsApp (ação principal) ocupa a linha toda; rota + copiar embaixo. */
.unit-actions { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.unit-actions .button { min-width: 0; padding-inline: 14px; font-size: 0.92rem; }
.unit-actions .button-whatsapp { grid-column: 1 / -1; min-height: 52px; }

/* ── Benefícios ──────────────────────────────────────────────────────── */
.benefits { padding: 80px 0; border-block: 1px solid var(--divider); background: linear-gradient(180deg, var(--bg-elevated), var(--bg)); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 32px; }
.benefit {
  display: flex; min-height: 138px; flex-direction: column; justify-content: space-between; gap: 18px;
  padding: 18px; border: 1px solid var(--divider); border-radius: 20px; background: var(--bg-soft);
  transition: transform 260ms var(--ease-swift), border-color 220ms;
}
.benefit:hover { transform: translateY(-3px); border-color: var(--red-line); }
.benefit:hover .benefit-icon { transform: rotate(-8deg) scale(1.08); }
.benefit-icon {
  display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px;
  border: 1px solid var(--red-line); background: var(--red-soft); color: var(--red-light);
  transition: transform 320ms var(--ease-back);
}
.benefit-icon svg { width: 21px; height: 21px; }
.benefit h3 { font-size: 1.02rem; font-weight: 500; line-height: 1.2; }
.benefit-featured { border-color: transparent; background: var(--gradient); box-shadow: 0 16px 40px -18px rgba(228, 0, 43, 0.8); }
.benefit-featured .benefit-icon { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.15); color: #fff; }
.benefit-featured h3 strong { display: block; margin-bottom: 2px; font-size: 2.1rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.benefit-featured:hover { border-color: transparent; }

/* ── Pintor Parceiro ─────────────────────────────────────────────────── */
.partner { padding: 80px 0 40px; }
.partner-card { display: grid; overflow: hidden; border: 1px solid var(--divider); border-radius: 28px; background: var(--bg-elevated); }
.partner-media { position: relative; min-height: 280px; overflow: hidden; }
.partner-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% center; transition: transform 1.2s var(--ease-expo); }
.partner-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-elevated) 0%, transparent 45%); }
.partner-card:hover .partner-media img { transform: scale(1.04); }
.partner-content { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding: 4px 22px 26px; }
.partner-content h2 { font-size: clamp(1.8rem, 6.5vw, 2.6rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; }
.partner-content p { color: var(--text-muted); }
.partner-content .button { width: 100%; margin-top: 6px; }

/* ── CTA final ───────────────────────────────────────────────────────── */
.final { padding: 40px 0 80px; }
.final-card {
  overflow: hidden; padding: 64px 22px 72px; border: 1px solid var(--red-line); border-radius: 32px;
  background: var(--bg-elevated);
  text-align: center;
}
.final-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.final-copy h2 { font-size: clamp(2.1rem, 8vw, 3.4rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.035em; }
.final-copy p { max-width: 400px; color: var(--text-muted); }
.final-copy .button { margin-top: 10px; min-width: 240px; }
/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { padding: 36px 0 calc(28px + env(safe-area-inset-bottom)); border-top: 1px solid var(--divider); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner img { width: 150px; height: auto; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--divider); color: var(--text-subtle); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; transition: color 180ms; }
.footer-bottom a:hover { color: var(--text); }

/* ── FAB (mobile) ────────────────────────────────────────────────────── */
.fab {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 40;
  display: inline-flex; min-height: 54px; align-items: center; gap: 10px; padding: 0 20px 0 18px;
  border: 0; border-radius: 999px; background: var(--whatsapp); color: #fff; cursor: pointer;
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  box-shadow: 0 14px 34px -12px rgba(26, 20, 20, 0.3), 0 6px 20px -6px rgba(31, 174, 91, 0.6);
  opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.9);
  transition: opacity 260ms var(--ease-swift), transform 380ms var(--ease-back), background 180ms;
}
.fab svg { width: 22px; height: 22px; }
.fab.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.fab:hover { background: var(--whatsapp-dark); }
.fab:active { transform: scale(0.95); }

/* ── Seletor de loja (bottom sheet) ──────────────────────────────────── */
.sheet {
  width: 100%; max-width: 100%; max-height: 100dvh; margin: auto 0 0; padding: 0;
  border: 0; background: transparent; color: var(--text); overflow: visible;
}
.sheet::backdrop { background: rgba(26, 20, 20, 0.35); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; transition: opacity 260ms; }
.sheet[open]::backdrop { opacity: 1; }
.sheet-panel {
  max-height: 86dvh; overflow-y: auto; padding: 10px 18px calc(20px + env(safe-area-inset-bottom));
  border: 1px solid var(--divider-strong); border-bottom: 0; border-radius: 26px 26px 0 0; background: var(--bg-elevated);
  box-shadow: 0 -20px 60px -10px rgba(26, 20, 20, 0.2);
  transform: translateY(100%); transition: transform 420ms var(--ease-expo);
}
.sheet.is-open .sheet-panel { transform: none; }
.sheet-handle { display: block; width: 40px; height: 4px; margin: 0 auto 14px; border-radius: 99px; background: var(--divider-strong); }
.sheet-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.sheet-head h2 { margin-top: 6px; font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.sheet-head .icon-button { width: 42px; height: 42px; border-radius: 12px; }
.sheet-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sheet-group { margin: 10px 0 2px; color: var(--text-subtle); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.sheet-link {
  display: flex; align-items: center; gap: 14px; min-height: 60px; padding: 10px 14px;
  border: 1px solid var(--divider); border-radius: 16px; background: var(--bg-soft);
  opacity: 0; transform: translateY(10px);
  transition: transform 200ms var(--ease-swift), border-color 180ms, background 180ms;
}
.sheet.is-open .sheet-link { animation: rise-in 420ms var(--ease-expo) forwards; animation-delay: var(--i, 0ms); }
.sheet-link:hover { border-color: rgba(31, 174, 91, 0.45); background: rgba(31, 174, 91, 0.08); }
.sheet-link:active { transform: scale(0.98); }
.sheet-link .wa { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 11px; background: var(--whatsapp); color: #fff; }
.sheet-link strong { display: block; font-family: var(--font-display); font-weight: 500; }
.sheet-link small { display: block; color: var(--text-subtle); font-size: 0.8rem; }
.sheet-link > svg:last-child { margin-left: auto; color: var(--text-subtle); transition: transform 200ms var(--ease-back); }
.sheet-link:hover > svg:last-child { transform: translateX(3px); color: var(--text); }
body.sheet-lock { overflow: hidden; }

/* ── Toast ───────────────────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom)); z-index: 60;
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px;
  border: 1px solid var(--divider-strong); border-radius: 999px; background: #1a1414; color: #fff;
  box-shadow: 0 16px 40px -12px rgba(26, 20, 20, 0.45); font-size: 0.9rem; font-weight: 500;
  opacity: 0; pointer-events: none; transform: translate(-50%, 16px) scale(0.96);
  transition: opacity 220ms var(--ease-swift), transform 360ms var(--ease-back);
}
.toast svg { color: var(--whatsapp); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0) scale(1); }

/* ── Scroll reveal (só com JS) ───────────────────────────────────────── */
html.js [data-reveal] {
  opacity: 0; transform: translateY(28px) scale(0.97); filter: blur(6px);
  transition: opacity 0.8s var(--ease-expo), transform 0.9s var(--ease-expo), filter 0.8s var(--ease-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

/* ── Keyframes ───────────────────────────────────────────────────────── */
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }
@keyframes rise-in { to { opacity: 1; transform: none; } }
@keyframes pop-in { 0% { transform: scale(0.4); } 100% { transform: scale(1); } }

/* ── Breakpoints ─────────────────────────────────────────────────────── */
@media (min-width: 700px) {
  .wrap { width: min(100% - 64px, var(--wrap)); }
  .nav-brand img { width: 150px; }
  .hero { padding: calc(var(--nav-h) + 88px) 0 96px; }
  .stores { padding: 56px 0 104px; }
  .city-tabs { max-width: 480px; }
  .unit { grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 24px; }
  .unit-actions { grid-template-columns: auto auto auto; }
  .unit-actions .button-whatsapp { grid-column: auto; order: 0; }
  .benefits { padding: 104px 0; }
  .benefit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
  .benefit { min-height: 180px; padding: 22px; }
  .partner { padding: 104px 0 48px; }
  .partner-card { grid-template-columns: 1fr 1fr; }
  .partner-media { min-height: 460px; }
  .partner-media::after { background: linear-gradient(to left, var(--bg-elevated) 0%, transparent 35%); }
  .partner-content { justify-content: center; gap: 18px; padding: 48px 48px 48px 28px; }
  .partner-content .button { width: auto; }
  .final { padding: 48px 0 104px; }
  .final-card { padding: 88px 40px 96px; }
  .fab { display: none; }
  .sheet { width: min(100% - 32px, 480px); margin: auto; }
  .sheet-panel { border: 1px solid var(--divider-strong); border-radius: 26px; transform: translateY(24px) scale(0.97); opacity: 0; transition: transform 380ms var(--ease-expo), opacity 220ms; padding-top: 22px; }
  .sheet.is-open .sheet-panel { opacity: 1; }
  .sheet-handle { display: none; }
}
@media (min-width: 980px) {
  .unit-list { grid-template-columns: 1fr; }
}

@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; }
  html.js [data-reveal] { opacity: 1; transform: none; filter: none; }
  .sheet-link { opacity: 1; transform: none; }
}

/* ── Tema claro: superfícies ─────────────────────────────────────────── */
.unit, .partner-card { box-shadow: var(--shadow-card); }
.benefits { background: var(--bg-soft); }
.benefit { background: var(--bg-elevated); box-shadow: var(--shadow-card); }
.benefit-featured { background: var(--gradient); color: #fff; }
.nav.is-scrolled { background: color-mix(in srgb, #fff 82%, transparent); }
.toast svg { color: #4ade80; }

/* CTA final em bloco vermelho da marca */
.final-card { border: 0; background: var(--gradient); color: #fff; box-shadow: 0 24px 60px -24px rgba(228, 0, 43, 0.6); }
.final-copy p { color: rgba(255, 255, 255, 0.86); }
.final .shine { color: #fff; text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 8px; text-decoration-color: rgba(255, 255, 255, 0.45); }
.final-copy .button-light:focus-visible { outline-color: #fff; }
