/* Giro Autos — site / vitrine */
:root {
  --navy: #061431;
  --navy-h: #040E22;
  --navy-light: #8A96A8;
  --navy-pale: #E8EBF2;
  --olive: #0044A8;
  --olive-h: #003585;
  --olive-light: #7AA8E0;
  --olive-pale: #E6F0FA;
  --olive-on-dark: #7AB4FF;
  --amber: #1A73E8;
  --amber-h: #1558B8;
  --slate: #5A6B80;
  --gold: #C9A227;
  --gold-h: #A8861C;
  --gold-light: #E8D48A;
  --gold-pale: #FBF6E4;
  --ok: #1B8A4C;
  --ok-pale: #E6F6EC;
  --warn: #C47B0A;
  --warn-pale: #FFF4E0;
  --danger: #C62828;
  --danger-pale: #FDECEC;
  --info: #0044A8;
  --info-pale: #E6F0FA;
  --bg: #F4F6F9;
  --white: #FFFFFF;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --border-md: #C5D0DE;
  --text-1: #061431;
  --text-2: #1A2A44;
  --text-3: #5A6B80;
  --text-4: #8A97A8;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Exo 2', 'Inter', system-ui, sans-serif;
  --font-wide: 'Montserrat', 'Inter', system-ui, sans-serif;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-full: 999px;
  --r-speed: 8px 20px 8px 8px;
  --sh-sm: 0 1px 4px rgba(6, 20, 49, .08);
  --sh-md: 0 4px 16px rgba(6, 20, 49, .10);
  --sh-lg: 0 8px 32px rgba(6, 20, 49, .14);
  --header-h: 76px;
  --ease: 200ms ease;
  --wrap: 1220px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--olive); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select { font: inherit; }

.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--olive-pale);
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.eyebrow-on-dark {
  background: rgba(0, 68, 168, .22);
  color: var(--olive-on-dark);
}

.eyebrow-on-dark .live-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .65);
  animation: live-blink 1s ease-in-out infinite;
}


.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.045em;
  line-height: 1.08;
  color: var(--text-1);
}
.display-light { color: #fff; }
.lead { margin-top: 12px; color: var(--text-3); max-width: 560px; font-size: 1.05rem; }
.lead-light { color: rgba(255, 255, 255, .72); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: .88rem;
  border: 2px solid transparent;
  border-radius: var(--r-speed);
  cursor: pointer;
  text-decoration: none !important;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--olive); border-color: var(--olive); color: #fff; }
.btn-primary:hover { background: var(--olive-h); border-color: var(--olive-h); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy-pale); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.btn-ghost { background: transparent; color: var(--text-2); border-color: var(--border-md); }
.btn-ghost:hover { background: var(--white); }
.btn-sm { padding: 8px 16px; font-size: .8rem; }
.btn-lg { padding: 15px 28px; font-size: .95rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

.field {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--text-1);
  outline: none;
  appearance: none;
}
.field:focus { border-color: var(--olive); box-shadow: 0 0 0 4px rgba(0, 68, 168, .12); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
  border-radius: var(--r-full);
}
.badge.is-ok { background: var(--ok-pale); color: var(--ok); border: 1px solid #B7E4C7; }
.badge.is-warn { background: var(--warn-pale); color: var(--warn); border: 1px solid #F0D59A; }
.badge.is-sold { background: var(--danger-pale); color: var(--danger); border: 1px solid #F5B7B7; }
.badge.is-info { background: var(--info-pale); color: var(--info); border: 1px solid var(--olive-light); }
.badge-fipe { background: var(--gold-pale); color: var(--gold-h); border: 1px solid var(--gold-light); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(6, 20, 49, .94);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,.06);
  box-shadow: 0 8px 32px rgba(4, 14, 34, .28);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img { height: 46px; width: auto; }
.header-wordmark {
  font-family: var(--font-wide);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: .02em;
  color: var(--olive-on-dark);
  line-height: 1;
  white-space: nowrap;
}
.header-wordmark b { color: #fff; font-weight: 800; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.header-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .78;
}
.header-nav a:hover, .header-nav a.is-on { color: #fff; }
.header-nav a:hover svg, .header-nav a.is-on svg { opacity: 1; }
.header-sign {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-sign::before {
  content: "";
  width: 1px;
  height: 22px;
  margin-right: 6px;
  background: rgba(255,255,255,.16);
}
.sign-up {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(4, 14, 34, .22);
}
.sign-up:hover {
  background: #f4f6f9;
  border-color: #f4f6f9;
  color: var(--navy);
}
.sign-account { position: relative; }
.sign-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.sign-chip:hover, .sign-account.is-open .sign-chip {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}
.sign-av {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.sign-name {
  font-size: .86rem;
  font-weight: 700;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sign-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,.7);
}
.sign-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  min-width: 228px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(6, 20, 49, .18);
}
.sign-menu-mail {
  margin: 0 0 6px;
  padding: 8px 10px 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text-3);
  font-size: .72rem;
  font-weight: 600;
  word-break: break-all;
}
.sign-menu a,
.sign-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-1);
  font: inherit;
  font-size: .86rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.sign-menu a svg,
.sign-menu button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .72;
}
.sign-menu a:hover,
.sign-menu button:hover { background: var(--olive-pale); color: var(--olive); }
.sign-menu a:hover svg,
.sign-menu button:hover svg { opacity: 1; }
.sign-menu form { margin: 4px 0 0; padding-top: 4px; border-top: 1px solid var(--border); }
.sign-menu form button { color: var(--text-3); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; transition: transform var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 48px) 0 72px;
  background: #061431;
  color: #fff;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 40%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 26, .88) 0%, rgba(6, 20, 49, .62) 42%, rgba(6, 20, 49, .18) 100%),
    linear-gradient(180deg, rgba(4, 10, 26, .35) 0%, transparent 28%, rgba(4, 10, 26, .72) 100%);
}
.hero-speed {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-12deg, transparent, transparent 22px, rgba(0, 68, 168, .07) 22px, rgba(0, 68, 168, .07) 24px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding-bottom: 12px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.05em;
  line-height: 1.02;
  max-width: 18ch;
}
.hero-title em { color: var(--olive-on-dark); font-style: italic; }
.hero-lead { margin-top: 20px; max-width: 560px; color: rgba(255,255,255,.74); font-size: 1.12rem; }
.hero-pulse {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(0, 68, 168, .28);
  border: 1px solid rgba(122, 180, 255, .28);
  color: rgba(255,255,255,.88);
  font-size: .86rem;
  font-weight: 600;
}
.hero-pulse strong { font-weight: 800; color: #fff; }
.hero-pulse-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.hero-pulse-count,
.hero-pulse-note { white-space: nowrap; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats dt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.04em;
}
.hero-stats dd { font-size: .78rem; color: rgba(255,255,255,.58); letter-spacing: .04em; }

.uf-ticker {
  position: relative;
  height: 38px;
  background: #040E22;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.uf-ticker::before,
.uf-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.uf-ticker::before { left: 0; background: linear-gradient(90deg, #040E22, transparent); }
.uf-ticker::after { right: 0; background: linear-gradient(270deg, #040E22, transparent); }
.uf-ticker-view { height: 100%; overflow: hidden; }
.uf-ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: uf-marquee 42s linear infinite;
}
.uf-ticker:hover .uf-ticker-track { animation-play-state: paused; }
.uf-ticker-seq {
  display: flex;
  align-items: center;
  height: 100%;
}
.uf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  color: rgba(255,255,255,.78);
  text-decoration: none !important;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.06);
}
.uf-chip img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16);
}
.uf-chip strong {
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.uf-chip:hover,
.uf-chip.is-live { color: #fff; }
.uf-chip.is-live img { box-shadow: 0 0 0 1px rgba(122, 180, 255, .45); }
@keyframes uf-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .yard-list, .yard-board.is-swap .yard-list, .filter-side, .yard-list .vcard {
    transition: none;
    animation: none;
    transform: none;
  }
  .uf-ticker-track,
  .yard-feed-track,
  .yard-live-badge .live-dot,
  .eyebrow-on-dark .live-dot { animation: none; }
  .uf-ticker-view,
  .yard-feed-view { overflow-x: auto; }
}

.section { padding: 88px 0; }
.section-head { margin-bottom: 36px; max-width: 640px; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  max-width: none;
}
.section-head .display { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-featured { background: #fff; }
.section-voices {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 88% 12%, rgba(0, 68, 168, .34), transparent 58%),
    var(--navy-h);
  color: #fff;
}
.section-voices .display { color: #fff; }
.section-voices .wrap { position: relative; }
.section-how { background: var(--bg); }
.section-grid { background: #fff; }
.stock-more {
  display: flex;
  justify-content: center;
  margin: 36px 0 0;
}
.stock-more .btn {
  min-width: min(100%, 360px);
  padding: 16px 34px;
  font-size: 1rem;
  font-weight: 700;
}
.section-pillars { background: var(--navy-pale); }
.section-estoque { padding-top: 32px; }
.section-estoque .wrap { width: min(1280px, calc(100% - 40px)); }
.yard-board {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.yard-board.is-swap .yard-list {
  opacity: .4;
  transform: translateY(8px);
  pointer-events: none;
}
.yard-list {
  transition: opacity .28s ease, transform .28s ease;
}
.yard-list .vitrine-grid { grid-template-columns: 1fr 1fr; }
.yard-list .vcard {
  animation: yard-card-in .38s ease both;
}
@keyframes yard-card-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.yard-list .vcard:nth-child(1) { animation-delay: .02s; }
.yard-list .vcard:nth-child(2) { animation-delay: .06s; }
.yard-list .vcard:nth-child(3) { animation-delay: .1s; }
.yard-list .vcard:nth-child(4) { animation-delay: .14s; }
.yard-list .vcard:nth-child(5) { animation-delay: .18s; }
.yard-list .vcard:nth-child(6) { animation-delay: .22s; }
.yard-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 14px;
}
.yard-toolbar .result-count { margin: 0; flex: 1; }
.yard-toolbar .filter-sort { min-width: 180px; }
.yard-toolbar .yard-refresh { margin-left: auto; }
.yard-filter-open { display: none; }
.filter-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(4, 10, 26, .46);
  border: 0;
  padding: 0;
  cursor: pointer;
}
body.filter-open { overflow: hidden; }

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 48px;
  background: #061431;
  color: #fff;
  overflow: hidden;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4,10,26,.88) 0%, rgba(6,20,49,.55) 70%, rgba(6,20,49,.35) 100%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .display { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero .lead { color: rgba(255,255,255,.7); }
.page-hero-404 { min-height: 56vh; }
.page-hero.is-live { padding-bottom: 36px; }
.yard-live-badge { gap: 8px; }
.yard-live-badge .live-dot {
  width: 9px;
  height: 9px;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .65);
  animation: live-blink 1s ease-in-out infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px 1px rgba(34, 197, 94, .75); }
  50% { opacity: .2; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.yard-clock {
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.58);
  font-weight: 600;
}
.yard-clock time { color: #fff; font-variant-numeric: tabular-nums; }
.yard-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.yard-flow li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.yard-flow li + li::before {
  content: "";
  width: 14px;
  height: 1px;
  margin-left: -4px;
  background: rgba(122, 180, 255, .55);
}
.yard-pulse {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.yard-pulse div {
  padding: 10px 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .35s ease, border-color .35s ease;
}
.yard-pulse div.is-flash {
  background: rgba(0, 68, 168, .38);
  border-color: rgba(122, 180, 255, .45);
}
.yard-pulse dt {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.yard-pulse dd { font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .04em; }

.yard-feed {
  position: relative;
  height: 40px;
  background: #040E22;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.yard-feed::before,
.yard-feed::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}
.yard-feed::before { left: 0; background: linear-gradient(90deg, #040E22, transparent); }
.yard-feed::after { right: 0; background: linear-gradient(270deg, #040E22, transparent); }
.yard-feed-view { height: 100%; overflow: hidden; }
.yard-feed-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: uf-marquee 36s linear infinite;
}
.yard-feed:hover .yard-feed-track { animation-play-state: paused; }
.yard-feed-seq { display: flex; align-items: center; height: 100%; }
.yard-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  color: rgba(255,255,255,.82);
  text-decoration: none !important;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.06);
  font-size: .78rem;
}
.yard-chip strong { font-weight: 700; color: #fff; }
.yard-chip em { font-style: normal; color: rgba(255,255,255,.48); }
.yard-chip span { color: var(--olive-on-dark); font-weight: 700; }
.yard-chip time { color: rgba(255,255,255,.42); font-variant-numeric: tabular-nums; }
.yard-chip.kind-vendido span { color: #E8A0A0; }
.yard-chip:hover { background: rgba(255,255,255,.04); }

.yard-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: 16px;
}
.yard-meta .result-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 600;
}
.yard-refresh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 10px;
  border-radius: var(--r-full);
  background: var(--olive-pale);
  color: var(--olive-h);
  font-size: .8rem;
  font-weight: 700;
}
.yard-refresh[hidden] { display: none; }
.yard-refresh button {
  border: 0;
  background: var(--olive);
  color: #fff;
  border-radius: var(--r-full);
  padding: 4px 10px;
  cursor: pointer;
  font-weight: 700;
}
.vcard-live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 4px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--olive-pale);
  color: var(--olive-h);
  font-size: .78rem;
  font-weight: 700;
}
.vcard-live.is-deal { background: var(--warn-pale); color: var(--warn); }
.vcard-live.is-sold { background: var(--danger-pale); color: var(--danger); }
.vcard-live + .live-now.is-compact { margin-top: 6px; }

.featured-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.featured-grid .vcard.is-lead { grid-row: 1 / span 2; height: 100%; }
.vitrine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.vcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.vcard.is-sold .vcard-photo,
.vcard.is-sold .vcard-car { filter: grayscale(1); }
.vcard.is-held .vcard-photo,
.vcard.is-held .vcard-car { filter: grayscale(.62) sepia(.18) saturate(.55) contrast(.94); }
.vcard-media {
  position: relative;
  height: 210px;
  background: #08152C;
  text-decoration: none !important;
  overflow: hidden;
  display: block;
}
.vcard-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.vcard:hover .vcard-photo { transform: scale(1.045); }
.vcard-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 26, .82));
  z-index: 1;
  pointer-events: none;
}
.vcard.is-featured .vcard-media { height: 230px; }
.vcard.is-lead .vcard-media { height: 100%; min-height: 520px; }
.vcard-loc {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.vcard-loc i, .vcard-loc svg { width: 14px; height: 14px; color: var(--olive-on-dark); flex-shrink: 0; }
.vcard-car {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 82%;
  aspect-ratio: 360 / 140;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--paint) 82%, #fff) 0%, var(--paint) 48%, color-mix(in srgb, var(--paint) 72%, #000) 100%);
  -webkit-mask: var(--sil) center / contain no-repeat;
  mask: var(--sil) center / contain no-repeat;
  z-index: 2;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.28));
}
.vcard-mark {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 72px;
  opacity: .28;
  z-index: 2;
}
.vcard-badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; gap: 6px; flex-wrap: wrap; }
.vcard-body { padding: 16px 18px 8px; flex: 1; }
.vcard-kicker { font-size: .7rem; color: var(--text-4); letter-spacing: .04em; }
.vcard-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; letter-spacing: -.03em; margin-top: 2px; }
.vcard-title a { color: inherit; text-decoration: none; }
.vcard-title a:hover { color: var(--olive); }
.vcard-where {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  font-size: .78rem;
  color: var(--text-2);
}
.vcard-where i, .vcard-where svg { width: 15px; height: 15px; color: var(--olive); flex-shrink: 0; margin-top: 2px; }
.vcard-where strong { display: block; font-size: .82rem; }
.vcard-where em { font-style: normal; color: var(--text-3); font-size: .74rem; }
.vcard-specs { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 12px; font-size: .74rem; color: var(--text-3); }
.vcard-specs span { display: inline-flex; align-items: center; gap: 5px; }
.vcard-specs i, .vcard-specs svg { width: 13px; height: 13px; }
.vcard-ftr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px 16px;
}
.price-stack { line-height: 1.15; }
.price-stack p { margin: 0; }
.price-fipe {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-4);
}
.price-fipe span { margin-right: 4px; }
.price-fipe s { text-decoration: line-through; text-decoration-thickness: 1.5px; color: var(--text-3); }
.price-now {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-1);
}
.price-delta {
  margin-top: 3px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-3);
}
.price-stack-sm .price-now { font-size: 1.05rem; }
.price-stack-md .price-now { font-size: 1.28rem; }
.price-stack-lg .price-now { font-size: 2rem; }
.price-stack-lg .price-fipe { font-size: .78rem; }
.price-stack-lg .price-delta { font-size: .82rem; }
.price-stack.is-below .price-delta { color: var(--ok); }
.price-stack.is-above .price-delta { color: var(--warn); }

.deal-card {
  margin: 0 0 18px;
  padding: 14px 16px 12px;
  background: var(--navy-pale);
  border: 1px solid var(--border);
  border-radius: var(--r-speed);
}
.deal-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 10px;
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 8px;
  margin: 0;
}
.deal-grid dt {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-4);
}
.deal-grid dd {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: -.03em;
  margin: 2px 0 0;
  color: var(--text-1);
  word-break: break-word;
}
.deal-grid s { color: var(--text-3); text-decoration-thickness: 1.5px; }
.deal-card.is-below [data-deal-margin] { color: var(--ok); }
.deal-card.is-above [data-deal-margin] { color: var(--warn); }
.deal-card.has-no-fipe [data-deal-fipe-row],
.deal-card.has-no-fipe [data-deal-margin-row] { display: none; }
.deal-card.has-no-fipe .deal-grid { grid-template-columns: 1fr; }
.deal-calc {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-md);
}
.deal-calc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.deal-calc-head .deal-kicker { margin-bottom: 2px; }
.deal-calc-head > div > p:last-child {
  margin: 0;
  font-size: .74rem;
  color: var(--text-3);
}
.deal-fixed {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-md);
  padding: 4px 8px;
  color: var(--olive);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}
.deal-calc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.deal-calc-list li[hidden] { display: none; }
.deal-calc-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
}
.deal-calc-list li em {
  font-style: normal;
  font-weight: 600;
  color: var(--text-4);
  text-transform: none;
  letter-spacing: 0;
}
.deal-calc-list strong { color: var(--text-1); }
.deal-calc-list .is-minus strong { color: var(--text-3); }
.deal-calc-saldo {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.deal-calc-saldo strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  letter-spacing: -.03em;
}
.deal-calc.is-ok .deal-calc-saldo strong { color: var(--ok); }
.deal-calc.is-credit .deal-calc-saldo strong { color: var(--olive); }
.deal-calc.is-over .deal-calc-saldo strong { color: var(--warn); }
.deal-progress {
  height: 7px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(6, 20, 49, .1);
}
.deal-progress[hidden] { display: none; }
.deal-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--olive);
  transition: width .18s ease;
}
.deal-calc.is-credit .deal-progress span { background: var(--olive); }
.deal-calc.is-over .deal-progress span { background: var(--warn); }
[data-pay-complement-wrap][hidden] { display: none; }
.deal-progress-label {
  margin: 7px 0 0;
  font-size: .73rem;
  font-weight: 700;
  color: var(--text-3);
}
.deal-calc-note,
.deal-trade-note {
  margin: 8px 0 0;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-3);
  line-height: 1.4;
}
.deal-calc-note[hidden],
.deal-trade-note[hidden],
.pay-group[hidden],
.pay-hint[hidden],
.pay-troca[hidden] { display: none; }
.pay-group,
.pay-troca { display: grid; gap: 12px; }
.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-hint {
  margin: -4px 0 0;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-3);
  line-height: 1.4;
}
.mbr-modal label[hidden],
.proposta label[hidden] { display: none; }

.how-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.how-grid li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0 0 22px;
  position: relative;
  overflow: hidden;
}
.how-grid li img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  margin-bottom: 16px;
}
.how-grid li .how-n,
.how-grid li h3,
.how-grid li p { padding-inline: 20px; }
.how-n {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--olive);
  letter-spacing: -.04em;
}
.how-grid h3 { margin: 10px 0 8px; font-size: 1.05rem; }
.how-grid p { color: var(--text-3); font-size: .9rem; }

.pillars-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; }
.pillars-photo { border-radius: var(--r-xl); overflow: hidden; min-height: 420px; }
.pillars-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px 22px;
  border-top: 4px solid var(--olive);
}
.pillar i, .pillar svg { width: 26px; height: 26px; color: var(--olive); }
.pillar h3 { margin: 12px 0 8px; }
.pillar p { color: var(--text-3); font-size: .9rem; }

.cta-band {
  position: relative;
  background: #061431;
  padding: 92px 0;
  color: #fff;
  overflow: hidden;
}
.cta-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4,10,26,.88) 0%, rgba(6,20,49,.55) 100%);
}
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.cta-inner .display { font-size: clamp(1.8rem, 3vw, 2.5rem); max-width: 16ch; }

.filter-side {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  z-index: 6;
  max-height: calc(100vh - var(--header-h) - 24px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  scrollbar-width: thin;
}
.filter-dock {
  display: flex;
  flex-direction: column;
}
.filter-dock label span {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 6px;
}
.filter-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.filter-side-head strong {
  font-size: .92rem;
  font-weight: 800;
}
.filter-side-tools { display: flex; align-items: center; gap: 8px; }
.filter-clear {
  font-size: .78rem;
  font-weight: 700;
  color: var(--olive);
  text-decoration: none !important;
}
.filter-close {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--bg);
  border-radius: 8px;
  color: var(--text-2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.filter-close svg { width: 18px; height: 18px; }
.filter-search { position: relative; margin: 12px 14px 4px; }
.filter-search i, .filter-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-4); }
.filter-search .field { padding-left: 38px; }
.filter-kicker {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-4);
  margin: 8px 0 6px;
}
.filter-acc {
  border-top: 1px solid var(--border);
}
.filter-acc > summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-acc > summary::-webkit-details-marker { display: none; }
.filter-acc > summary::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.6px solid var(--text-4);
  border-bottom: 1.6px solid var(--text-4);
  transform: rotate(45deg);
  transition: transform var(--ease);
}
.filter-acc[open] > summary::after { transform: rotate(-135deg); }
.filter-acc-body { padding: 0 14px 14px; display: grid; gap: 10px; }
.filter-acc-split { grid-template-columns: 1fr 1fr; }
.filter-opts { display: grid; gap: 2px; }
.filter-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 4px 6px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none !important;
}
.filter-opt::before {
  content: '';
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1.5px solid var(--border-md);
  border-radius: 50%;
  background: #fff;
}
.filter-opt.is-check::before { border-radius: 4px; }
.filter-opt:hover { background: var(--bg); color: var(--olive); }
.filter-opt.is-on {
  background: var(--olive-pale);
  color: var(--olive-h);
}
.filter-opt.is-on::before {
  border-color: var(--olive);
  background: radial-gradient(circle at 50% 50%, var(--olive) 0 4px, #fff 5px);
}
.filter-opt.is-check.is-on::before {
  background: var(--olive);
  box-shadow: inset 0 0 0 2px #fff;
}
.filter-flags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.filter-side-foot {
  display: none;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  position: sticky;
  bottom: 0;
  background: #fff;
}
.flag-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 6px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-2);
  font-size: .74rem;
  font-weight: 800;
  text-decoration: none !important;
}
.flag-chip:hover { border-color: var(--olive-light); color: var(--olive); }
.flag-chip.is-on {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}
.flag-chip img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(6, 20, 49, .12);
}
.flag-chip-br {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, #009C3B 0 35%, #FFDF00 35% 65%, #002776 65%);
  box-shadow: 0 0 0 1px rgba(6, 20, 49, .12);
}
.filter-price { display: grid; gap: 10px; }
.filter-price-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.filter-price-head strong {
  font-size: .86rem;
  color: var(--text-1);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.price-slider {
  --thumb: 20px;
  --bar: 6px;
  position: relative;
  height: var(--thumb);
  margin: 2px 1px 6px;
}
.price-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: var(--bar);
  transform: translateY(-50%);
  border-radius: 99px;
  background: var(--navy-pale);
  pointer-events: none;
}
.price-track i {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--olive);
  border-radius: inherit;
}
.price-slider input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: var(--thumb);
  margin: 0;
  padding: 0;
  background: none;
  outline: none;
  overflow: visible;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}
.price-slider input[type="range"]::-webkit-slider-runnable-track {
  height: var(--thumb);
  background: transparent;
  border: 0;
}
.price-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  width: var(--thumb);
  height: var(--thumb);
  margin-top: 0;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--olive);
  box-shadow: 0 1px 4px rgba(6, 20, 49, .2);
  cursor: pointer;
}
.price-slider input[type="range"]::-moz-range-track {
  height: var(--thumb);
  background: transparent;
  border: 0;
}
.price-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: var(--thumb);
  height: var(--thumb);
  border: 2.5px solid var(--olive);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(6, 20, 49, .2);
  cursor: pointer;
}
.price-slider input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(0, 68, 168, .18);
}
.price-slider input[type="range"]:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(0, 68, 168, .18);
}
.filter-active {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.filter-active-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--olive-pale);
  color: var(--olive-h);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none !important;
}
.filter-active-chip span { font-size: 1rem; line-height: 1; }
.result-count { font-size: .82rem; color: var(--text-3); margin-bottom: 16px; }

.empty {
  text-align: center;
  padding: 64px 20px;
  background: #fff;
  border: 1px dashed var(--border-md);
  border-radius: var(--r-lg);
}
.empty i, .empty svg { width: 36px; height: 36px; color: var(--olive); margin-bottom: 12px; }
.empty h2 { margin-bottom: 8px; }

.ficha { padding: calc(var(--header-h) + 28px) 0 80px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .8rem; color: var(--text-4); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-3); }
.ficha-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.studio {
  position: relative;
  height: 420px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 20%, color-mix(in srgb, var(--paint) 30%, transparent), transparent 52%),
    linear-gradient(155deg, #071226, #12305C 55%, #061431);
}
.studio.has-photo::after { display: none; }
.studio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ficha.is-sold .studio-photo,
.ficha.is-sold .studio-car { filter: grayscale(1); }
.ficha.is-held .studio-photo,
.ficha.is-held .studio-car { filter: grayscale(.62) sepia(.18) saturate(.55) contrast(.94); }
.studio::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-12deg, transparent, transparent 22px, rgba(255,255,255,.04) 22px, rgba(255,255,255,.04) 24px);
}
.studio-car {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 78%;
  aspect-ratio: 360 / 140;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--paint) 84%, #fff), var(--paint) 50%, color-mix(in srgb, var(--paint) 70%, #000));
  -webkit-mask: var(--sil) center / contain no-repeat;
  mask: var(--sil) center / contain no-repeat;
  z-index: 2;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,.35));
}
.studio-mark { position: absolute; left: 24px; bottom: 20px; width: 110px; opacity: .28; z-index: 2; }
.studio-badges { position: absolute; top: 18px; left: 18px; z-index: 3; display: flex; gap: 8px; }
.studio-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.studio-thumb {
  display: block;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #061431;
  cursor: pointer;
  aspect-ratio: 16 / 10;
}
.studio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-thumb.is-on,
.studio-thumb:hover { border-color: var(--olive); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.spec-grid div { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.spec-grid dt { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-4); }
.spec-grid dd { font-weight: 600; margin-top: 2px; }
.ficha-bio { margin-top: 18px; color: var(--text-3); white-space: pre-line; }
.ficha-facts { margin: 16px 0 0; display: grid; gap: 10px; }
.ficha-facts div {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px;
}
.ficha-facts dt {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-4);
}
.ficha-facts dd { font-weight: 600; margin-top: 2px; }
.house-rules {
  margin: 22px 0 0; padding: 16px 18px;
  background: #F8FAFC; border: 1px solid var(--border); border-radius: 14px;
}
.house-rules-k {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive); margin: 0 0 10px;
}
.house-rules ul { list-style: none; display: grid; gap: 10px; margin: 0; padding: 0; }
.house-rules li { display: grid; gap: 2px; }
.house-rules strong { font-size: .88rem; }
.house-rules span { color: var(--text-3); font-size: .82rem; line-height: 1.4; }
.house-rules.is-compact { margin: 12px 0 16px; padding: 12px 14px; }
.house-rules.is-compact ul { gap: 8px; }
.section-how .house-rules { margin-top: 28px; }
.ficha-side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.ficha-kicker { font-size: .75rem; color: var(--text-4); }
.ficha-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; font-style: italic; letter-spacing: -.04em; line-height: 1.15; margin: 6px 0 10px; }
.ficha-side .price-stack { margin: 4px 0 16px; }
.where-card {
  margin: 20px 0;
  padding: 16px;
  background: var(--bg);
  border-radius: 14px;
}
.where-label { display: flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--olive); }
.where-label i, .where-label svg { width: 14px; height: 14px; }
.where-city { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 1.25rem; margin-top: 8px; }
.where-street { font-weight: 600; }
.where-meta { font-size: .8rem; color: var(--text-3); margin-bottom: 12px; }
.where-map { border-radius: 12px; overflow: hidden; height: 180px; margin-bottom: 12px; border: 1px solid var(--border); }
.where-map iframe { width: 100%; height: 100%; border: 0; }
.proposta { display: grid; gap: 10px; }
.proposta label { font-size: .8rem; font-weight: 600; color: var(--text-2); display: grid; gap: 6px; }
.ficha-actions { display: grid; gap: 14px; }
.live-now {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 10px 12px;
  background: var(--olive-pale);
  border-radius: 10px;
  color: var(--olive-h);
  font-size: .86rem;
  font-weight: 600;
}
.live-now.is-compact {
  margin: 12px 0 4px;
  padding: 8px 10px;
  font-size: .78rem;
}
.live-now strong { font-weight: 800; }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 0 rgba(0, 68, 168, .55);
  animation: live-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 68, 168, .45); }
  70% { box-shadow: 0 0 0 8px rgba(0, 68, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 68, 168, 0); }
}
.side-note { font-size: .88rem; color: var(--text-3); margin: 12px 0; }
.banner-ok, .banner-err {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: .9rem;
  font-weight: 600;
}
.banner-ok { background: var(--ok-pale); color: #146C3A; border: 1px solid #B7E4C7; }
.banner-err { background: var(--danger-pale); color: var(--danger); border: 1px solid #F5B7B7; }

.voices-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  max-width: none;
  margin-bottom: 0;
  padding-bottom: 28px;
}
.voices-title .display {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}
.voices-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 22px;
  border-left: 1px solid rgba(122,180,255,.3);
}
.voices-summary strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.8rem;
  line-height: .85;
  letter-spacing: -.06em;
  color: var(--olive-on-dark);
}
.voices-summary span {
  font-family: var(--font-wide);
  font-size: 10px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.voices-viewport { overflow: hidden; }
.voices-track {
  display: flex;
  gap: 18px;
  transition: transform 420ms ease;
  will-change: transform;
}
.voice-n {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--olive-on-dark);
}
.voice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 230px;
  margin: 0;
  padding: 26px 24px 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-speed);
}
.voice-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--olive), transparent 75%);
}
.voice-card:nth-child(3n + 2) {
  background: linear-gradient(145deg, rgba(0,68,168,.18), rgba(255,255,255,.025));
}
.voice-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}
.voice-card .voice-by {
  margin-top: auto;
  padding-top: 20px;
}
.voice-by {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
  font-style: normal;
}
.voice-name {
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.voice-place { font-size: .8rem; color: rgba(255,255,255,.4); }
.voice-place::before {
  content: "·";
  margin-right: 10px;
  color: rgba(255,255,255,.28);
}
.voices-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}
.voices-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-speed);
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}
.voices-btn:hover { background: rgba(0,68,168,.35); }
.voices-dots { display: flex; gap: 8px; }
.voices-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  cursor: pointer;
}
.voices-dot.is-on { background: var(--olive-on-dark); width: 22px; }
.nps-page { background: var(--bg); padding-top: calc(var(--header-h) + 48px); }
.nps-wrap { max-width: 720px; }
.nps-form { margin-top: 28px; }
.nps-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nps-n { cursor: pointer; }
.nps-n input { position: absolute; opacity: 0; pointer-events: none; }
.nps-n span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-speed);
  background: #fff;
  font-weight: 800;
  color: var(--navy);
}
.nps-n input:checked + span,
.nps-n:hover span {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}
.nps-ends {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 22px;
  font-size: .78rem;
  color: var(--text-3);
}
.nps-comment {
  display: block;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: .88rem;
}
.nps-comment textarea { margin-top: 8px; resize: vertical; }

.site-footer {
  background: var(--navy-h);
  color: rgba(255,255,255,.78);
  padding: 56px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .85fr .8fr .7fr; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 12px; }
.footer-logo { width: 64px; height: auto; display: block; }
.footer-wordmark {
  font-family: var(--font-wide);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--olive-on-dark);
  line-height: 1;
}
.footer-wordmark b { color: #fff; font-weight: 800; }
.footer-tag { font-family: var(--font-wide); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--olive-on-dark); font-weight: 700; }
.footer-bio { margin-top: 12px; font-size: .88rem; color: rgba(255,255,255,.58); max-width: 36ch; }
.footer-label { font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 12px; }
.site-footer a { display: block; color: rgba(255,255,255,.82); text-decoration: none; margin-bottom: 8px; }
.site-footer a:hover, .site-footer a.is-on { color: #fff; }
.footer-note, .footer-ufs { font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  font-size: .75rem;
  color: rgba(255,255,255,.42);
}
.footer-copy { display: grid; gap: 4px; }
.footer-cnpj { color: rgba(255,255,255,.55); }

@media (max-width: 1080px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid .vcard.is-lead { grid-row: auto; grid-column: 1 / -1; }
  .vcard.is-lead .vcard-media { min-height: 320px; }
  .vitrine-grid, .how-grid, .pillar-grid { grid-template-columns: 1fr 1fr; }
  .voice-card { flex-basis: calc((100% - 18px) / 2); }
  .pillars-layout { grid-template-columns: 1fr; }
  .yard-board { grid-template-columns: 1fr; gap: 18px; }
  .yard-toolbar {
    position: sticky;
    top: var(--header-h);
    z-index: 5;
    background: var(--bg);
    padding: 10px 0 8px;
    margin: 0 0 10px;
  }
  .filter-side {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(360px, 92vw);
    max-height: none;
    z-index: 50;
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
    transform: translateX(-105%);
    transition: transform .28s ease;
    box-shadow: var(--sh-lg);
  }
  body.filter-open .filter-side { transform: none; }
  .filter-close, .filter-side-foot, .yard-filter-open, .filter-scrim { display: flex; }
  .filter-scrim { display: none; }
  body.filter-open .filter-scrim { display: block; }
  .yard-list .vitrine-grid { grid-template-columns: 1fr 1fr; }
  .yard-toolbar { align-items: stretch; }
  .yard-toolbar .filter-sort { width: 100%; min-width: 0; }
  .yard-pulse { grid-template-columns: repeat(3, 1fr); }
  .ficha-grid { grid-template-columns: 1fr; }
  .ficha-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .header-wordmark { display: none; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .header-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: #061431;
    flex-direction: column;
    padding: 28px 24px;
    gap: 18px;
  }
  .header-nav.is-open { display: flex; }
  .header-nav a { font-size: 1.12rem; gap: 12px; }
  .header-nav a svg { width: 20px; height: 20px; }
  .header-sign { margin-left: auto; }
  .header-sign::before { display: none; }
  .sign-name { display: none; }
  .sign-up { padding: 8px 14px; }
  .hero { min-height: 88vh; padding-bottom: 48px; }
  .hero-pulse {
    max-width: 100%;
    gap: 4px 8px;
    padding: 8px 12px;
    font-size: .8rem;
    line-height: 1.35;
  }
  .hero-pulse-sep { display: none; }
  .hero-pulse-note {
    flex: 1 0 100%;
    padding-left: 16px;
    white-space: normal;
  }
  .hero-stats { flex-direction: column; gap: 14px; }
  .uf-ticker { height: 36px; }
  .uf-chip { height: 36px; padding: 0 12px; }
  .yard-pulse { grid-template-columns: 1fr 1fr; }
  .yard-feed { height: 38px; }
  .featured-grid, .vitrine-grid, .how-grid, .pillar-grid, .footer-grid { grid-template-columns: 1fr; }
  .vcard.is-lead .vcard-media { min-height: 260px; }
  .yard-list .vitrine-grid { grid-template-columns: 1fr; }
  .yard-toolbar .result-count { flex: 1 1 100%; }
  .voices-head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .voices-summary { padding-left: 0; border-left: 0; }
  .voice-card { flex-basis: 100%; min-height: 210px; }
  .nps-n span { width: 38px; height: 38px; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .studio { height: 260px; }
  .footer-bottom { flex-direction: column; }
  .deal-grid { grid-template-columns: 1fr; }
  .pay-row { grid-template-columns: 1fr; }
}

.mbr-modal[hidden] { display: none; }
.mbr-modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; }
.mbr-modal-backdrop { position: absolute; inset: 0; background: rgba(4, 10, 26, .62); backdrop-filter: blur(8px); }
.mbr-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 26px;
  box-shadow: 0 24px 64px rgba(4, 10, 26, .28);
}
.mbr-modal-x {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px; border: 0; background: transparent;
  font-size: 24px; color: var(--text-3); cursor: pointer;
}
.mbr-modal-title { font-family: var(--font-display); font-style: italic; font-size: 1.7rem; letter-spacing: -.04em; margin: 4px 0 8px; }
.mbr-modal-lead { color: var(--text-3); font-size: .92rem; margin-bottom: 18px; }
.bot-slide { display: grid; gap: 10px; }
.bot-slide-hint {
  margin: 0;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-4);
}
.bot-slide-track {
  position: relative;
  height: 56px;
  border: 1px solid #D8DEE8;
  border-radius: 999px;
  background: #EEF2F7;
  box-shadow: inset 0 1px 3px rgba(6, 20, 49, .08);
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.bot-slide-track::after {
  content: "›››";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-54%);
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #A8B4C4;
  pointer-events: none;
  animation: bot-chev 1.5s ease-in-out infinite;
}
@keyframes bot-chev {
  0%, 100% { opacity: .35; }
  50% { opacity: .8; }
}
.bot-slide-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48px;
  background: linear-gradient(90deg, rgba(0, 68, 168, .12), rgba(26, 115, 232, .22));
  pointer-events: none;
}
.bot-slide-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 20px 0 56px;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: -.01em;
  pointer-events: none;
  background: linear-gradient(90deg, #8A97A8 0%, #8A97A8 38%, #061431 50%, #8A97A8 62%, #8A97A8 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: bot-shine 2.8s linear infinite;
}
@keyframes bot-shine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.bot-slide-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.34), transparent 36%),
    linear-gradient(180deg, #1A73E8, #0044A8);
  box-shadow: 0 8px 18px rgba(0, 68, 168, .28), 0 1px 0 rgba(255,255,255,.25) inset;
  cursor: grab;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.bot-slide-knob::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 19px auto 0;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}
.bot-slide-knob:hover { transform: scale(1.03); }
.bot-slide-knob:active,
.bot-slide.is-drag .bot-slide-knob {
  cursor: grabbing;
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 68, 168, .36), 0 1px 0 rgba(255,255,255,.3) inset;
}
.bot-slide.is-drag .bot-slide-track::after,
.bot-slide.is-done .bot-slide-track::after { display: none; }
.bot-slide.is-done .bot-slide-hint { color: var(--ok); }
.bot-slide.is-done .bot-slide-track {
  border-color: #B7E4C7;
  background: #F3FBF6;
  box-shadow: inset 0 1px 2px rgba(27, 138, 76, .06);
}
.bot-slide.is-done .bot-slide-fill {
  width: 100% !important;
  background: linear-gradient(90deg, #E6F6EC, #D8F0E2);
}
.bot-slide.is-done .bot-slide-label {
  animation: none;
  background: none;
  color: var(--ok);
  -webkit-background-clip: unset;
  background-clip: unset;
}
.bot-slide.is-done .bot-slide-knob {
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.3), transparent 36%),
    linear-gradient(180deg, #2AA05C, #1B8A4C);
  box-shadow: 0 6px 14px rgba(27, 138, 76, .22);
  cursor: default;
  transform: none;
}
.bot-slide.is-done .bot-slide-knob::after {
  width: 12px;
  height: 7px;
  margin-top: 19px;
  border-right: 0;
  border-top: 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.mbr-modal form { display: grid; gap: 12px; }
.mbr-modal label { font-size: .8rem; font-weight: 600; display: grid; gap: 6px; color: var(--text-2); }
.mbr-modal .opt { font-weight: 500; color: var(--text-4); text-transform: lowercase; letter-spacing: 0; }
.mbr-modal-mail { font-weight: 700; color: var(--olive); }
.mbr-cpf-msg { font-size: .78rem; color: var(--olive); margin-top: -6px; }
.email-suggest { position: relative; }
.email-suggest-list {
  position: fixed;
  z-index: 90;
  background: #fff;
  border: 1.5px solid var(--border-md);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(6, 20, 49, .12);
  overflow: auto;
  max-height: 220px;
}
.email-suggest-list[hidden] { display: none; }
.email-suggest-list button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  font-size: .88rem;
  color: var(--text-1);
  cursor: pointer;
}
.email-suggest-list button:hover,
.email-suggest-list button.is-on { background: var(--olive-pale); color: var(--olive-h); }

.page-hero-legal {
  padding: calc(var(--header-h) + 40px) 0 36px;
  background: linear-gradient(160deg, #061431 0%, #0A1F4A 100%);
}
.page-hero-legal .lead { max-width: 62ch; }
.legal-updated {
  margin-top: 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.48);
}
.legal-page { padding-top: 48px; padding-bottom: 72px; }
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 68ch);
  gap: 48px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.legal-nav-label {
  font-family: var(--font-wide);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 4px;
}
.legal-nav a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}
.legal-nav a:hover { background: var(--navy-pale); color: var(--navy); }
.legal-nav a.is-on { background: var(--olive-pale); color: var(--olive-h); }
.legal-doc { color: var(--text-2); font-size: 1rem; }
.legal-doc h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--text-1);
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p, .legal-doc li { margin-bottom: 12px; }
.legal-doc ul, .legal-doc ol { padding-left: 1.2em; margin-bottom: 16px; }
.legal-doc li { padding-left: 4px; }
.legal-doc a { font-weight: 600; }
.legal-doc code {
  font-size: .86em;
  background: var(--navy-pale);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--navy);
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: #040E22;
  color: rgba(255,255,255,.82);
  border-top: 2px solid var(--olive);
  box-shadow: 0 -8px 32px rgba(4, 10, 26, .28);
  padding: 16px 0;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-bar p { margin: 0; font-size: .88rem; max-width: 72ch; line-height: 1.5; }
.cookie-bar a { color: var(--olive-on-dark); font-weight: 700; text-decoration: underline; }
.cookie-bar a:hover { color: #fff; }
.cookie-bar-ok { flex-shrink: 0; min-width: 132px; }
body.has-cookie { padding-bottom: 88px; }

@media (max-width: 1080px) {
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-nav { position: static; grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .cookie-bar-inner { flex-direction: column; align-items: stretch; }
  .cookie-bar-ok { width: 100%; }
  body.has-cookie { padding-bottom: 148px; }
}


/* mbr-promo-countdown */
.price-stack.is-promo .price-now { color: var(--ok, #1b8a4c); }
.price-was {
  margin: 0 0 2px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.price-was s {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-promo-tag {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ok, #1b8a4c) 18%, transparent);
  color: var(--ok, #1b8a4c);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-countdown {
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--warn, #b45309);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.price-countdown-label { color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .65rem; }
.price-countdown [data-promo-clock] {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display, inherit);
  letter-spacing: .02em;
}
.price-stack-lg .price-countdown { font-size: .85rem; }
.price-stack-lg .price-was { font-size: .9rem; }

.hero-sup { min-height: 92vh; }
.sup-plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.sup-plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 320px;
  box-shadow: 0 10px 28px rgba(6, 20, 49, .04);
}
.sup-plan.is-hot {
  border-color: var(--olive);
  box-shadow: 0 16px 40px rgba(0, 68, 168, .12);
}
.sup-hot {
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
}
.sup-plan h3 { font-family: var(--font-display); font-style: italic; font-size: 1.65rem; line-height: 1.1; margin: 0; letter-spacing: -.03em; }
.sup-plan p { line-height: 1.65; color: var(--text-3); }
.sup-price { font-weight: 800; color: var(--olive); font-size: 1.12rem; letter-spacing: -.02em; }
.sup-plan .btn { margin-top: auto; }
.sup-plan.is-custom { border-color: var(--olive); background: var(--olive-pale); }
.sup-form-wrap { max-width: 640px; }
.sup-form { display: grid; gap: 14px; }
.sup-split { display: grid; grid-template-columns: 1fr 88px; gap: 12px; }
.sup-form .field, .sup-form textarea.field {
  width: 100%;
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 10px 12px;
  font: 500 1rem Inter, sans-serif;
  background: #fff;
}
.sup-form label { display: grid; gap: 6px; font-size: .82rem; font-weight: 700; color: var(--text-2); }
.sup-ok { background: var(--ok-pale); border-radius: 16px; padding: 24px; display: grid; gap: 12px; }
.login-err, .sup-err { color: var(--danger); font-weight: 700; }
.sup-tease {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 900px) {
  .sup-plans { grid-template-columns: 1fr 1fr; }
  .sup-tease { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sup-plans, .sup-split { grid-template-columns: 1fr; }
}
