/* ============================================
   STRONGER MOTORS — REFINED DARK DESIGN
   Menos laranja. Mais impacto. Mobile-first.
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #FF6000;
  --orange-dark:  #cc4d00;
  --orange-glow:  rgba(255, 96, 0, 0.2);
  --black:        #080808;
  --logo-bg:      #1c1c1c;   /* exato fundo da logo */
  --dark:         #111111;
  --dark2:        #181818;
  --dark3:        #202020;
  --dark4:        #282828;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --gray:         #555;
  --gray-mid:     #888;
  --gray-light:   #aaa;
  --white:        #f5f5f5;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; padding: 0 20px; margin: 0 auto; }


::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 62px;
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-img {
  height: 40px; width: 40px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.logo-fallback { display: none; align-items: center; gap: 8px; }
.logo-icon     { font-size: 24px; color: var(--orange); }
.logo-title    { display: block; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 3px; line-height: 1; }
.logo-sub      { display: block; font-family: 'Oswald', sans-serif; font-size: 9px; letter-spacing: 4px; color: var(--orange); line-height: 1.3; }

.nav { display: none; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gray-light); border-radius: 2px;
  transition: background 0.2s;
}

.nav.open {
  display: flex;
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: var(--logo-bg);
  flex-direction: column;
  padding: 20px 20px 32px;
  gap: 0;
  z-index: 199;
  border-bottom: 1px solid var(--border);
}

.nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--gray-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav a:last-child { border-bottom: none; }
.nav a:active, .nav a:hover { color: var(--white); }

.btn-nav {
  margin-top: 16px !important;
  background: var(--orange) !important;
  color: #fff !important;
  padding: 14px 0 !important;
  border-radius: 6px !important;
  text-align: center !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  border-bottom: none !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/showroom.jpg') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 9s var(--ease);
  will-change: transform;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.75) 42%, rgba(8,8,8,0.08) 100%),
    linear-gradient(to right, rgba(8,8,8,0.65) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px 52px;
  width: 100%;
}

/* animação de entrada escalonada */
.hero-tag, .hero-title, .hero-desc, .hero-btns {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease) forwards;
}

.hero-tag   { animation-delay: 0.3s; }
.hero-title { animation-delay: 0.5s; }
.hero-desc  { animation-delay: 0.65s; }
.hero-btns  { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--orange);
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-highlight {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}

.hero-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}

.hero-btns { display: flex; flex-direction: column; gap: 10px; }

/* ===== BUTTONS ===== */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s;
}

/* ambos os botões do hero — mesmo estilo */
.btn-primary,
.btn-outline {
  background: var(--dark4);
  color: var(--gray-light);
  border: 1px solid var(--border-hover);
}

.btn-primary:active,
.btn-outline:active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(0.98);
}

/* ripple no tap */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* shimmer no hover (desktop) */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.5s var(--ease);
}

/* ===== STATS ===== */
.stats {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stat-item {
  padding: 22px 14px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}

.stat-item:nth-child(2n)    { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }

.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-plus { font-size: 24px; color: var(--orange); }

.stat-label {
  display: block;
  font-size: 10px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider { display: none; }

/* ===== SERVIÇOS ===== */
.servicos {
  padding: 56px 0;
  background: var(--dark);
}

.servicos-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.servico-card {
  background: var(--dark2);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: background 0.25s;
}

.servico-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--orange);
  transition: width 0.25s var(--ease);
}

.servico-card:active::after { width: 3px; }
.servico-card:active { background: var(--dark3); }

.servico-icon {
  font-size: 26px;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark3);
  border-radius: 8px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.servico-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.servico-card p { font-size: 12px; color: var(--gray-mid); line-height: 1.5; }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 24px; }

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.section-title span { color: var(--orange); }

.section-sub { font-size: 12px; color: var(--gray); margin-top: 6px; }

/* ===== ESTOQUE ===== */
.estoque {
  padding: 52px 0;
  background: var(--black);
  position: relative;
}

/* linha laranja decorativa no topo de cada seção */
.estoque::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(to right, var(--orange), transparent 60%);
}

.estoque-alt {
  background: var(--dark);
}

.estoque-alt::before {
  background: linear-gradient(to right, transparent, var(--orange) 50%, transparent);
}

/* ===== GRID — horizontal scroll no mobile ===== */
.vehicles-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding-bottom: 12px;
  /* esconde scrollbar mas mantém scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.vehicles-grid::-webkit-scrollbar { display: none; }

.vehicles-grid .vehicle-card {
  flex: 0 0 72vw;
  max-width: 280px;
  scroll-snap-align: start;
}

/* indicador de scroll */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}

.scroll-hint svg { animation: nudge 1.8s ease-in-out infinite; }

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}

/* ===== CARD ===== */
.vehicle-card {
  background: var(--dark2);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.vehicle-card:active {
  transform: scale(0.98);
  border-color: var(--border-hover);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark3);
  flex-shrink: 0;
}

.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.1) 55%);
  pointer-events: none;
}

.card-badge {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.card-badge.vendido-badge { background: rgba(30,30,30,0.9); color: var(--gray-mid); border: 1px solid var(--border); }
.card-badge.destaque      { background: var(--orange); color: #fff; }

.card-price-overlay {
  position: absolute;
  bottom: 10px; left: 10px;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.3px;
  text-shadow: 0 0 20px rgba(255,96,0,0.5);
}

.card-price-overlay.consulte {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray-light);
  text-transform: uppercase;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-hover);
  padding: 4px 10px;
  border-radius: 3px;
}

.card-body {
  padding: 11px 12px 13px;
  flex: 1; display: flex; flex-direction: column;
}

.card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 2px;
}

.card-info {
  font-size: 11px;
  color: var(--gray);
  padding-bottom: 8px;
}

/* CTA do card */
.card-cta {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  flex-shrink: 0;
  padding: 0 14px;
  background: #1faf5a;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: auto;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.card-cta:active {
  background: #178a47;
  transform: scale(0.97);
}

.card-sold-label {
  font-size: 10px;
  color: var(--gray);
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}

.cta-bg-img {
  position: absolute; inset: 0;
  background: url('../img/showroom.jpg') center/cover no-repeat;
  opacity: 0.04;
}

/* watermark "STRONGER" */
.cta-final::before {
  content: 'STRONGER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 88px;
  font-weight: 700;
  letter-spacing: 12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 18px;
}

.cta-tag::before, .cta-tag::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--border-hover);
}

.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-title span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
}

.cta-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 300px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.3px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--logo-bg);
  border-top: 1px solid var(--border);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-info { font-size: 12px; color: var(--gray); line-height: 1.9; }
.footer-info a { color: var(--gray-light); }
.footer-info a:hover { color: var(--orange); }
.footer-copy { font-size: 11px; color: var(--gray); opacity: 0.5; letter-spacing: 0.5px; }

/* ===== WHATSAPP FLOAT ===== */
.wpp-float-wrap {
  position: fixed;
  bottom: 22px; right: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wpp-float-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 0.22s var(--ease);
  transform-origin: bottom right;
}

.wpp-float-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.wpp-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark3);
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  padding: 11px 14px;
  min-width: 195px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  transition: border-color 0.2s, transform 0.2s;
}

.wpp-contact:active { border-color: #25D366; transform: scale(0.98); }

.wpp-contact-icon {
  width: 34px; height: 34px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.wpp-contact-info { display: flex; flex-direction: column; }
.wpp-name { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 1px; }
.wpp-num  { font-size: 11px; color: var(--gray-mid); }

.whatsapp-float {
  width: 54px; height: 54px;
  background: #1faf5a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
  animation: wppPulse 3s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s;
}

.whatsapp-float:active { transform: scale(0.92); }

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3), 0 0 0 0 rgba(37,211,102,0.2); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.3), 0 0 0 12px rgba(37,211,102,0); }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--dark2);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 540px;
  max-height: 92svh;
  overflow-y: auto;
  scrollbar-width: none;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  border-top: 1px solid var(--border-hover);
  position: relative;
}

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

/* drag handle */
.modal-handle {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin: 12px auto 0;
}

.modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin-top: 12px;
}

.modal-body { padding: 20px 20px 36px; }

.modal-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.modal-badge.oportunidade { background: var(--orange); color: #fff; }
.modal-badge.vendido      { background: var(--dark4); color: var(--gray-mid); border: 1px solid var(--border); }

.modal-name {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
}

.modal-info {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.modal-price {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(255,96,0,0.35);
}

.modal-price.consulte {
  font-size: 18px;
  color: var(--white);
  background: rgba(255,96,0,0.1);
  border: 1px solid rgba(255,96,0,0.25);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 6px;
  letter-spacing: 2px;
  text-shadow: none;
}

.modal-price-note {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 24px;
}

.modal-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.modal-cta-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.modal-cta-sub {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 18px;
}

.modal-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  min-height: 64px;
}

.modal-btn-edu {
  background: #1faf5a;
  color: #fff;
}

.modal-btn-carol {
  background: #1faf5a;
  color: #fff;
}

.modal-btn:active { transform: scale(0.97); }

.modal-btn-info { display: flex; flex-direction: column; }
.modal-btn-name { font-size: 15px; font-weight: 700; }
.modal-btn-num  { font-size: 13px; opacity: 0.8; font-weight: 400; margin-top: 2px; }

.modal-fotos-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,96,0,0.06);
  border: 1px solid rgba(255,96,0,0.2);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.modal-fotos-hint svg { flex-shrink: 0; margin-top: 1px; color: var(--orange); }

/* removido - botão separado não é mais usado */
.modal-btn-fotos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  margin-top: 16px;
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  color: var(--gray-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.modal-btn-fotos:active,
.modal-btn-fotos:hover {
  background: var(--dark4);
  border-color: var(--orange);
  color: var(--orange);
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gray-mid);
  font-size: 16px;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: var(--dark3); color: var(--white); }

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--orange), #ffaa00);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255,96,0,0.6);
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  background: var(--orange);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

.marquee-item::after {
  content: '•';
  color: rgba(255,255,255,0.4);
  font-size: 10px;
}

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

/* ===== ANIMAÇÕES DE SCROLL ===== */

/* base de todas as animações */
[data-anim] {
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

[data-anim].visible { opacity: 1; transform: none !important; }

/* tipos */
[data-anim="up"]    { transform: translateY(28px); }
[data-anim="left"]  { transform: translateX(-30px); }
[data-anim="right"] { transform: translateX(30px); }
[data-anim="scale"] { transform: scale(0.93); }
[data-anim="blur"]  { transform: translateY(14px); }

/* delays escalonados */
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* split text — cada letra */
.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotate(3deg);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.split-char.visible { opacity: 1; transform: none; }

/* ===== TABLET 600px ===== */
@media (min-width: 600px) {
  .container { padding: 0 28px; }
  .hero-title { font-size: 76px; }
  .hero-btns  { flex-direction: row; gap: 10px; }
  .btn        { width: auto; flex: 1; }

  .vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }
  .vehicles-grid .vehicle-card { flex: unset; max-width: unset; }
  .scroll-hint { display: none; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item  { border-bottom: none; }
  .stat-item:nth-child(2n)  { border-right: 1px solid var(--border); }
  .stat-item:last-child     { border-right: none; }

  .servicos-grid { flex-direction: row; }
  .servico-card  { flex-direction: column; align-items: flex-start; flex: 1; gap: 12px; }

  .cta-title    { font-size: 58px; }
  .section-title { font-size: 42px; }
}

/* ===== DESKTOP 960px ===== */
@media (min-width: 960px) {
  .container { max-width: 1200px; padding: 0 40px; }

  .header { height: 68px; }
  .nav-toggle { display: none; }

  .nav {
    display: flex !important;
    position: static;
    background: none;
    flex-direction: row;
    align-items: center;
    padding: 0; gap: 32px;
    border: none;
  }

  .nav a {
    display: flex;
    align-items: center;
    padding: 0; border: none;
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-mid);
    white-space: nowrap;
    transition: color 0.2s;
  }

  .nav a:hover { color: var(--white); }

  .btn-nav {
    background: transparent !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 4px !important;
    margin-top: 0 !important;
    border: 1px solid var(--border-hover) !important;
    border-bottom: 1px solid var(--border-hover) !important;
    width: auto !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    transition: background 0.25s, border-color 0.25s !important;
  }

  .btn-nav:hover {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
  }

  /* hero */
  .hero { align-items: center; }
  .hero-content { max-width: 680px; padding: 0 40px 100px; }
  .hero-title   { font-size: 98px; letter-spacing: -2px; }
  .hero-desc    { font-size: 14px; max-width: 380px; }
  .hero-btns    { flex-direction: row; gap: 12px; }
  .btn          { width: auto; }

  /* hover dos botões */
  .btn-primary:hover,
  .btn-outline:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-2px);
  }

  .btn:hover::after { left: 100%; }

  .hero-scroll {
    display: block;
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  .hero-scroll span {
    display: block;
    width: 1px; height: 52px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    margin: 0 auto;
    animation: scrollPulse 2.5s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
  }

  /* stats */
  .stats-grid { display: flex; }
  .stat-item  {
    flex: 1; padding: 28px 0; background: none;
    border-right: 1px solid var(--border) !important;
    border-bottom: none !important;
    transition: background 0.2s;
  }
  .stat-item:hover { background: rgba(255,255,255,0.02); }
  .stat-item:last-child { border-right: none !important; }
  .stat-num  { font-size: 50px; }

  /* serviços */
  .servicos        { padding: 72px 0; }
  .servicos-grid   { flex-direction: row; }
  .servico-card    { flex-direction: column; align-items: flex-start; flex: 1; padding: 30px 26px; gap: 14px; }
  .servico-card:hover::after { width: 3px; }
  .servico-card:hover { background: var(--dark3); }

  /* estoque */
  .estoque       { padding: 80px 0; }
  .section-title { font-size: 52px; }
  .section-header { margin-bottom: 40px; }
  .vehicles-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; overflow: visible; }

  .vehicle-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  }

  .vehicle-card:hover .card-img-wrap img { transform: scale(1.06); }

  .card-cta:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
  }

  /* cta */
  .cta-final  { padding: 120px 0; }
  .cta-title  { font-size: 70px; }
  .cta-content .hero-btns { justify-content: center; }

  /* footer */
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }

  /* wpp */
  .wpp-float-wrap { bottom: 30px; right: 30px; }
  .whatsapp-float { width: 58px; height: 58px; }
  .wpp-contact:hover { border-color: #25D366; transform: translateX(-4px); }
}
