/* =========================================================
   AutoCenter PY — style.css v3.0 PREMIUM
   Paleta: #0057A0 azul | #D4001B vermelho | brancos limpos
   Design system: Webmotors-style, foco no Paraguay
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Cores primárias Paraguay */
  --blue:        #0057A0;
  --blue-dk:     #003F7A;
  --blue-md:     #1A73C8;
  --blue-lt:     #3B8BE0;
  --blue-xl:     #EBF3FB;
  --blue-2xl:    #F5F9FF;

  --red:         #D4001B;
  --red-dk:      #A30015;
  --red-lt:      #F43F5E;
  --red-xl:      #FDE8EB;

  /* Neutros */
  --bg:          #F1F4F9;
  --bg-warm:     #F8F9FB;
  --surface:     #FFFFFF;
  --surface-2:   #FAFBFD;
  --border:      #DDE4EE;
  --border-dk:   #C2CEDF;

  /* Texto — WCAG AA garantido */
  --t1:          #0D1B35;  /* headings */
  --t2:          #1E2D4A;  /* subheadings */
  --t3:          #3D5270;  /* body */
  --t4:          #5E749A;  /* labels */
  --t5:          #8FA3C0;  /* placeholders */
  --t6:          #B8C7DA;  /* disabled */

  /* Status */
  --green:       #059669;
  --green-xl:    #ECFDF5;
  --amber:       #B45309;
  --amber-xl:    #FFFBEB;
  --purple:      #6D28D9;
  --teal:        #0891B2;

  /* Layout */
  --hh:   60px;
  --hch:  44px;
  --maxw: 1440px;

  /* Radius */
  --r1: 6px;
  --r2: 10px;
  --r3: 14px;
  --r4: 20px;
  --r5: 28px;

  /* Shadows */
  --sh1: 0 1px 3px rgba(13,27,53,.06), 0 1px 2px rgba(13,27,53,.04);
  --sh2: 0 4px 16px rgba(13,27,53,.08), 0 2px 6px rgba(13,27,53,.04);
  --sh3: 0 12px 40px rgba(13,27,53,.14);
  --shb: 0 4px 24px rgba(0,87,160,.22);
  --shbl: 0 8px 32px rgba(0,87,160,.32);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t: all .22s var(--ease);
  --t-slow: all .35s var(--ease);

  /* Gradientes */
  --grad-blue: linear-gradient(135deg, #003F7A 0%, #1A73C8 100%);
  --grad-blue2: linear-gradient(135deg, #0057A0 0%, #3B8BE0 100%);
  --grad-red:  linear-gradient(135deg, #A30015 0%, #D4001B 100%);
  --grad-dark: linear-gradient(135deg, #0B1828 0%, #0D2040 50%, #0057A0 100%);
  --grad-hero: linear-gradient(160deg, rgba(5,15,40,.92) 0%, rgba(7,20,55,.6) 45%, rgba(0,50,110,.3) 100%);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hh) + var(--hch) + 8px);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: calc(var(--hh) + var(--hch));
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── UTILITÁRIOS ─────────────────────────────────────────── */
.text-blue         { color: var(--blue); }
.text-red          { color: var(--red); }
.text-accent       { color: var(--blue); }
.text-accent-light { color: #93C5FD; }
.text-light        { color: rgba(255,255,255,.9) !important; }
.hidden { display: none !important; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.eyebrow.light { color: rgba(255,255,255,.6); }
.eyebrow i { font-size: 11px; }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.3px; color: var(--t1);
}
.section-title.light { color: #fff; }
.section-sub { color: var(--t3); font-size: 15px; margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh1);
  transition: box-shadow .3s;
}
#header.scrolled {
  box-shadow: 0 2px 24px rgba(0,87,160,.14);
}

.header-top {
  display: flex; align-items: center; gap: 14px;
  padding: 0 clamp(14px, 3.5vw, 52px);
  height: var(--hh);
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; cursor: pointer; text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px; border-radius: var(--r2);
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,87,160,.35);
}
/* Logo imagem gerada */
.logo-img-wrap {
  display: flex; align-items: center; flex-shrink: 0;
}
.logo-img {
  height: 46px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,87,160,.25));
  transition: var(--t);
}
.logo-img:hover { filter: drop-shadow(0 4px 12px rgba(0,87,160,.4)); transform: scale(1.03); }
.logo-img-footer {
  height: 52px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,87,160,.4));
}
/* Drawer logo */
.drawer-logo-img {
  height: 40px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.18; }
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900; color: var(--t1); letter-spacing: -.4px;
}
.logo-py { color: var(--red); margin-left: 1px; }
.logo-tagline {
  font-size: 9px; font-weight: 700; color: var(--t5);
  letter-spacing: 1px; text-transform: uppercase;
}

/* Header Search */
.header-search {
  flex: 1; max-width: 480px;
  display: flex; align-items: center;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r2); overflow: hidden; transition: var(--t);
}
.header-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,87,160,.1);
  background: #fff;
}
.search-icon { padding: 0 10px 0 14px; color: var(--t5); font-size: 13px; flex-shrink: 0; }
.header-search input {
  flex: 1; border: none; background: transparent;
  padding: 10px 6px; font-size: 13px; color: var(--t1); outline: none;
}
.header-search input::placeholder { color: var(--t5); }
.search-btn-inner {
  padding: 10px 18px; background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700;
  transition: background .2s; white-space: nowrap;
  border-left: 1px solid rgba(0,87,160,.2);
}
.search-btn-inner:hover { background: var(--blue-dk); }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; font-size: 13px; font-weight: 600;
  color: var(--t3); border-radius: var(--r1); transition: var(--t);
  white-space: nowrap;
}
.nav-link i { font-size: 12px; }
.nav-link:hover { color: var(--blue); background: var(--blue-xl); }
.nav-link.active { color: var(--blue); background: var(--blue-xl); }

/* Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--t3); font-size: 14px; transition: var(--t); position: relative;
}
.icon-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-xl); }
.badge-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 800; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.btn-anunciar {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--grad-blue); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: var(--r2);
  transition: var(--t); white-space: nowrap;
  box-shadow: var(--shb);
}
.btn-anunciar:hover {
  transform: translateY(-1px);
  box-shadow: var(--shbl);
}

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: 8px; border-radius: var(--r1);
  border: 1.5px solid var(--border); background: var(--surface);
}
.hamburger span {
  width: 18px; height: 2px; background: var(--t2);
  border-radius: 2px; transition: var(--t);
}

/* Category Bar */
.header-cats {
  border-top: 1px solid var(--border);
  background: #fff;
  height: var(--hch);
  overflow: hidden;
}
.header-cats-inner {
  display: flex; align-items: center; gap: 2px;
  padding: 0 clamp(14px, 3.5vw, 52px);
  height: 100%; overflow-x: auto; scrollbar-width: none;
}
.header-cats-inner::-webkit-scrollbar { display: none; }

.hcat {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; color: var(--t3);
  white-space: nowrap; transition: var(--t); flex-shrink: 0;
}
.hcat i { font-size: 12px; }
.hcat:hover { color: var(--blue); background: var(--blue-xl); }
.hcat.active {
  background: var(--blue); color: #fff;
  box-shadow: 0 2px 8px rgba(0,87,160,.3);
}

/* ═══════════════════════════════════════════════════════════
   DRAWER MOBILE
═══════════════════════════════════════════════════════════ */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 900;
  backdrop-filter: blur(3px);
}
.drawer-overlay.open { display: block; }

.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 950;
  width: min(300px, 85vw); background: #fff;
  transform: translateX(-100%);
  transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: 6px 0 32px rgba(0,0,0,.18);
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #003F7A, #0057A0);
  flex-shrink: 0;
}
.drawer-header .logo-text { color: #fff; font-size: 20px; }
.drawer-header .logo-py { color: #93C5FD; }
.drawer-header button {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,.8);
  transition: var(--t);
}
.drawer-header button:hover { background: rgba(255,255,255,.25); color: #fff; }

.drawer-nav { padding: 8px 0; overflow-y: auto; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; font-size: 14px; font-weight: 600; color: var(--t2);
  border-bottom: 1px solid var(--bg); transition: var(--t);
}
.drawer-nav a i { width: 18px; color: var(--blue); font-size: 14px; }
.drawer-nav a:hover { color: var(--blue); background: var(--blue-xl); }

.drawer-cats { padding: 16px 20px; flex: 1; }
.drawer-cats-title {
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--t5); margin-bottom: 12px;
}
.drawer-cats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer-cats-grid button {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 12px; border-radius: var(--r2);
  background: var(--bg); border: 1.5px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--t2); transition: var(--t);
}
.drawer-cats-grid button i { color: var(--blue); }
.drawer-cats-grid button:hover {
  border-color: var(--blue); color: var(--blue); background: var(--blue-xl);
}

.drawer-footer {
  padding: 16px 20px; border-top: 1px solid var(--border); flex-shrink: 0;
}
.btn-anunciar-full {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad-blue); color: #fff; font-size: 14px; font-weight: 700;
  padding: 14px; border-radius: var(--r2); transition: var(--t);
  box-shadow: var(--shb);
}
.btn-anunciar-full:hover { opacity: .92; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════
   SPA PAGES
═══════════════════════════════════════════════════════════ */
.page { display: none; animation: fadeIn .25s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * (var(--hh) + var(--hch)));
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.38) saturate(.7);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-bg img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--grad-hero);
}
/* Decorative line */
.hero-overlay::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: calc(var(--hh) + var(--hch) + clamp(52px,8vw,96px)) clamp(16px,6vw,80px) clamp(80px,10vw,120px);
  max-width: var(--maxw); margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 18px; border-radius: 30px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.92);
  font-size: 12px; font-weight: 600;
}
.badge-flag { font-size: 16px; }
.badge-live {
  display: flex; align-items: center; gap: 5px;
  color: #86EFAC; font-weight: 700; font-size: 11px;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #86EFAC; animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(134,239,172,.5); }
  50% { opacity: .6; box-shadow: 0 0 0 5px rgba(134,239,172,0); }
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(46px, 8vw, 100px);
  font-weight: 900; line-height: .96;
  letter-spacing: -1.5px; color: #FFFFFF;
  max-width: 820px; margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero-accent {
  display: block;
  color: #60A5FA;  /* azul claro — alto contraste sobre escuro */
  -webkit-text-stroke: 0; /* remove stroke — melhora legibilidade */
}

.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 400; max-width: 500px;
  margin-bottom: 36px; line-height: 1.75;
}
.hero-sub strong { color: #fff; font-weight: 700; }

/* Search Box Hero */
.hero-search-box {
  max-width: 880px;
  background: #fff;
  border-radius: var(--r4); overflow: hidden;
  box-shadow: 0 32px 72px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.9);
}

.search-tabs {
  display: flex; border-bottom: 1.5px solid var(--border);
  background: var(--surface-2);
}
.stab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 14px 12px; font-size: 13px; font-weight: 600; color: var(--t3);
  cursor: pointer; transition: var(--t);
  border-right: 1px solid var(--border);
  position: relative;
}
.stab:last-child { border-right: none; }
.stab i { font-size: 13px; }
.stab.active {
  color: var(--blue); background: #fff;
}
.stab.active::after {
  content: '';
  position: absolute; bottom: -1.5px; left: 0; right: 0;
  height: 2px; background: var(--blue);
}
.stab:hover:not(.active) { color: var(--blue); background: var(--blue-2xl); }

.stab-panel { display: none; }
.stab-panel.active { display: block; }

.search-fields {
  display: grid; grid-template-columns: repeat(4,1fr) auto;
}
.sf {
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  position: relative;
}
.sf:last-child { border-right: none; }
.sf label {
  display: block; font-size: 9px; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px;
}
.sf select {
  width: 100%; border: none; background: transparent;
  color: var(--t1); font-size: 14px; font-weight: 600;
  cursor: pointer; outline: none;
  appearance: none; -webkit-appearance: none;
}
.search-btn-big {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; background: var(--grad-blue);
  color: #fff; font-weight: 800; font-size: 15px;
  white-space: nowrap; transition: var(--t);
}
.search-btn-big:hover { filter: brightness(1.1); }

.search-popular {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 9px 18px 15px; border-top: 1px solid var(--border);
  font-size: 11px; color: var(--t4);
}
.popular-tag {
  padding: 4px 11px; border-radius: 20px;
  background: var(--bg); border: 1px solid var(--border);
  font-size: 11px; font-weight: 600; color: var(--t3); transition: var(--t);
}
.popular-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-xl); }

.alt-panel {
  display: flex; align-items: center; gap: 18px; padding: 18px;
}
.alt-panel-icon {
  width: 52px; height: 52px; border-radius: var(--r3);
  background: var(--blue-xl); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--blue); flex-shrink: 0;
}
.alt-panel-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.alt-panel-info strong { font-size: 15px; font-weight: 800; color: var(--t1); }
.alt-panel-info span { font-size: 12px; color: var(--t3); }

/* Hero Counters */
.hero-counters {
  display: flex; align-items: center; gap: clamp(20px,3.5vw,52px);
  margin-top: 32px; flex-wrap: wrap;
}
.hc { text-align: left; }
.hc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900; color: #fff; line-height: 1;
}
.hc-lbl {
  font-size: 10px; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .8px; margin-top: 4px;
}
.hc-sep {
  width: 1px; background: rgba(255,255,255,.15);
  align-self: stretch; margin: 4px 0;
}

/* ── STATS BAND ──────────────────────────────────────────── */
.stats-band { background: var(--blue); }
.stats-band-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 12px clamp(16px,4vw,60px);
  gap: 0; max-width: var(--maxw); margin: 0 auto;
}
.sb-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 20px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.88);
}
.sb-item i { font-size: 13px; color: rgba(255,255,255,.7); }
.sb-sep { width: 1px; height: 16px; background: rgba(255,255,255,.2); }

/* ── HOME SECTIONS ───────────────────────────────────────── */
.home-section {
  padding: clamp(52px,6.5vw,88px) clamp(16px,5vw,72px);
  max-width: var(--maxw); margin: 0 auto;
}
.hs-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.btn-ver-todos {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--blue);
  padding: 9px 18px; border: 1.5px solid var(--blue);
  border-radius: var(--r2); transition: var(--t);
}
.btn-ver-todos:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════
   CAR CARDS
═══════════════════════════════════════════════════════════ */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
  gap: 18px;
}
.cars-grid.list-view { grid-template-columns: 1fr; }

.car-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r3); overflow: hidden;
  transition: var(--t-slow); cursor: pointer;
  position: relative;
}
.car-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: var(--sh3), var(--shb);
}

/* List mode */
.cars-grid.list-view .car-card { display: flex; }
.cars-grid.list-view .car-img-wrap { width: 250px; flex-shrink: 0; height: auto; }
.cars-grid.list-view .car-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

.car-img-wrap {
  position: relative; height: 196px; overflow: hidden;
  background: var(--bg);
}
.car-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.car-card:hover .car-img-wrap img { transform: scale(1.07); }

/* Badges */
.car-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 9px; font-weight: 800; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .8px;
  backdrop-filter: blur(4px);
}
.badge-nuevo     { background: var(--green); color: #fff; }
.badge-usado     { background: rgba(0,87,160,.85); color: #fff; backdrop-filter: blur(4px); }
.badge-destaque  { background: linear-gradient(135deg,#B45309,#F59E0B); color: #fff; }
.badge-moto      { background: rgba(212,0,27,.85); color: #fff; }
.badge-maquinaria{ background: rgba(120,53,15,.9); color: #fff; }
.badge-nautico   { background: rgba(8,145,178,.9); color: #fff; }

.car-fav-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 1px solid rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--t4); font-size: 13px; transition: var(--t);
  backdrop-filter: blur(4px);
}
.car-fav-btn:hover, .car-fav-btn.active { color: var(--red); background: #fff; }

.car-depto {
  position: absolute; bottom: 8px; left: 8px; z-index: 2;
  display: flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 20px;
  background: rgba(0,0,0,.68); backdrop-filter: blur(4px);
  color: rgba(255,255,255,.92); font-size: 10px; font-weight: 600;
}

.car-body { padding: 14px 16px; }
.car-brand {
  font-size: 10px; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
}
.car-name {
  font-family: 'Barlow', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--t1);
  margin-bottom: 10px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.car-specs {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px;
}
.car-spec {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500; color: var(--t3);
}
.car-spec i { font-size: 10px; color: var(--t5); }

.car-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 11px; border-top: 1px solid var(--border);
}
.car-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900; color: var(--blue); line-height: 1;
}
.car-price-label { font-size: 10px; color: var(--t4); margin-top: 2px; }

.btn-ver {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: var(--r1);
  background: var(--blue-xl); border: 1.5px solid var(--blue);
  color: var(--blue); font-size: 11px; font-weight: 700; transition: var(--t);
}
.btn-ver:hover { background: var(--blue); color: #fff; }

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, #e8ecf2 25%, #f1f5fb 37%, #e8ecf2 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--r1);
}
@keyframes shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.skel-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r3); overflow: hidden;
}
.skel-img  { height: 196px; }
.skel-body { padding: 14px 16px; }
.skel-line { height: 12px; margin-bottom: 9px; }

/* ═══════════════════════════════════════════════════════════
   DESTACADOS CAROUSEL
═══════════════════════════════════════════════════════════ */
.dest-section {
  position: relative; overflow: hidden;
  padding: clamp(52px,6vw,84px) clamp(16px,5vw,72px);
  background: #071428;
}
.dest-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(0,87,160,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 75% 70%, rgba(212,0,27,.08) 0%, transparent 60%);
}

.dest-section .hs-header,
.dest-section .dest-wrap {
  position: relative; z-index: 1;
}

.dest-wrap { overflow: hidden; margin: 0 -6px; }
.dest-carousel {
  display: flex; gap: 20px;
  transition: transform .55s var(--ease);
  padding: 6px;
}

.dest-card {
  min-width: calc(25% - 15px); max-width: calc(25% - 15px);
  background: linear-gradient(160deg, #0D2040 0%, #0A1830 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r4); overflow: hidden;
  cursor: pointer; transition: var(--t-slow); flex-shrink: 0;
}
.dest-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,87,160,.6);
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(0,87,160,.4);
}

.dest-img-wrap {
  height: 215px; position: relative; overflow: hidden;
  background: #060F20;
}
.dest-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
  filter: brightness(.88);
}
.dest-card:hover .dest-img-wrap img {
  transform: scale(1.06); filter: brightness(1);
}
.dest-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,20,40,.95) 0%, transparent 55%);
}
.dest-hot-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 900; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
  animation: hotGlow 2s ease infinite;
}
@keyframes hotGlow {
  0%,100% { box-shadow: 0 0 12px rgba(212,0,27,.55); }
  50%      { box-shadow: 0 0 24px rgba(212,0,27,.85); }
}

.dest-body { padding: 16px 18px 20px; }
.dest-brand {
  font-size: 10px; font-weight: 800; color: #60A5FA;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
}
.dest-name {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 9px;
}
.dest-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.dest-spec {
  font-size: 11px; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 4px;
}
.dest-spec i { color: #60A5FA; font-size: 10px; }

.dest-price-row { display: flex; align-items: center; justify-content: space-between; }
.dest-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900; color: #60A5FA;
}
.dest-price-label { font-size: 10px; color: rgba(255,255,255,.4); margin-top: 2px; }
.dest-tag-views {
  font-size: 11px; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 4px;
}

.carousel-controls { display: flex; align-items: center; gap: 10px; }
.carousel-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 13px; cursor: pointer; transition: var(--t);
}
.carousel-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.carousel-dots { display: flex; align-items: center; gap: 5px; }
.cdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer; transition: var(--t);
}
.cdot.active { width: 22px; border-radius: 3px; background: var(--blue); }

/* ═══════════════════════════════════════════════════════════
   CATEGORIAS GRID
═══════════════════════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.cat-big { grid-column: span 2; grid-row: span 2; }
.cat-card {
  position: relative; border-radius: var(--r3); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t-slow); background: var(--bg);
}
.cat-big { aspect-ratio: auto; min-height: 260px; }
.cat-card:hover { border-color: var(--blue); box-shadow: var(--sh3); }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s, filter .4s;
  filter: brightness(.5) saturate(.8);
}
.cat-card:hover img { transform: scale(1.08); filter: brightness(.38); }
.cat-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.15) 55%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 20px; transition: var(--t);
}
.cat-icon {
  font-size: 26px; color: #fff; margin-bottom: 8px;
  transition: var(--t-slow);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.cat-card:hover .cat-icon {
  transform: scale(1.25) translateY(-5px);
  color: #60A5FA;
  filter: drop-shadow(0 0 10px rgba(96,165,250,.8));
}
.cat-name { font-size: 15px; font-weight: 700; color: #fff; text-align: center; }
.cat-big  .cat-name { font-size: 22px; }
.cat-qty  { font-size: 11px; color: rgba(255,255,255,.52); margin-top: 3px; }

/* ── BRANDS ──────────────────────────────────────────────── */
.brands-section {
  padding: clamp(40px,5vw,64px) clamp(16px,5vw,72px);
  background: var(--surface);
  border-top: 1px solid var(--border);
  max-width: var(--maxw); margin: 0 auto;
  width: 100%;
}
.brands-section { max-width: 100%; }
.brands-section-inner { max-width: var(--maxw); margin: 0 auto; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.brand-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--r2);
  background: var(--surface-2); border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--t2);
  cursor: pointer; transition: var(--t-slow);
}
.brand-chip i { color: var(--blue); font-size: 14px; }
.brand-chip:hover {
  border-color: var(--blue); color: var(--blue);
  background: var(--blue-xl); transform: translateY(-2px); box-shadow: var(--sh2);
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--grad-dark);
  padding: clamp(60px,7.5vw,96px) clamp(16px,6vw,80px);
  text-align: center;
}
.cta-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,87,160,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,0,27,.1) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-flag { font-size: 48px; display: block; margin-bottom: 16px; }
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px,5.5vw,54px); font-weight: 900; color: #fff; margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.btn-cta-main {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; border-radius: var(--r3);
  background: #fff; color: var(--blue); font-weight: 800; font-size: 16px;
  transition: var(--t); box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.btn-cta-main:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,.3); }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: var(--r3);
  background: rgba(255,255,255,.1); color: #fff;
  font-weight: 700; font-size: 15px;
  border: 2px solid rgba(255,255,255,.25); transition: var(--t);
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.cta-checks {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
}
.cta-checks span {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.cta-checks i { color: #86EFAC; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #080F1E; color: rgba(255,255,255,.55);
  border-top: 3px solid var(--blue);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px; padding: clamp(40px,5vw,60px) clamp(16px,5vw,72px);
  max-width: var(--maxw); margin: 0 auto;
}
.footer-brand .logo-text { font-size: 22px; color: #fff; }
.footer-brand .logo-py { color: #93C5FD; }
.footer-desc {
  font-size: 13px; color: rgba(255,255,255,.42);
  margin: 14px 0 20px; line-height: 1.75;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 13px; transition: var(--t);
}
.footer-social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-col h4 {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px; padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,.42); transition: var(--t);
}
.footer-col ul li a:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer-contact .fc-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 10px;
}
.footer-contact .fc-item i { color: var(--blue); width: 14px; font-size: 13px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px,5vw,72px);
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px; flex-wrap: wrap; gap: 8px;
  max-width: var(--maxw); margin: 0 auto;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   HERO MINI (catálogo, mercado)
═══════════════════════════════════════════════════════════ */
.page-hero-mini {
  padding: clamp(36px,4.5vw,52px) clamp(16px,5vw,72px) clamp(28px,3.5vw,40px);
  background: var(--grad-blue);
  position: relative; overflow: hidden;
}
.page-hero-mini::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.page-hero-mini::after {
  content: '';
  position: absolute; left: 30%; bottom: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.phm-content { position: relative; z-index: 1; }
.phm-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px,4.5vw,46px); font-weight: 900; color: #fff;
  margin: 9px 0 7px;
}
.phm-sub { color: rgba(255,255,255,.74); font-size: 15px; }

.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,.5); flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,.72); cursor: pointer; transition: var(--t);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 9px; }

/* ═══════════════════════════════════════════════════════════
   CATÁLOGO — LAYOUT
═══════════════════════════════════════════════════════════ */
.catalog-layout {
  display: flex; gap: 24px; align-items: flex-start;
  max-width: var(--maxw); margin: 0 auto;
  padding: 28px clamp(16px,3vw,48px) 60px;
}

/* Filter Sidebar */
.filter-sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r3); overflow: hidden;
  position: sticky; top: calc(var(--hh) + var(--hch) + 16px);
}
.fs-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--blue-xl), transparent);
  border-bottom: 1px solid var(--border);
}
.fs-header h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--t1);
}
.fs-header h3 i { color: var(--blue); }
.fs-close {
  display: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  align-items: center; justify-content: center;
  font-size: 14px; color: var(--t3);
}
.fs-body {
  padding: 4px 0;
  max-height: calc(100vh - 280px); overflow-y: auto;
}
.fg {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
}
.fg:last-child { border-bottom: none; }
.fg-label {
  font-size: 9px; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.fopt {
  display: flex; align-items: center; gap: 9px;
  cursor: pointer; font-size: 13px; font-weight: 500; color: var(--t2);
  margin-bottom: 7px; transition: var(--t);
}
.fopt:hover { color: var(--blue); }
.fopt input[type=checkbox] { accent-color: var(--blue); width: 14px; height: 14px; flex-shrink: 0; }
.fc {
  margin-left: auto; font-size: 10px; font-weight: 700; color: var(--t5);
  background: var(--bg); padding: 1px 7px; border-radius: 10px;
}
.range-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--t3); margin-bottom: 8px; }
.range-row b { color: var(--blue); }
input[type=range] {
  width: 100%; -webkit-appearance: none; height: 4px;
  background: linear-gradient(to right, var(--blue) 100%, var(--border) 100%);
  border-radius: 2px; outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 16px; height: 16px;
  background: var(--blue); border-radius: 50%; border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(0,87,160,.4);
}
.fsel {
  width: 100%; padding: 9px 11px;
  background: var(--surface-2); border: 1.5px solid var(--border);
  border-radius: var(--r1); color: var(--t1); font-size: 13px;
  cursor: pointer; outline: none; transition: var(--t);
}
.fsel:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(0,87,160,.1); }

.fs-footer {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 14px 18px; border-top: 1px solid var(--border);
}
.btn-apply-f {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; border-radius: var(--r2); background: var(--grad-blue);
  color: #fff; font-weight: 700; font-size: 13px; transition: var(--t);
}
.btn-apply-f:hover { opacity: .9; transform: translateY(-1px); }
.btn-clear-f {
  padding: 10px; border-radius: var(--r2);
  background: var(--surface-2); border: 1.5px solid var(--border);
  color: var(--t3); font-weight: 600; font-size: 13px; transition: var(--t);
}
.btn-clear-f:hover { border-color: var(--red); color: var(--red); }

.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 699; backdrop-filter: blur(2px);
}
.sidebar-overlay.open { display: block; }

/* Catalog Toolbar */
.catalog-main { flex: 1; min-width: 0; }
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; flex-wrap: wrap; gap: 10px;
}
.ct-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--t1);
}
.ct-count span { color: var(--blue); }
.ct-sub { font-size: 12px; color: var(--t4); margin-top: 2px; }
.ct-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.view-btns { display: flex; gap: 3px; }
.vbtn {
  width: 34px; height: 34px; border-radius: var(--r1);
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--t4); font-size: 13px; transition: var(--t);
}
.vbtn.active, .vbtn:hover {
  border-color: var(--blue); color: var(--blue); background: var(--blue-xl);
}

.sort-sel {
  padding: 8px 12px; background: var(--surface);
  border: 1.5px solid var(--border); border-radius: var(--r1);
  color: var(--t1); font-size: 12px; font-weight: 500;
  cursor: pointer; outline: none; transition: var(--t);
}
.sort-sel:focus { border-color: var(--blue); }

.btn-filter-toggle {
  display: none; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r1);
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--t2); font-size: 12px; font-weight: 600; transition: var(--t);
}
.btn-filter-toggle:hover { border-color: var(--blue); color: var(--blue); }

/* Active chips */
.active-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.achip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 20px;
  background: var(--blue-xl); border: 1px solid var(--blue);
  color: var(--blue); font-size: 11px; font-weight: 600;
}
.achip button {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 8px;
  display: flex; align-items: center; justify-content: center;
}

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 40px;
}
.pag-num {
  min-width: 36px; height: 36px; border-radius: var(--r1); padding: 0 8px;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--t2);
  cursor: pointer; transition: var(--t);
}
.pag-num:hover { border-color: var(--blue); color: var(--blue); }
.pag-num.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.pag-num:disabled { opacity: .4; cursor: not-allowed; }
.pag-btn {
  min-width: 36px; height: 36px; padding: 0 12px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r1); font-size: 12px; font-weight: 600;
  color: var(--t3); cursor: pointer; display: flex;
  align-items: center; gap: 5px; transition: var(--t);
}
.pag-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.pag-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ═══════════════════════════════════════════════════════════
   PÁGINA DETALHE VEÍCULO
═══════════════════════════════════════════════════════════ */
.vd-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 28px clamp(16px,4vw,48px) 60px;
}
.vd-breadcrumb { margin-bottom: 20px; }
.vd-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 28px; align-items: start;
}
.vd-gallery-main {
  border-radius: var(--r3); overflow: hidden;
  aspect-ratio: 16/10; background: var(--bg);
  transition: var(--t);
}
.vd-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .25s ease;
}
.vd-thumbs {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 7px; margin-top: 7px;
}
.vd-thumb {
  border-radius: var(--r1); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  border: 2px solid transparent; transition: var(--t);
  background: var(--bg);
}
.vd-thumb:hover, .vd-thumb.active { border-color: var(--blue); }
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.vd-info {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r3); padding: 22px;
  position: sticky; top: calc(var(--hh) + var(--hch) + 16px);
  box-shadow: var(--sh1);
}
.vd-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.vd-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 900; color: var(--blue); line-height: 1;
  margin-bottom: 5px;
}
.vd-price-sub { font-size: 12px; color: var(--t4); margin-bottom: 18px; }
.vd-actions { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }

.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px; border-radius: var(--r2);
  background: #25D366; color: #fff; font-weight: 800; font-size: 15px;
  transition: var(--t); box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1AB954; transform: translateY(-1px); }
.btn-contact {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: var(--r2);
  background: var(--blue-xl); border: 1.5px solid var(--blue);
  color: var(--blue); font-weight: 700; font-size: 14px; transition: var(--t);
}
.btn-contact:hover { background: var(--blue); color: #fff; }

.vd-seller {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; background: var(--bg); border-radius: var(--r2); margin-top: 2px;
}
.vd-seller-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.vd-seller-name { font-size: 13px; font-weight: 700; color: var(--t1); }
.vd-seller-sub  { font-size: 11px; color: var(--t4); }

.vd-desc-section { margin-top: 24px; }
.vd-section-title {
  font-size: 14px; font-weight: 800; color: var(--t1);
  margin-bottom: 14px; padding-bottom: 9px;
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 7px;
}
.vd-section-title i { color: var(--blue); }

.vd-specs-table { width: 100%; border-collapse: collapse; }
.vd-specs-table tr { border-bottom: 1px solid var(--border); }
.vd-specs-table tr:last-child { border-bottom: none; }
.vd-specs-table td { padding: 10px 0; font-size: 13px; }
.vd-specs-table td:first-child { color: var(--t4); width: 44%; }
.vd-specs-table td:last-child  { font-weight: 600; color: var(--t1); }

.vd-desc-text { font-size: 14px; color: var(--t2); line-height: 1.8; }

.vd-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9px; margin-top: 4px;
}
.vd-stat {
  background: var(--bg); border-radius: var(--r2);
  padding: 10px 12px; display: flex; align-items: center; gap: 9px;
  border: 1px solid var(--border);
}
.vd-stat i { font-size: 15px; color: var(--blue); }
.vd-stat-val { font-size: 13px; font-weight: 700; color: var(--t1); }
.vd-stat-lbl { font-size: 10px; color: var(--t4); }

.vd-similar { margin-top: 44px; padding-top: 8px; }
.vd-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin-top: 8px;
}

/* VD Responsive */
@media (max-width: 960px) {
  .vd-grid { grid-template-columns: 1fr; }
  .vd-info { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r5); width: 100%; max-width: 960px;
  max-height: 90vh; overflow-y: auto;
  transform: scale(.95) translateY(20px); transition: all .3s var(--ease);
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 26px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--surface); z-index: 2;
  border-radius: var(--r5) var(--r5) 0 0;
}
.modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--t1);
}
.modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--t3); font-size: 14px; transition: var(--t);
}
.modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
.modal-body { padding: 26px; }

/* Gallery */
.modal-gallery {
  display: grid; grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px; height: 340px;
  margin-bottom: 24px; border-radius: var(--r3); overflow: hidden;
}
.gallery-main { grid-row: span 2; }
.gallery-main img, .gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: var(--t);
}
.gallery-main img:hover { opacity: .88; }
.gallery-thumb { overflow: hidden; }
.gallery-thumb img:hover { opacity: .85; }

.modal-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modal-info h3 {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 800; color: var(--t1);
  margin-bottom: 14px; padding-bottom: 9px;
  border-bottom: 1.5px solid var(--border);
}
.modal-info h3 i { color: var(--blue); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 10px 0; font-size: 13px; }
.specs-table td:first-child { color: var(--t4); width: 44%; }
.specs-table td:last-child { font-weight: 600; color: var(--t1); }

.contact-form { display: flex; flex-direction: column; gap: 9px; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 10px 12px;
  background: var(--surface-2); border: 1.5px solid var(--border);
  border-radius: var(--r1); color: var(--t1); font-size: 13px;
  outline: none; transition: var(--t); resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 2px rgba(0,87,160,.1);
}
.contact-form textarea { height: 80px; }

.modal-actions { display: flex; gap: 9px; }
.btn-whatsapp {
  flex: 1; padding: 12px; border-radius: var(--r2);
  background: #25D366; color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--t);
}
.btn-whatsapp:hover { background: #1AB954; transform: translateY(-1px); }
.btn-contact-send {
  flex: 1; padding: 12px; border-radius: var(--r2);
  background: var(--blue-xl); border: 1.5px solid var(--blue);
  color: var(--blue); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 7px; transition: var(--t);
}
.btn-contact-send:hover { background: var(--blue); color: #fff; }

.similar-section { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.similar-title {
  font-size: 14px; font-weight: 800; color: var(--blue);
  margin-bottom: 14px; display: flex; align-items: center; gap: 7px;
}
.similar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.similar-card {
  border-radius: var(--r2); overflow: hidden; cursor: pointer;
  border: 1.5px solid var(--border); transition: var(--t);
  background: var(--surface-2);
}
.similar-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.similar-img { height: 80px; overflow: hidden; background: var(--bg); }
.similar-img img { width: 100%; height: 100%; object-fit: cover; }
.similar-info { padding: 8px 10px; }
.similar-name {
  font-size: 11px; font-weight: 700; color: var(--t1);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 2px;
}
.similar-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 900; color: var(--blue);
}

/* ═══════════════════════════════════════════════════════════
   PÁGINA VENDER
═══════════════════════════════════════════════════════════ */
.vender-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, #060E1E 0%, #091F3F 45%, #0057A0 100%);
}
.vh-bg { position: absolute; inset: 0; }
.vh-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 50%, rgba(212,0,27,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(0,87,160,.3) 0%, transparent 55%);
}
.vh-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,.012) 40px, rgba(255,255,255,.012) 41px
  );
}
.vh-content {
  position: relative; z-index: 2; width: 100%;
  padding: clamp(64px,9vw,104px) clamp(16px,6vw,80px);
}
.vh-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px,6.5vw,76px); font-weight: 900;
  color: #fff; line-height: 1.02; margin: 12px 0 16px;
}
.vh-content p {
  color: rgba(255,255,255,.78); font-size: 17px;
  max-width: 480px; margin-bottom: 30px; line-height: 1.75;
}
.vh-content strong { color: #fff; }
.btn-vender-hero {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; border-radius: var(--r3);
  background: #fff; color: var(--blue); font-weight: 800; font-size: 16px;
  transition: var(--t); box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.btn-vender-hero:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }

.como-section { padding: clamp(60px,7vw,88px) clamp(16px,5vw,72px); }
.como-header { text-align: center; margin-bottom: 56px; }
.como-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap; max-width: 1100px; margin: 0 auto;
}
.step {
  flex: 1; min-width: 200px; max-width: 280px;
  text-align: center; padding: 0 20px;
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 54px; font-weight: 900; color: var(--blue-xl);
  line-height: 1; margin-bottom: 6px;
}
.step-icon {
  width: 64px; height: 64px; border-radius: var(--r3);
  background: var(--grad-blue); display: flex; align-items: center;
  justify-content: center; font-size: 24px; color: #fff;
  margin: 0 auto 16px; box-shadow: var(--shb);
}
.step h3 { font-size: 16px; font-weight: 800; color: var(--t1); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--t3); line-height: 1.7; }
.step-arrow {
  display: flex; align-items: center; padding: 0 4px;
  color: var(--border-dk); font-size: 20px; margin-top: 32px;
}

.vender-stats {
  background: #0B1828;
  padding: clamp(52px,6vw,76px) clamp(16px,5vw,72px);
}
.vs-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.vs-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r4); padding: 32px 24px;
  text-align: center; position: relative; overflow: hidden;
  transition: var(--t-slow);
}
.vs-card:hover {
  border-color: rgba(0,87,160,.45); background: rgba(0,87,160,.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}
.vs-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 900; color: #60A5FA; line-height: 1; margin-bottom: 8px;
}
.vs-lbl { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; }
.vs-icon { position: absolute; right: 16px; top: 16px; font-size: 22px; color: rgba(255,255,255,.07); }

.testimonios-section { padding: clamp(60px,6vw,84px) clamp(16px,5vw,72px); background: var(--bg); }
.testimonios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.tcard {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r3); padding: 28px; transition: var(--t-slow);
}
.tcard:hover { border-color: var(--blue); box-shadow: var(--sh2); transform: translateY(-3px); }
.tcard-stars { color: #F59E0B; font-size: 17px; margin-bottom: 14px; letter-spacing: 3px; }
.tcard p { font-size: 14px; color: var(--t2); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.tcard-author strong { font-size: 13px; font-weight: 700; color: var(--t1); display: block; }
.tcard-author span  { font-size: 11px; color: var(--t4); }

.planos-section { padding: clamp(60px,6vw,84px) clamp(16px,5vw,72px); background: var(--surface); }
.planos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.plano-card {
  background: var(--surface-2); border: 2px solid var(--border);
  border-radius: var(--r4); padding: 34px 30px; transition: var(--t-slow); position: relative;
}
.plano-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--sh3); }
.plano-card.featured {
  border-color: var(--blue); background: linear-gradient(165deg,#F0F7FF 0%,#fff 100%);
  transform: scale(1.04);
  box-shadow: var(--sh3), var(--shb);
}
.plano-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-blue); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 5px 18px; border-radius: 20px; letter-spacing: .5px; white-space: nowrap;
}
.plano-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 900; color: var(--t1); margin-bottom: 8px;
}
.plano-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 26px;
}
.plano-price span { font-size: 14px; font-weight: 500; color: var(--t4); }
.plano-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.plano-feats li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--t2); }
.plano-feats li i.fa-check { color: var(--green); }
.plano-feats li.off { color: var(--t5); }
.plano-feats li.off i.fa-xmark { color: var(--t6); }
.plano-btn {
  width: 100%; padding: 13px; border-radius: var(--r2);
  background: var(--bg); border: 1.5px solid var(--border);
  font-weight: 700; font-size: 14px; color: var(--t2); transition: var(--t);
}
.plano-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-xl); }
.featured-btn { background: var(--grad-blue) !important; border-color: transparent !important; color: #fff !important; }
.featured-btn:hover { opacity: .92; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════
   PÁGINA MERCADO
═══════════════════════════════════════════════════════════ */
.mercado-hero { background: linear-gradient(135deg,var(--blue-dk) 0%,var(--blue) 100%); }
.mercado-content {
  max-width: var(--maxw); margin: 0 auto;
  padding: 32px clamp(16px,4vw,52px) 60px;
}

.kpi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.kpi {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r3); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px; transition: var(--t-slow);
}
.kpi:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--sh2); }
.kpi-ic {
  width: 46px; height: 46px; border-radius: var(--r2);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}
.kpi-d { flex: 1; }
.kpi-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--t1); line-height: 1;
}
.kpi-l { font-size: 11px; color: var(--t4); margin-top: 3px; font-weight: 500; }
.kpi-t {
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; gap: 3px;
  padding: 3px 9px; border-radius: 20px; white-space: nowrap;
}
.kpi-t.up   { color: var(--green); background: var(--green-xl); }
.kpi-t.down { color: var(--red); background: var(--red-xl); }

.charts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.chart-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r3); padding: 22px; transition: var(--t);
}
.chart-card:hover { border-color: var(--blue); box-shadow: var(--sh2); }
.chart-card.wide { grid-column: span 2; }
.chart-hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.chart-title {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--t1);
}
.chart-title i { color: var(--blue); }
.chart-badge {
  font-size: 10px; font-weight: 700; color: var(--blue);
  background: var(--blue-xl); padding: 3px 9px; border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 2000;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r3); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh3); min-width: 270px; max-width: 380px;
  transform: translateX(120%); transition: transform .32s var(--ease);
}
.toast.show { transform: translateX(0); }
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--blue); }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast.success .toast-icon { color: var(--green); }
.toast.error   .toast-icon { color: var(--red); }
.toast.info    .toast-icon { color: var(--blue); }
#toastMsg { font-size: 13px; font-weight: 600; color: var(--t1); }

/* ═══════════════════════════════════════════════════════════
   FLOATS
═══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 1500;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 27px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.5); transition: var(--t);
}
.wa-float:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.6); }

.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shb); opacity: 0; pointer-events: none; transition: var(--t);
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); background: var(--blue-dk); }

/* Mobile bottom bar */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: #fff; border-top: 1.5px solid var(--border);
  padding: 8px 16px 10px; gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.mobile-bottom-bar button {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px; border-radius: var(--r2);
  background: var(--blue-xl); border: 1.5px solid var(--blue);
  color: var(--blue); font-size: 13px; font-weight: 700; transition: var(--t);
}
.mobile-bottom-bar button:hover { background: var(--blue); color: #fff; }

/* Sort bottom sheet */
.sort-sheet-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 799;
}
.sort-sheet-overlay.open { display: block; }
.sort-sheet {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: #fff; border-radius: var(--r4) var(--r4) 0 0;
  padding: 16px 20px 32px;
  transform: translateY(100%); transition: transform .3s var(--ease);
  box-shadow: 0 -8px 36px rgba(0,0,0,.18);
}
.sort-sheet.open { transform: translateY(0); }
.sort-sheet-handle {
  width: 40px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 0 auto 18px;
}
.sort-sheet-title {
  font-size: 15px; font-weight: 800; color: var(--t1); margin-bottom: 14px;
}
.sort-opt {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: var(--r2);
  font-size: 14px; font-weight: 600; color: var(--t2);
  border: 1.5px solid transparent; margin-bottom: 6px; transition: var(--t);
}
.sort-opt:hover, .sort-opt.active {
  background: var(--blue-xl); border-color: var(--blue); color: var(--blue);
}
.sort-opt i { color: var(--blue); width: 18px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .kpi-grid { grid-template-columns: repeat(3,1fr); }
  .charts-grid { grid-template-columns: repeat(2,1fr); }
  .chart-card.wide { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .dest-card { min-width: calc(33.33% - 14px); max-width: calc(33.33% - 14px); }
}

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .filter-sidebar {
    display: none;
    width: min(300px, 85vw);
    position: fixed; top: 0; left: 0; bottom: 0;
    z-index: 700; border-radius: 0;
    overflow-y: auto; max-height: 100vh;
  }
  .filter-sidebar.open { display: flex; flex-direction: column; }
  .fs-body { max-height: none; flex: 1; }
  .fs-close { display: flex; }
  .btn-filter-toggle { display: flex; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .cat-big { grid-column: span 3; min-height: 200px; }
  .como-steps { gap: 12px; }
  .step-arrow { display: none; }
  .vs-grid { grid-template-columns: repeat(2,1fr); }
  .planos-grid { grid-template-columns: 1fr; max-width: 460px; margin: 44px auto 0; }
  .plano-card.featured { transform: none; }
  .testimonios-grid { grid-template-columns: 1fr; max-width: 520px; margin: 40px auto 0; }
}

@media (max-width: 768px) {
  :root { --hh: 54px; --hch: 40px; }
  .header-search { display: none; }
  .logo-tagline { display: none; }
  .btn-anunciar span { display: none; }
  .btn-anunciar { padding: 9px 13px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .charts-grid { grid-template-columns: 1fr; }
  .chart-card.wide { grid-column: span 1; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .sf:nth-child(3), .sf:nth-child(4) { border-top: 1px solid var(--border); }
  .modal-gallery { grid-template-columns: 1fr; grid-template-rows: 240px; height: auto; }
  .gallery-thumb { display: none; }
  .gallery-main { grid-row: span 1; }
  .modal-2col { grid-template-columns: 1fr; }
  .dest-card { min-width: calc(50% - 10px); max-width: calc(50% - 10px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .similar-grid { grid-template-columns: repeat(2,1fr); }
  .catalog-layout { padding: 16px 16px 90px; }
  .mobile-bottom-bar { display: flex; }
  .sort-sel { display: none; }
  .view-btns { display: none; }
  .como-steps { flex-direction: column; align-items: center; }
  .planos-grid { grid-template-columns: 1fr; }
  .hero-counters { gap: 16px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-big { grid-column: span 2; }
  .dest-card { min-width: 84vw; max-width: 84vw; }
  .kpi-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr 1fr; }
  .cars-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-btns { flex-direction: column; align-items: center; }
  .modal-actions { flex-direction: column; }
  .hero-title { font-size: 42px; letter-spacing: -1px; }
  .hcat span { display: none; }
  .hcat { padding: 5px 10px; }
  .wa-float, .back-top { bottom: 80px; }
  .back-top { bottom: 20px; right: 20px; }
  .wa-float { right: 20px; }
}
