/* ============================================================
   ONE·BOSS — estilos globais
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-alt: #141414;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-border: #ffffff14;
  --text: #f4f1ea;
  --text-dim: #b9b2a3;
  --text-dimmer: #8c8577;

  --gold: #c79a56;
  --gold-light: #e8ca94;
  --gold-deep: #8a6a30;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.gradient-text {
  background: linear-gradient(115deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Ghost watermark (título gigante atrás) ---------- */
.ghost-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 16vw, 13rem);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(199, 154, 86, 0.09);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #1a1204;
  box-shadow: 0 14px 34px -16px rgba(199, 154, 86, 0.65);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(199, 154, 86, 0.85);
}

.btn--ghost {
  background: transparent;
  border-color: var(--surface-border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 0.76rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: gap 0.25s ease, color 0.25s ease;
}

.pill-link:hover {
  gap: 13px;
  color: var(--gold);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  padding: 13px 0;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--surface-border);
}

.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--text);
  flex-shrink: 0;
}

.brand .dot {
  color: var(--gold);
  margin: 0 4px;
}

/* botão hamburguer — esquerda (estrutura KIST) */
.nav__menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav__menu-icon { width: 20px; height: 14px; flex-shrink: 0; }

/* busca — centro no desktop */
.nav__search-desktop { display: none; }

.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  padding: 10px 22px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-search:focus-within {
  border-color: rgba(199, 154, 86, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.nav-search svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-dim); }

.nav-search input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  min-width: 220px;
}

.nav-search input::placeholder { color: var(--text-dimmer); }

/* busca — pill mobile */
.nav__search-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  padding: 9px 14px;
  color: var(--text-dimmer);
  width: 100%;
  min-width: 0;
  text-align: left;
  cursor: pointer;
}

.nav__search-mobile svg { width: 15px; height: 15px; flex-shrink: 0; }

.nav__search-mobile span {
  font-size: 0.76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 860px) {
  .nav__search-desktop {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav__search-mobile { display: none; }
}

/* dropdown de busca (desktop) — abre logo abaixo da nav */
.nav-dsp-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-dsp-backdrop.is-open {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: auto;
}

.nav-dsp {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--bg-alt);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 28px 0 40px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-dsp.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.nav-dsp-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-dimmer);
  font-size: 0.85rem;
}

/* ─── MENU BACKDROP + OVERLAY (mega-menu com marcas, estrutura KIST) ─── */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.menu-backdrop.is-open {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 200;
  background: var(--bg-alt);
  border-right: 1px solid var(--surface-border);
  overflow: hidden;
  transform: translateX(-110%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.is-open { transform: translateX(0); }

.menu-panels { display: flex; height: 100%; width: 100%; }

.menu-panel { height: 100%; display: flex; flex-direction: column; flex-shrink: 0; }

.menu-panel--main { width: 300px; border-right: 1px solid var(--surface-border); }

.menu-panel--brands {
  width: 0;
  overflow: hidden;
  background: var(--bg-alt);
  border-right: 1px solid var(--surface-border);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.menu-panel--vehicles {
  width: 0;
  overflow: hidden;
  overflow-y: auto;
  background: var(--bg-alt);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.menu-overlay.brands-open { width: 520px; }
.menu-overlay.brands-open .menu-panel--brands { width: 220px; }
.menu-overlay.vehicles-open { width: 980px; }
.menu-overlay.vehicles-open .menu-panel--vehicles { width: 460px; }

.menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  padding: 22px 22px 8px;
  line-height: 1;
}

.menu-links { display: flex; flex-direction: column; padding: 6px 12px; }

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  text-align: left;
  border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease;
  text-decoration: none;
}

.menu-item:hover, .menu-item.active { background: rgba(255, 255, 255, 0.06); color: var(--gold-light); }

.menu-arrow { font-size: 15px; color: var(--text-dimmer); }

.menu-panel-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  padding: 22px 18px 10px;
}

.panel-back-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--surface-border);
  width: 100%;
  padding: 16px 22px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: var(--text-dim);
  cursor: pointer;
  text-align: left;
  flex-shrink: 0;
}

.panel-back-btn:hover { background: rgba(255, 255, 255, 0.04); }

.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(100% - 16px);
  margin: 0 8px;
  background: none;
  border: none;
  padding: 11px 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--text);
  text-align: left;
  border-radius: 6px;
  transition: background 0.18s ease;
}

.brand-item:hover, .brand-item.active { background: rgba(255, 255, 255, 0.06); }
.brand-item.active { color: var(--gold-light); font-weight: 600; }

.brand-item-logo { height: 26px; width: 36px; object-fit: contain; flex-shrink: 0; filter: brightness(0) invert(1); opacity: 0.85; }

.brand-item-initial {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold-light);
}

.brand-item-name { flex: 1; }
.brand-item-arrow { font-size: 14px; color: var(--text-dimmer); }

.menu-vehicle-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--surface-border);
  transition: background 0.2s ease;
}

.menu-vehicle-card:hover { background: rgba(255, 255, 255, 0.03); }

.menu-vehicle-img-wrap { display: flex; align-items: center; justify-content: center; padding: 4px 0 14px; }
.menu-vehicle-img-wrap .placeholder-car { height: 150px; border-radius: 6px; }

.menu-vehicle-name-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }

.menu-vehicle-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1204;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.menu-vehicle-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--text); margin: 0; }
.menu-vehicle-meta { display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--text-dimmer); margin-bottom: 10px; }
.menu-vehicle-price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.menu-vehicle-price { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-light); margin: 0; }
.menu-vehicle-price sup { font-size: 0.65rem; margin-right: 2px; }
.menu-vehicle-brand-logo { height: 26px; width: auto; max-width: 60px; object-fit: contain; opacity: 0.7; filter: brightness(0) invert(1); }
.menu-vehicles-empty { padding: 50px 18px; font-size: 0.8rem; color: var(--text-dimmer); text-align: center; }

.menu-footer {
  margin-top: auto;
  padding: 22px;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--text-dimmer);
  text-transform: uppercase;
  border-top: 1px solid var(--surface-border);
}

@media (max-width: 640px) {
  .menu-overlay, .menu-overlay.brands-open, .menu-overlay.vehicles-open { width: 100vw !important; }
  .menu-panels { position: relative; }
  .menu-panel--main { width: 100vw; border-right: none; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
  .menu-panel--brands, .menu-panel--vehicles {
    position: absolute;
    top: 0; left: 0;
    width: 100vw !important;
    height: 100%;
    transform: translateX(100vw);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .menu-overlay.brands-open .menu-panel--main { transform: translateX(-100vw); }
  .menu-overlay.brands-open .menu-panel--brands { transform: translateX(0); }
  .menu-overlay.vehicles-open .menu-panel--brands { transform: translateX(-100vw); }
  .menu-overlay.vehicles-open .menu-panel--vehicles { transform: translateX(0); }
  .panel-back-btn { display: flex; }
}

/* ─── BUSCA MOBILE (overlay full-screen) ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.is-open { transform: translateY(0); }

.search-overlay-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--surface-border);
  flex-shrink: 0;
}

.search-overlay-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 11px 16px;
}

.search-overlay-field svg { width: 17px; height: 17px; color: var(--text-dimmer); flex-shrink: 0; }

.search-overlay-field input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
}

.search-overlay-field input::placeholder { color: var(--text-dimmer); }

.search-overlay-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--text-dim);
  padding: 4px 6px;
  line-height: 1;
  flex-shrink: 0;
}

.search-overlay-results { flex: 1; overflow-y: auto; padding: 20px 0; }
.search-overlay-empty { text-align: center; padding: 60px 20px; color: var(--text-dimmer); font-size: 0.85rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% -10%, rgba(199, 154, 86, 0.16), transparent 60%), linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 55%, #050505 100%);
  z-index: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media .placeholder-car {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.15) 0%, rgba(10, 9, 8, 0.55) 55%, #0a0a0a 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(50px, 7vw, 90px);
}

.hero__eyebrow {
  color: var(--gold-light);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: 1.03;
  margin: 20px 0 0;
  max-width: 16ch;
}

.hero__sub {
  margin: 26px 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--text-dim);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero__scroll {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dimmer);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

@media (min-width: 780px) {
  .hero__scroll { display: flex; }
}

/* ---------- Hero: slider (banner de vídeo vazio até vocês produzirem) ---------- */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide__video-slot {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, #1a1a1a 0%, #0d0d0d 70%);
  display: grid;
  place-items: center;
}

.hero-slide__play {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1.5px solid rgba(199, 154, 86, 0.55);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  animation: heroPlayPulse 2.6s ease-in-out infinite;
}

.hero-slide__play svg { margin-left: 4px; }

@keyframes heroPlayPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 154, 86, 0.25); }
  50% { box-shadow: 0 0 0 16px rgba(199, 154, 86, 0); }
}

.hero-slide__video-note {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px dashed rgba(199, 154, 86, 0.4);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  white-space: nowrap;
}

@media (min-width: 780px) {
  .hero-slide__video-note { bottom: 110px; }
}

.hero__arrows {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
}

.hero__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid var(--surface-border);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

@media (hover: hover) {
  .hero__arrow:hover { border-color: var(--gold); background: rgba(199, 154, 86, 0.12); }
}

.hero__card {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 84px;
  background: rgba(10, 9, 8, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}

.hero__go {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  justify-content: center;
}

@media (min-width: 780px) {
  .hero__card { right: auto; max-width: 380px; bottom: 28px; left: 28px; }
  .hero__go { left: auto; right: 28px; bottom: 28px; }
}

.hero__card-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__card-model {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 4px;
}

.hero__card-tagline {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--text-dim);
}

.hero__card-meta {
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--text-dimmer);
}

.hero__card-go {
  display: inline-flex;
  margin-top: 14px;
}

/* ---------- Placeholder de veículo (sem foto real ainda) ---------- */
.placeholder-car {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #161616 0%, #101010 55%, #1c1c1c 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.placeholder-car::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(199, 154, 86, 0.14), transparent 60%);
}

.placeholder-car svg {
  width: 46%;
  max-width: 220px;
  color: rgba(199, 154, 86, 0.32);
  position: relative;
  z-index: 1;
}

/* ---------- Marca (strip de logos) ---------- */
.brands-strip {
  padding: 40px 0;
  border-block: 1px solid var(--surface-border);
  overflow: hidden;
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brandsScroll 46s linear infinite;
}

.brands-track__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brands-track__item {
  display: flex;
  align-items: center;
  padding: 0 46px;
  cursor: pointer;
}

.brands-track__item img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

@media (hover: hover) {
  .brands-track__item:hover img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(80%) sepia(24%) saturate(1000%) hue-rotate(0deg) brightness(1.1);
  }
}

@keyframes brandsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section head ---------- */
.section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 14px 0 0;
}

.section-head p {
  margin-top: 14px;
  color: var(--text-dim);
  max-width: 34rem;
}

.rail-arrows {
  display: flex;
  gap: 10px;
  flex: none;
}

.rail-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

@media (hover: hover) {
  .rail-arrow:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(199, 154, 86, 0.08);
  }
}

/* ---------- Vehicle card (reutilizado em vários lugares) ---------- */
.v-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) {
  .v-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 154, 86, 0.4);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  }
  .v-card:hover .v-card__media .placeholder-car svg { transform: scale(1.06); }
}

.v-card__media {
  aspect-ratio: 4 / 3;
  position: relative;
}

.v-card__media .placeholder-car svg { transition: transform 0.5s ease; }

.v-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(10, 9, 8, 0.7);
  border: 1px solid rgba(199, 154, 86, 0.4);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  backdrop-filter: blur(4px);
}

.v-card__body {
  padding: 22px 22px 24px;
}

.v-card__brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.v-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-top: 6px;
}

.v-card__meta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-dimmer);
}

.v-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-border);
}

.v-card__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.v-card__price sup {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-dimmer);
  margin-right: 3px;
}

/* ---------- Rail (destaques / novidades) ---------- */
.rail {
  position: relative;
  overflow: hidden;
}

.rail-track {
  display: flex;
  gap: 26px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.rail-track .v-card {
  flex: none;
  width: calc((100% - 52px) / 3);
}

@media (max-width: 1024px) {
  .rail-track .v-card { width: calc((100% - 26px) / 2); }
}

@media (max-width: 680px) {
  .rail-track .v-card { width: 86%; }
}

/* ---------- Brand showcase (grade editorial) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 780px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

.showcase-panel {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  cursor: pointer;
}

.showcase-panel__logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 90% at 50% 40%, #161616 0%, #0a0a0a 75%);
}

.showcase-panel__logo img {
  width: 42%;
  max-width: 130px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

@media (hover: hover) {
  .showcase-panel:hover .showcase-panel__logo img {
    transform: scale(1.08);
    opacity: 1;
  }
}

.showcase-panel--wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 8;
}

.showcase-panel .placeholder-car svg { transition: transform 0.6s ease; }

@media (hover: hover) {
  .showcase-panel:hover .placeholder-car svg { transform: scale(1.08); }
}

.showcase-panel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 5, 4, 0.88) 100%);
}

.showcase-panel__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  margin-top: 6px;
}

.showcase-panel__link {
  margin-top: 14px;
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.05fr; gap: 70px; }
}

.about-copy p {
  margin-top: 18px;
  color: var(--text-dim);
  max-width: 34rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px;
  margin-top: 34px;
}

.about-stats b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--gold-light);
}

.about-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
}

/* ---------- Sourcing / Carro sob encomenda ---------- */
.sourcing {
  background: var(--bg-alt);
  border-block: 1px solid var(--surface-border);
}

.sourcing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 940px) {
  .sourcing-grid { grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
}

.sourcing-copy p {
  margin-top: 18px;
  color: var(--text-dim);
  max-width: 32rem;
}

.sourcing-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.sourcing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-dim);
}

.sourcing-list svg {
  flex: none;
  margin-top: 3px;
  color: var(--gold);
}

.sourcing-form {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
}

.sourcing-form h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

@media (min-width: 520px) {
  .field-grid--2 { grid-template-columns: 1fr 1fr; }
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea { resize: vertical; min-height: 90px; }

.sourcing-form .btn { width: 100%; margin-top: 22px; }

/* ---------- Depoimentos ---------- */
.testi-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 780px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.testi-card svg { color: var(--gold); opacity: 0.7; }

.testi-card p {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.55;
}

.testi-card__who {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--surface-border);
  font-size: 0.84rem;
}

.testi-card__who b { display: block; color: var(--text); }
.testi-card__who span { color: var(--text-dimmer); }

/* ---------- "Entregas": carrossel 3D em leque ---------- */
.fan-section { overflow: hidden; }

.fan-carousel {
  position: relative;
  z-index: 1;
  height: clamp(320px, 42vw, 460px);
  margin-top: 10px;
}

.fan-track {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.fan-track:active { cursor: grabbing; }

.fan-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(160px, 22vw, 230px);
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.75);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  will-change: transform;
  pointer-events: none;
}

.fan-card.is-center { border-color: rgba(199, 154, 86, 0.5); }

.fan-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 34rem;
  margin: 30px auto 0;
}

.fan-caption blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
}

.fan-caption cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-dimmer);
}

.fan-caption cite b { color: var(--gold-light); }

.fan-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

/* ---------- Acordeões (equipamentos / documentação) ---------- */
.accordion {
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger svg {
  flex: none;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.accordion.is-open .accordion-trigger svg { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 18px;
  font-size: 0.86rem;
  color: var(--text-dim);
}

.accordion.is-open .accordion-body {
  max-height: 700px;
  padding-bottom: 18px;
}

.accordion-body ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }

.accordion-body .kv-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--surface-border);
}

.accordion-body .kv-row:last-child { border-bottom: none; }

/* ---------- Filtro: faixa de preço com dois cursores ---------- */
.range-dual {
  position: relative;
  height: 30px;
  margin-top: 8px;
}

.range-dual__track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  transform: translateY(-50%);
  background: var(--surface-border);
  border-radius: 3px;
}

.range-dual__fill {
  position: absolute;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: var(--gold);
  border-radius: 3px;
}

.range-dual input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  margin: 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
}

.range-dual input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold);
  cursor: pointer;
}

.range-dual input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold);
  cursor: pointer;
}

.range-dual__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--text-dimmer);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--surface-border);
  padding: 70px 0 30px;
}

.footer-lead {
  text-align: center;
  padding-top: 10px;
}

.footer-strap {
  margin-top: 12px;
  color: var(--text-dimmer);
  font-size: 0.86rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--surface-border);
}

@media (min-width: 780px) {
  .footer-top { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand .brand { display: inline-block; }
.footer-brand p { margin-top: 16px; color: var(--text-dimmer); font-size: 0.9rem; max-width: 26rem; }

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-dimmer);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  display: grid;
  place-items: center;
  color: #1a1204;
  box-shadow: 0 16px 34px -12px rgba(199, 154, 86, 0.6);
  animation: waIn 0.6s ease 0.8s both;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(199, 154, 86, 0.55);
  animation: waPing 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes waIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes waPing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
  .hero__scroll-line { animation: none; }
}

/* ---------- Reveal on scroll ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SHOWROOM
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(60px, 10vw, 110px) 0 50px;
  text-align: center;
  overflow: hidden;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: 16px;
}

.page-hero .eyebrow { justify-content: center; }

.filters {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

@media (min-width: 640px) and (max-width: 1179px) {
  .filters { grid-template-columns: repeat(3, 1fr); gap: 18px 0; }
  .filters .field { padding: 0 20px; border-right: 1px solid var(--surface-border); }
  .filters .field:nth-child(3n) { border-right: none; }
}

@media (min-width: 1180px) {
  .filters { grid-template-columns: repeat(6, 1fr); gap: 0; }
  .filters .field { padding: 0 20px; border-right: 1px solid var(--surface-border); }
  .filters .field:last-child { border-right: none; }
}

.results-count {
  margin-bottom: 20px;
  font-size: 0.86rem;
  color: var(--text-dimmer);
}

.results-count b { color: var(--gold-light); }

.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

@media (min-width: 640px) {
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .vehicles-grid { grid-template-columns: repeat(3, 1fr); }
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dimmer);
}

/* ============================================================
   VEHICLE DETAIL
   ============================================================ */
.vehicle-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .vehicle-layout { grid-template-columns: 1.4fr 1fr; gap: 54px; }
}

.gallery-main {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  position: relative;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.gallery-thumbs button {
  flex: none;
  width: 96px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  padding: 0;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.gallery-thumbs button.is-active {
  opacity: 1;
  border-color: var(--gold);
}

.info-panel {
  align-self: start;
}

@media (min-width: 1024px) {
  .info-panel { position: sticky; top: 110px; }
}

.info-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-head .badge-brand {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
}

.info-head h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
}

.info-head .tagline {
  font-style: italic;
  color: var(--text-dimmer);
  font-size: 0.9rem;
  margin-top: 2px;
}

.info-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.1rem;
  margin-top: 22px;
}

.info-price sup {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dimmer);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.spec-tile {
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 16px;
}

.spec-tile span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

.spec-tile b {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.ficha {
  margin-top: 24px;
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  overflow: hidden;
}

.ficha-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 0.86rem;
}

.ficha-row:not(:last-child) { border-bottom: 1px solid var(--surface-border); }
.ficha-row span:first-child { color: var(--text-dimmer); }

.info-panel .btn { width: 100%; margin-top: 24px; }

.services-strip {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
}

.services-strip > div {
  flex: 1 1 220px;
  text-align: center;
  padding: 26px;
  border-right: 1px solid var(--surface-border);
  font-size: 0.86rem;
  color: var(--text-dim);
}

.services-strip > div:last-child { border-right: none; }

.services-strip svg { color: var(--gold); margin-bottom: 10px; }

/* ---------- Lead modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open { visibility: visible; opacity: 1; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: var(--bg-alt);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.modal.is-open .modal__card { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dimmer);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
}

.modal__card p { color: var(--text-dimmer); font-size: 0.88rem; margin-top: 6px; }

.modal__success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.modal__success svg { color: var(--gold); }

.modal__success h3 { margin-top: 14px; }

.modal.is-success .modal__form { display: none; }
.modal.is-success .modal__success { display: block; }
