/* ══════════════════════════════════════════════
   PRINT RACING – MOBILIDADE ELÉTRICA
   Design System: Futuristic + Eco + High-Tech
   Colors extracted from logo:
     Primary:    #8AE234 (neon lime green)
     Secondary:  #111111 (deep black)
     Accent:     #FFFFFF (white)
     Mid:        #1A1A1A, #222, #2D2D2D
══════════════════════════════════════════════ */

:root {
  --green:         #8AE234;
  --green-dark:    #6BBF1A;
  --green-glow:    rgba(138, 226, 52, 0.3);
  --green-subtle:  rgba(138, 226, 52, 0.08);
  --black:         #0A0A0A;
  --black-2:       #111111;
  --black-3:       #1A1A1A;
  --black-4:       #222222;
  --card-bg:       #141414;
  --border:        rgba(138, 226, 52, 0.15);
  --border-dim:    rgba(255,255,255,0.06);
  --text-primary:  #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted:    rgba(255,255,255,0.4);
  --font-display: 'Orbitron', monospace;
  --font-body:    'Inter', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-green: 0 0 30px rgba(138, 226, 52, 0.25);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.6);
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── CUSTOM CURSOR ─── */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--green);
  transition: all 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor-ring { opacity: 1; }
@media (max-width: 768px) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 2px; }

/* ─── TYPOGRAPHY UTILITIES ─── */
.gradient-text {
  background: linear-gradient(90deg, var(--green), #c8ff60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.5rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--black);
  box-shadow: 0 4px 20px var(--green-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 20%; height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}
.btn-primary:hover::after {
  left: 120%;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px var(--green-glow), 0 0 0 1px var(--green);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-dim);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--green-glow);
}
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn svg { flex-shrink: 0; width: 18px; height: 18px; }

/* ─── SECTION GLOBALS ─── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-subtle);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════
   TOPBAR – Franchise & Payments
══════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  background: linear-gradient(90deg, #0A0A0A 0%, #111 50%, #0A0A0A 100%);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 44px;
}
.topbar-payment {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
}
.payment-item strong {
  color: var(--green);
}
.payment-divider {
  opacity: 0.3;
  color: var(--text-muted);
}
.topbar-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--green), #b4eb73);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(138, 226, 52, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(138, 226, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(138, 226, 52, 0); }
}
.topbar-cta:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 0 20px var(--green-glow);
}

@media (max-width: 768px) {
  .topbar-inner {
    justify-content: center;
    height: auto;
    padding: 0.65rem 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .payment-divider { display: none; }
  .topbar-payment {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 44px;
  left: 0; 
  right: 0;
  z-index: 1001;
  transition: var(--transition);
  background: #0A0A0A; /* Solid background for clarity */
  border-bottom: 1px solid rgba(138, 226, 52, 0.2);
}
@media (max-width: 768px) {
  .navbar { 
    top: 64px; /* Matches topbar mobile height better */
    height: 70px;
  }
}
.navbar.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}
.nav-logo { flex-shrink: 0; }
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--green-glow));
  transition: var(--transition);
}
.logo-img:hover {
  filter: drop-shadow(0 0 16px var(--green-glow));
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .logo-img { height: 50px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--green); }
.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-dim);
}
.mobile-menu.open { max-height: 400px; padding: 1rem 0 1.5rem; }
.mobile-menu ul { text-align: center; display: flex; flex-direction: column; gap: 0.25rem; padding: 0 1.25rem; }
.mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-link:hover { color: var(--green); background: var(--green-subtle); }
.mobile-btn { display: block; text-align: center; margin-top: 0.75rem; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 10rem;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(138,226,52,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(138,226,52,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, #0D0D0D 100%);
  will-change: transform;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,226,52,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,226,52,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-subtle);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 60px rgba(138,226,52,0.1);
  animation: heroEntrance 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2rem;
  animation: heroEntrance 1.2s cubic-bezier(0.4,0,0.2,1) 0.5s both;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px; height: 32px;
  background: var(--border-dim);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 0.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  z-index: 2;
  animation: fadeInUp 1s ease 2s both;
}
.scroll-arrow svg { width: 20px; height: 20px; animation: scrollBounce 2s infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ══════════════════════════════════════════════
   SUSTAINABILITY
══════════════════════════════════════════════ */
.sustainability {
  padding: 6rem 0;
  background: var(--black-2);
  position: relative;
}
.sustainability::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.sustain-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sustain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.sustain-card:hover::before { transform: scaleX(1); }
.sustain-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 20px var(--green-glow);
}
.sustain-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  display: block;
}
.sustain-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.sustain-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   ECONOMY CALCULATOR
══════════════════════════════════════════════ */
.economy-calculator {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
}
.economy-calculator::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.calculator-wrapper {
  background: linear-gradient(180deg, var(--card-bg), var(--black-2));
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.calculator-header {
  text-align: center;
  margin-bottom: 3rem;
}
.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .calculator-grid { grid-template-columns: 1fr; gap: 2rem; }
  .calculator-wrapper { padding: 2rem 1.25rem; }
}

/* Controls */
.calculator-controls {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.control-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.slider-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.slider-value {
  min-width: 80px;
  background: var(--black-3);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border-dim);
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--green);
  text-align: center;
  letter-spacing: 0.05em;
}

/* Custom Range Slider */
.custom-slider {
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--black-3);
  outline: none;
  border-radius: 50px;
  border: 1px solid var(--border-dim);
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 0 10px var(--green-glow);
  transition: transform 0.2s ease;
}
.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px var(--green-glow);
  transition: transform 0.2s ease;
}
.custom-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--green-subtle);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}
.info-note span { font-size: 1.2rem; }
.info-note p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }

/* Result Box */
.calculator-result {
  height: 100%;
}
.result-box {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.result-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, var(--green-glow) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.result-box h3 {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.result-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px var(--green-glow);
}
.result-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   MOTOS SHOWCASE
══════════════════════════════════════════════ */
.motos {
  padding: 6rem 0;
  background: var(--black-2);
}
.motos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .motos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .motos-carousel-wrapper {
    position: relative;
    padding: 0 1rem;
  }
  .motos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-bottom: 2rem;
    margin: 0;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: auto;
  }
  .motos-grid::-webkit-scrollbar {
    display: none;
  }
  .moto-card {
    min-width: auto;
    width: 100%;
    scroll-snap-align: none;
    flex-shrink: 1;
  }
  /* Hide carousel controls on mobile for motorcycles */
  .motos-carousel-wrapper .carousel-nav,
  .motos-carousel-wrapper .carousel-dots {
    display: none !important;
  }
}

/* ─── CAROUSEL CONTROLS ─── */
.motos-carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.carousel-nav:hover {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 20px var(--green-glow);
}

.carousel-nav.prev { left: -24px; }
.carousel-nav.next { right: -24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--green-glow);
}

@media (max-width: 1100px) {
  .carousel-nav.prev { left: 0; }
  .carousel-nav.next { right: 0; }
}

@media (max-width: 680px) {
  /* Keep arrows visible based on the logic above */
}
.moto-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.moto-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), 0 0 25px var(--green-glow);
}
.moto-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 3;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-family: var(--font-display);
}
.moto-badge.new {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: #fff;
}
.moto-badge.alt {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

/* Moto image area */
.moto-image-wrap {
  position: relative;
  aspect-ratio: 4/5; /* Formato vertical (Retrato) ideal para fotos de celular */
  overflow: hidden;
  background: var(--black-3);
}
.moto-placeholder {
  width: 100%; height: 100%;
  position: relative;
}
.moto-img {
  width: 100%; 
  height: 100%;
  object-fit: cover; /* Preenche todo o card sem deixar bordas pretas */
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.moto-card:hover .moto-img { transform: scale(1.05); }
.placeholder-content {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
}
.placeholder-svg svg {
  width: 120px; height: 75px;
  color: var(--green);
  opacity: 0.6;
  transition: var(--transition);
}
.moto-card:hover .placeholder-svg svg { opacity: 1; transform: scale(1.05); }
.placeholder-content span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}
.moto-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, var(--green-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.moto-card:hover .moto-glow { opacity: 1; }

/* Moto info */
.moto-info { padding: 1.5rem; }
.moto-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.moto-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.moto-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 0.25rem;
  margin-bottom: 1.25rem;
}
.spec {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.3;
}
.spec-icon {
  font-size: 0.8rem;
  flex-shrink: 0;
}
.moto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dim);
}
.moto-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 0.05em;
}

/* Motos CTA */
.motos-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
}
.motos-cta p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
.stats-section {
  padding: 6rem 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.stats-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(138,226,52,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.stat-card:hover::after { transform: scaleX(1); }
.stat-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
}
.stat-number {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-suffix {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green);
  opacity: 0.7;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════
   NOSSAS LOJAS
══════════════════════════════════════════════ */
.lojas-section {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
}
.lojas-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.city-group {
  margin-bottom: 2.5rem;
}
.city-group:last-child { margin-bottom: 0; }
.city-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.lojas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.loja-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.loja-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.loja-card:hover::before { transform: scaleX(1); }
.loja-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 20px var(--green-glow);
}
.loja-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}
.loja-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.loja-details {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.loja-details li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.loja-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
}
.loja-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 600px) {
  .lojas-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   CONTACT CTA
══════════════════════════════════════════════ */
.contact-cta {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-glow-left, .cta-glow-right {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  pointer-events: none;
}
.cta-glow-left {
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(138,226,52,0.07) 0%, transparent 70%);
}
.cta-glow-right {
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(138,226,52,0.07) 0%, transparent 70%);
}
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 0 60px rgba(138,226,52,0.08);
  position: relative;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 1rem 0;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #050505;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--border-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  height: 80px; width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 10px var(--green-glow));
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-subtle);
  transform: translateY(-5px) rotate(8deg);
  box-shadow: var(--shadow-green);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li, .footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-tagline { color: var(--green); letter-spacing: 0.06em; }

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 950;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6); }

/* ══════════════════════════════════════════════
   LEAD CAPTURE MODAL
══════════════════════════════════════════════ */
.lead-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 6, 0.85); /* Dark overlay */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}
.lead-modal.show {
  display: flex;
  opacity: 1;
}
.lead-modal-content {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(138, 226, 52, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-modal.show .lead-modal-content {
  transform: translateY(0) scale(1);
}
.lead-modal-close {
  color: #aaa;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.lead-modal-close:hover, .lead-modal-close:focus {
  color: var(--green);
  text-decoration: none;
}
.lead-modal-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', sans-serif;
}
.lead-modal-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.lead-input {
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.lead-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(138, 226, 52, 0.2);
}
.lead-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}


/* ══════════════════════════════════════════════
   RESPONSIVE – MOBILE FIRST
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { 
    display: flex !important; /* Force display */
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
  }
  .hamburger span {
    background: #FFFFFF !important; /* Ensure visibility */
  }
  .nav-inner {
    justify-content: center; /* Centers the logo */
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .nav-logo {
    margin: 0 auto;
    display: block;
  }
  .mobile-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero { padding-top: 140px !important; } /* Pushes content below fixed headers */
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-cta-group { flex-direction: column; }
  .hero-badges-row { gap: 1rem; }
  .motos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    touch-action: auto;
  }
  .motos-grid::-webkit-scrollbar, .sustain-grid::-webkit-scrollbar {
    display: none;
  }
  .moto-card {
    min-width: auto;
    width: 100%;
    scroll-snap-align: none;
  }
  .moto-info { padding: 0.75rem !important; }
  .moto-name { font-size: 0.9rem !important; margin-bottom: 0.25rem; }
  .moto-desc { font-size: 0.75rem !important; margin-bottom: 0.75rem; }
  .moto-specs { gap: 0.35rem 0.15rem; margin-bottom: 0.75rem; }
  .spec { font-size: 0.65rem !important; }
  .moto-price-row { padding-top: 0.75rem; }
  .price-amount { font-size: 1.1rem !important; }
  /* Prevent side pulling on main sections */
  section {
    overflow: hidden !important;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { padding: 2.5rem 1.25rem; }
  .cta-actions { flex-direction: column; }
}

@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-badges-row { flex-direction: column; }
  .stat-divider { display: none; }
}

/* ══════════════════════════════════════════════
   SPECIAL PROMO BANNER (HERO)
══════════════════════════════════════════════ */
.special-promo {
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.promo-content {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(138, 226, 52, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 20px rgba(138, 226, 52, 0.1);
  text-align: left;
}
.promo-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(138,226,52,0.1), transparent 60%);
  pointer-events: none;
}
.promo-header {
  margin-bottom: 2rem;
  text-align: center;
}
.promo-tag {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
  animation: flash 2s infinite;
}
@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.promo-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(138,226,52,0.4);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.promo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.promo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px var(--green));
}
.promo-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.promo-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.promo-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.promo-how {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}
.promo-how strong {
  color: var(--green);
  font-style: normal;
}

@media (max-width: 680px) {
  .promo-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .promo-content { padding: 1.5rem; }
  .promo-header h3 { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════════
   FLOATING FRANCHISE TAB
══════════════════════════════════════════════ */
.franchise-side-tab {
  position: fixed;
  right: -130px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background: var(--green);
  color: var(--black);
  padding: 0.8rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: 12px 12px 0 0;
  z-index: 9999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: -5px 0 30px rgba(138, 226, 52, 0.5);
  animation: tab-pulse-glow 3s infinite;
}
@keyframes tab-pulse-glow {
  0% { box-shadow: -5px 0 20px rgba(138, 226, 52, 0.4); }
  50% { box-shadow: -5px 0 40px rgba(138, 226, 52, 0.7); }
  100% { box-shadow: -5px 0 20px rgba(138, 226, 52, 0.4); }
}
.franchise-side-tab:hover {
  right: -115px;
  background: #fff;
  box-shadow: -5px 0 50px rgba(255, 255, 255, 0.8);
}
.franchise-side-tab .tab-icon {
  transform: rotate(90deg);
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .franchise-side-tab {
    top: auto;
    bottom: 1.5rem;
    left: 1.5rem;
    right: auto;
    transform: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px; /* Pill shape */
    font-size: 0.75rem;
    box-shadow: 0 10px 30px rgba(138, 226, 52, 0.4);
    animation: floating-pill-glow 3s infinite;
  }
  @keyframes floating-pill-glow {
    0% { box-shadow: 0 5px 15px rgba(138, 226, 52, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(138, 226, 52, 0.7); }
    100% { box-shadow: 0 5px 15px rgba(138, 226, 52, 0.4); }
  }
  .franchise-side-tab:hover {
    right: auto;
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.8);
  }
  .franchise-side-tab .tab-icon {
    transform: none;
  }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
  .topbar-cta .tab-text { display: none !important; }
  .whatsapp-float {
    width: 44px !important;
    height: 44px !important;
    bottom: 0.75rem !important;
    right: 0.75rem !important;
    z-index: 1000;
  }
  .whatsapp-float svg { width: 20px !important; height: 20px !important; }
  
  .franchise-side-tab {
    padding: 0.5rem 0.7rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    z-index: 1000;
    gap: 0 !important;
  }
  .franchise-side-tab .tab-text {
    display: none !important; /* Hide text to prevent overlap */
  }
  .franchise-side-tab .tab-icon {
    font-size: 1.2rem !important;
    margin: 0 !important;
  }
  
  .topbar-cta {
    padding: 0.3rem 0.6rem !important;
    font-size: 0 !important; /* Hide text but keep icon/bg */
  }
  .topbar-cta::before {
    content: '🚀';
    font-size: 0.85rem !important;
  }
  
  .motos-grid {
    gap: 0.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .moto-info {
    padding: 0.5rem !important;
  }
  .moto-name {
    font-size: 0.85rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .moto-specs {
    grid-template-columns: 1fr !important; /* FORCING 1 COLUMN */
    gap: 0.25rem !important;
  }
  .spec {
    font-size: 0.68rem !important;
  }
  .price-amount {
    font-size: 1.1rem !important;
  }
  .btn-moto {
    padding: 0.6rem 0.5rem !important;
    font-size: 0.8rem !important;
  }
}

#whatsappFloat { bottom: 2rem; right: 2rem; }

/* ══════════════════════════════════════════════
   CLIENTES E AMIGOS - ESTILO ÁLBUM EM PÉ
══════════════════════════════════════════════ */
.clients-section {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.album-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  transition: var(--transition);
  aspect-ratio: 3 / 4;
}

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--black-3);
}

.album-item:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px var(--green-glow);
}

.album-item:hover img {
  transform: scale(1.05);
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-item:hover .album-overlay {
  opacity: 1;
}

.album-overlay span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.clients-cta {
  text-align: center;
  border-top: 1px solid var(--border-dim);
  padding-top: 3rem;
}

@media (max-width: 900px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .album-item {
    aspect-ratio: 3 / 4;
  }
}

/* ══════════════════════════════════════════════
   ALBUM STATS COUNTER
══════════════════════════════════════════════ */
.album-stats-section {
  padding: 3rem 0;
  background: var(--black);
}
.album-stats-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.album-stat-card {
  text-align: center;
}
.album-stat-number {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 15px var(--green-glow);
}
.album-stat-suffix {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--green);
}
.album-stat-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .album-stats-grid { gap: 1.5rem; }
  .album-stat-card { width: 40%; }
}

/* ══════════════════════════════════════════════
   LIGHTBOX MODAL
══════════════════════════════════════════════ */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}
.lightbox-modal.show {
  display: flex;
  opacity: 1;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 10002;
  transition: color 0.3s;
}
.lightbox-close:hover {
  color: var(--green);
}
.lightbox-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 85%;
  max-width: 1000px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.show .lightbox-img {
  transform: scale(1);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10001;
}
.lightbox-nav:hover {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}
.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; }
.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
}

/* ══════════════════════════════════════════════
   WHATSAPP CHATBOT MENU
══════════════════════════════════════════════ */
.chatbot-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.chatbot-menu {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 1rem;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}
.chatbot-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.chatbot-header {
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-dim);
  padding-bottom: 0.8rem;
}
.chatbot-option {
  background: var(--black-3);
  color: var(--text-secondary);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.chatbot-option:hover {
  background: rgba(138, 226, 52, 0.1);
  color: var(--green);
  border-color: var(--green);
  transform: translateX(-5px);
}
.whatsapp-float {
  position: static; /* Inside wrapper now */
}
@media (max-width: 600px) {
  .chatbot-wrapper {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

