/**
 * site.css — estilos exclusivos do site público (index.html).
 * Variáveis, reset, botões e badges compartilhados vivem em base.css.
 */

body { overflow-x: hidden; }

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
header.scrolled { background: rgba(10,10,10,0.98); }

.logo-mark { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-mark .top { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: 0.18em; color: var(--white); }
.logo-mark .sub { font-family: var(--font-display); font-weight: 300; font-size: 10px; letter-spacing: 0.52em; color: var(--gray-light); margin-top: 1px; }

nav[aria-label="Principal"] { display: flex; align-items: center; gap: 36px; }
nav[aria-label="Principal"] a { font-size: 13px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-light); text-decoration: none; transition: color 0.2s; }
nav[aria-label="Principal"] a:hover, nav[aria-label="Principal"] a:focus-visible { color: var(--white); }

.btn-wpp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 10px 20px; border-radius: 2px;
  transition: background 0.2s;
}
.btn-wpp:hover, .btn-wpp:focus-visible { background: var(--red-dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
#inicio {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; background: var(--black); padding-top: 68px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 60% 50%, #1a1a1a 0%, #0a0a0a 100%); }
.hero-lines { position: absolute; inset: 0; pointer-events: none; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px); }
.hero-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent); opacity: 0.6; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1200px; width: 100%; padding: 60px 40px;
}
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.hero-h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(52px, 7vw, 88px); line-height: 0.92; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 28px; }
.hero-h1 em { font-style: normal; color: var(--red); }
.hero-sub { font-size: 16px; font-weight: 300; color: var(--gray-light); line-height: 1.6; max-width: 400px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-car-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; width: 100%; max-width: 460px; opacity: 1; transition: opacity 0.35s ease; }
.hero-car-card.hero-fade-out { opacity: 0; }
.hero-car-img { width: 100%; height: 260px; background: var(--dark2); position: relative; overflow: hidden; }
.hero-car-img img { width: 100%; height: 100%; object-fit: contain; }
.hero-car-label { position: absolute; bottom: 16px; left: 16px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.hero-car-info { padding: 20px 24px; }
.hero-car-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: 0.04em; }
.hero-car-specs { display: flex; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.hero-car-spec { font-size: 12px; color: var(--gray-light); }
.hero-car-spec strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); }
.hero-car-price { font-family: var(--font-display); font-weight: 900; font-size: 28px; color: var(--white); margin-top: 14px; }
.hero-car-price span { font-size: 14px; font-weight: 300; color: var(--gray-light); margin-left: 4px; }

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 32px 40px; }
.stats-inner { display: flex; justify-content: center; gap: 80px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-n { font-family: var(--font-display); font-weight: 900; font-size: 42px; color: var(--white); line-height: 1; }
.stat-n span { color: var(--red); }
.stat-l { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-light); margin-top: 6px; }

/* ─── SECTIONS ─── */
.section { padding: 96px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section-h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(36px, 5vw, 60px); text-transform: uppercase; letter-spacing: 0.03em; line-height: 0.95; margin-bottom: 16px; }
.section-sub { font-size: 16px; font-weight: 300; color: var(--gray-light); line-height: 1.6; max-width: 500px; }

/* ─── ESTOQUE ─── */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 48px 0 36px; }
.filter-btn {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: var(--gray-light); cursor: pointer; transition: 0.2s;
}
.filter-btn:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.filter-btn[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: var(--white); }

.filters-open-btn {
  display: none; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: var(--white); cursor: pointer; transition: 0.2s;
}
.filters-open-btn:hover, .filters-open-btn:focus-visible { background: rgba(255,255,255,0.06); }

.filters-backdrop { display: none; }
.filters-panel-header { display: none; }

.filters-adv { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: -20px 0 20px; }
.filters-panel-fields { display: contents; }
.filters-range { display: flex; gap: 10px; }
.filters-range .filters-adv-field { flex: 1; min-width: 0; }
.filters-adv-field {
  font-size: 13px; font-family: var(--font-body); color: var(--white);
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.12); border-radius: 2px;
  padding: 9px 14px; min-width: 140px; outline: none; transition: border-color 0.2s;
}
.filters-adv-field:focus { border-color: var(--red); }
.filters-adv-field option { background: var(--dark); color: var(--white); }
.filters-adv-clear {
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; color: var(--gray-light);
  background: transparent; border: none; text-decoration: underline; cursor: pointer; padding: 9px 4px;
}
.filters-adv-clear:hover { color: var(--white); }

.filters-summary { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0 0 28px; min-height: 20px; }
.filters-summary-count { font-size: 12px; color: var(--gray-light); white-space: nowrap; }
.filters-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--white); background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 5px 12px;
  cursor: pointer; transition: 0.2s;
}
.filter-chip:hover, .filter-chip:focus-visible { border-color: var(--red); }
.filter-chip span { opacity: 0.6; font-size: 10px; }

.vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vehicles-empty { grid-column: 1 / -1; text-align: center; padding: 64px 20px; color: var(--gray-light); }
.vehicles-empty svg { opacity: 0.3; margin-bottom: 14px; }
.vehicles-empty p { font-size: 14px; }

.load-more-wrap { display: flex; justify-content: center; margin-top: 32px; }

.vehicle-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.vehicle-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }

.vehicle-img { position: relative; height: 200px; overflow: hidden; background: var(--dark2); display: flex; align-items: center; justify-content: center; }
.vehicle-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s; }
.vehicle-card:hover .vehicle-img img { transform: scale(1.04); }
.vehicle-img.no-image::after {
  content: ''; position: absolute; inset: 0;
  background: var(--dark2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='1.2'%3E%3Cpath d='M5 17H3a2 2 0 01-2-2V5a2 2 0 012-2h11l5 5v5m-7 9a2 2 0 100-4 2 2 0 000 4m6 0a2 2 0 100-4 2 2 0 000 4M1 11h18'/%3E%3C/svg%3E") center/40px no-repeat;
}
.vehicle-badge { position: absolute; top: 14px; left: 14px; }

.vehicle-info { padding: 20px; }
.vehicle-make { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 4px; }
.vehicle-model { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: 0.04em; }
.vehicle-specs { display: flex; gap: 16px; margin: 12px 0 16px; flex-wrap: wrap; list-style: none; }
.vehicle-spec { font-size: 11px; color: var(--gray-light); display: flex; align-items: center; gap: 4px; }
.vehicle-spec + .vehicle-spec::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--gray); margin-right: 12px; }
.vehicle-price { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--white); margin-bottom: 2px; }
.vehicle-installment { font-size: 12px; color: var(--gray-light); margin-bottom: 16px; }
.vehicle-actions { display: flex; gap: 10px; }
.v-btn-detail {
  flex: 1; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: var(--white); cursor: pointer; transition: 0.2s; text-align: center;
}
.v-btn-detail:hover, .v-btn-detail:focus-visible { border-color: rgba(255,255,255,0.4); }
.v-btn-wpp {
  flex: 1; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px; border-radius: 2px; background: var(--red); color: var(--white); cursor: pointer;
  transition: 0.2s; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.v-btn-wpp:hover, .v-btn-wpp:focus-visible { background: var(--red-dark); }

/* ─── CONSIGNAÇÃO ─── */
#consignacao { background: var(--dark); }
.consig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.consig-features { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.consig-feat { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; }
.consig-icon { width: 44px; height: 44px; border-radius: 2px; background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.consig-feat-text h3 { font-size: 14px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 6px; }
.consig-feat-text p { font-size: 13px; font-weight: 300; color: var(--gray-light); line-height: 1.5; }
.consig-visual { background: var(--black); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 48px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.consig-big { font-family: var(--font-display); font-weight: 900; font-size: 80px; color: var(--red); line-height: 1; }
.consig-big-label { font-size: 14px; font-weight: 300; color: var(--gray-light); margin-top: 8px; margin-bottom: 32px; }
.consig-steps { display: flex; flex-direction: column; gap: 16px; width: 100%; list-style: none; }
.consig-step { display: flex; align-items: center; gap: 16px; text-align: left; }
.step-n { width: 32px; height: 32px; border-radius: 50%; background: rgba(200,16,46,0.2); border: 1px solid var(--red); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--red); flex-shrink: 0; }
.step-txt { font-size: 13px; color: var(--off-white); }

/* ─── SOBRE ─── */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.sobre-showroom { position: relative; border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.sobre-map-embed { width: 100%; height: 360px; border: 0; display: block; background: var(--dark2); filter: grayscale(0.15) contrast(1.05); }
.sobre-tag-float { position: absolute; bottom: 24px; left: 24px; background: rgba(10,10,10,0.9); border: 1px solid rgba(255,255,255,0.1); padding: 16px 20px; border-radius: 4px; backdrop-filter: blur(8px); }
.sobre-tag-float p { font-size: 12px; color: var(--gray-light); font-weight: 300; }
.sobre-tag-float strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 2px; }
.sobre-text p { font-size: 16px; font-weight: 300; color: var(--gray-light); line-height: 1.7; margin-bottom: 20px; }
.sobre-text p strong { color: var(--white); font-weight: 600; }
.sobre-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; list-style: none; }
.sobre-val { padding: 20px; background: var(--dark); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; }
.sobre-val h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.sobre-val p { font-size: 12px; color: var(--gray-light); line-height: 1.5; }

/* ─── CONTATO ─── */
#contato { background: var(--dark); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.contato-map { background: var(--black); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; min-height: 320px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; padding: 24px; text-align: center; }
.map-placeholder { opacity: 0.3; }
.map-label { font-size: 13px; color: var(--gray-light); }
.map-cta { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }
.map-cta:hover, .map-cta:focus-visible { opacity: 0.8; }

.contato-infos { display: flex; flex-direction: column; gap: 32px; }
.contato-block h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.contato-block p, .contato-block a { font-size: 15px; font-weight: 300; color: var(--off-white); line-height: 1.6; text-decoration: none; display: block; }
.contato-block a:hover, .contato-block a:focus-visible { color: var(--white); }
.horario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.horario-item { font-size: 13px; color: var(--gray-light); }
.horario-item strong { color: var(--white); font-weight: 600; font-size: 12px; display: block; }
.social-links { display: flex; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-light); text-decoration: none;
  padding: 10px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; transition: 0.2s;
}
.social-link:hover, .social-link:focus-visible { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.07); padding: 48px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo .top { font-family: var(--font-display); font-weight: 900; font-size: 18px; letter-spacing: 0.18em; }
.footer-logo .sub { font-family: var(--font-display); font-weight: 300; font-size: 8px; letter-spacing: 0.52em; color: var(--gray-light); margin-top: 2px; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; list-style: none; }
.footer-nav a { font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-light); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--white); }
.footer-copy { font-size: 11px; color: var(--gray); }
.footer-ntech { color: var(--gray-light); font-weight: 600; }

/* ─── MODAL DE VEÍCULO ─── */
.modal-overlay { position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.88); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-photo { position: relative; }
.modal-img { width: 100%; height: 300px; background: var(--dark2); cursor: zoom-in; }
.modal-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.55); border: none; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; }
.modal-nav:hover, .modal-nav:focus-visible { background: rgba(0,0,0,.8); }
.modal-nav.prev { left: 12px; }
.modal-nav.next { right: 12px; }
.modal-zoom { position: absolute; bottom: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,.55); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; }
.modal-zoom:hover, .modal-zoom:focus-visible { background: rgba(0,0,0,.8); }

/* ─── LIGHTBOX (foto em tela cheia) ─── */
.lightbox-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,0.96); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 100%; max-height: 92vh; object-fit: contain; display: block; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.lightbox-close:hover, .lightbox-close:focus-visible { background: rgba(255,255,255,0.2); }
.lightbox-overlay .modal-nav { width: 48px; height: 48px; font-size: 30px; }
.modal-body { padding: 32px; }
.modal-make { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); }
.modal-model { font-family: var(--font-display); font-weight: 900; font-size: 36px; text-transform: uppercase; letter-spacing: 0.03em; margin: 4px 0 20px; }
.modal-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; list-style: none; }
.modal-spec { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; padding: 14px 16px; }
.modal-spec label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); display: block; margin-bottom: 4px; }
.modal-spec span { font-size: 14px; font-weight: 600; }
.modal-price { font-family: var(--font-display); font-weight: 900; font-size: 40px; margin-bottom: 4px; }
.modal-desc { font-size: 13px; color: var(--gray-light); line-height: 1.6; margin-bottom: 24px; }

.modal-installment { margin-bottom: 20px; }
.modal-installment-toggle {
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: var(--red);
  background: transparent; border: none; text-decoration: underline; cursor: pointer; padding: 4px 0;
}
.modal-installment-toggle:hover { color: var(--white); }
.modal-installment-body { margin-top: 12px; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; }
.modal-installment-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.modal-installment-row label { font-size: 12px; color: var(--gray-light); }
.modal-installment-row input, .modal-installment-row select {
  font-size: 13px; color: var(--white); background: var(--dark2); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px; padding: 7px 10px; width: 140px; outline: none;
}
.modal-installment-row input:focus, .modal-installment-row select:focus { border-color: var(--red); }
.modal-installment-row select option { background: var(--dark); }
.modal-installment-result { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 12px 0 8px; }
.modal-installment-disclaimer { font-size: 10px; color: rgba(255,255,255,0.35); line-height: 1.5; }
.modal-actions { display: flex; gap: 12px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.modal-close:hover, .modal-close:focus-visible { background: rgba(255,255,255,0.2); }

/* ─── BOTÃO FLUTUANTE WHATSAPP ─── */
.float-wpp {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wpp:hover, .float-wpp:focus-visible { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ─── MENU MOBILE ─── */
.mobile-nav {
  display: none; position: fixed; inset: 68px 0 0 0; z-index: 99;
  background: rgba(10,10,10,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  backdrop-filter: blur(12px); list-style: none;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); text-decoration: none; }
.mobile-nav a:hover, .mobile-nav a:focus-visible { color: var(--red); }

/* ─── RESPONSIVO ─── */
@media (max-width: 900px) {
  header { padding: 0 20px; }
  nav[aria-label="Principal"] { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .hero-visual { order: -1; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .consig-grid, .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 20px; }
  .stats-inner { gap: 40px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .modal-specs { grid-template-columns: repeat(2, 1fr); }
  .sobre-values { grid-template-columns: 1fr; }

  /* Filtros avançados viram uma gaveta (drawer) que sobe do rodapé, acionada pelo botão "Filtrar" */
  .filters-open-btn { display: inline-flex; }
  .filters-backdrop {
    display: block; position: fixed; inset: 0; z-index: 998; background: rgba(0,0,0,0.6);
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
  }
  .filters-backdrop.open { opacity: 1; pointer-events: auto; }
  .filters-adv {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 999; margin: 0;
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px 16px 0 0; max-height: 85vh; overflow-y: auto;
    flex-direction: column; align-items: stretch; padding: 20px;
    transform: translateY(110%); transition: transform 0.3s ease;
  }
  .filters-adv.open { transform: translateY(0); }
  .filters-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
  .filters-panel-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; font-size: 16px; }
  .filters-panel-close {
    width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1);
    border: none; color: var(--white); font-size: 16px; cursor: pointer;
  }
  .filters-panel-fields { display: flex; flex-direction: column; gap: 12px; }
  .filters-adv-field { width: 100%; min-width: 0; }
}
@media (max-width: 600px) {
  .vehicles-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 48px; }
  .modal-actions { flex-direction: column; }
  .consig-big { font-size: 60px; }
}

/* Animações de entrada do hero */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-text > * { animation: fadeUp 0.6s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero-h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-visual { animation: fadeUp 0.7s 0.3s ease both; }
