/* ── RESET & VARIÁVEIS ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #F5C800;
  --yellow-dim: #C9A400;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;
  --card: #181818;
  --border: rgba(245,200,0,0.15);
  --text: #E8E8E8;
  --muted: #888;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
  flex: 1;
}

.logo-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: var(--dark);
}

html {
  scroll-behavior: smooth;
}

.bv-emoji {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bv-emoji img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo span { color: var(--yellow); }

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .5px;
  transition: color .2s;
  position: relative;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width .3s;
}

nav ul a:hover { color: var(--yellow); }
nav ul a:hover::after { width: 100%; }

.nav-cta {
  background: var(--yellow);
  color: var(--dark) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: .82rem !important;
  letter-spacing: 1px;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #fff !important; color: var(--dark) !important; }

.desktop-only {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
.mobile-only {
  display: none !important;
}

/* Hamburguer — escondido no desktop */
.nav-hamburger { display: none; }


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(245,200,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(245,200,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245,200,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,200,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-left { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,0,0.08);
  border: 1px solid rgba(245,200,0,0.25);
  border-left: 3px solid var(--yellow);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* hero-badge blink removed */

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .92;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Botões */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  text-decoration: none;
  transition: all .25s;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,200,0,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s;
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.hstat {
  padding: 18px 28px;
  border-right: 1px solid var(--border);
}

.hstat:last-child { border-right: none; }

.hstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}

.hstat-label {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero right — roda */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.wheel-wrap {
  position: relative;
  width: 420px; height: 420px;
}

.wheel-outer {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(245,200,0,0.2);
  position: absolute;
  animation: spin 18s linear infinite;
}

.wheel-inner {
  width: 75%; height: 75%;
  border-radius: 50%;
  border: 1px solid rgba(245,200,0,0.12);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 12s linear infinite reverse;
}

@keyframes spin { to { transform: rotate(360deg); } }

.spoke {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 1px;
  background: linear-gradient(90deg, rgba(245,200,0,0.4), transparent);
  transform-origin: left center;
}

.wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue';
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: 2px;
  box-shadow: 0 0 40px rgba(245,200,0,0.4);
  z-index: 2;
}

.float-badge {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .8rem;
}

.float-badge strong {
  display: block;
  color: var(--yellow);
  font-family: 'Bebas Neue';
  font-size: 1.4rem;
}

.float-badge span { color: var(--muted); font-size: .7rem; }

.fb1 { top: 10%; right: -20px; }
.fb2 { bottom: 15%; left: -30px; }
.fb3 { top: 42%; right: -40px; }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark2);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  font-family: 'Bebas Neue';
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--muted);
}

.marquee-dot { color: var(--yellow); font-size: 1.2rem; }

/* ── SEÇÕES COMUNS ── */
section { padding: 100px 48px; }

.section-label {
  font-size: .72rem;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--yellow);
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: .5px;
}

/* ── SOBRE ── */
.sobre { background: var(--dark2); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.sobre-img-wrap { position: relative; }

.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark3);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 6rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.sobre-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}

.sobre-tag {
  position: absolute;
  bottom: -16px; right: 24px;
  background: var(--yellow);
  color: var(--dark);
  padding: 8px 18px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1px;
}

.sobre-text h2 { margin-bottom: 24px; }
.sobre-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.sobre-checks {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text);
}

.check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(245,200,0,0.15);
  border: 1px solid rgba(245,200,0,0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--yellow);
  font-size: .7rem;
}

.brand-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.brand-chip {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ── SERVIÇOS ── */
.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: all .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.card:hover {
  border-color: rgba(245,200,0,0.35);
  transform: translateY(-4px);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--yellow);
  flex-shrink: 0;
}

.card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.card p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

.card-price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--yellow);
  font-weight: 600;
}

.card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(245,200,0,0.08), transparent);
  border-color: rgba(245,200,0,0.25);
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.card-featured .card-icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
}

/* ── PROCESSO ── */
.processo { background: var(--dark2); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow-dim), transparent);
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue';
  font-size: 1.4rem;
  color: var(--yellow);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all .3s;
}

.step:hover .step-num {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  box-shadow: 0 0 24px rgba(245,200,0,0.4);
}

.step h4 {
  font-family: 'Syne';
  font-weight: 700;
  margin-bottom: 8px;
}

.step p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ── DEPOIMENTOS ── */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.depo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color .3s;
}

.depo:hover { border-color: rgba(245,200,0,0.3); }

.depo-stars {
  color: var(--yellow);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.depo q {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: normal;
  display: block;
  margin-bottom: 20px;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245,200,0,0.12);
  border: 1px solid rgba(245,200,0,0.3);
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .5px;
  font-family: 'Syne', sans-serif;
  flex-shrink: 0;
}

.depo-name { font-weight: 600; font-size: .85rem; }
.depo-sub  { font-size: .75rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section { background: var(--dark2); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  padding-bottom: 4px;
}

.faq-chevron {
  color: var(--yellow);
  font-size: 1.1rem;
  transition: transform .3s;
}

.faq-item.open .faq-chevron { transform: rotate(45deg); }

.faq-a {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s, padding .35s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 12px;
}

.faq-side {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

.faq-side h3 {
  font-family: 'Syne';
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.faq-side p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ci {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
}

.ci-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(245,200,0,0.08);
  border: 1px solid rgba(245,200,0,0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--yellow);
}
.ci span  { color: var(--muted); }
.ci strong { color: var(--text); display: block; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--yellow);
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: 'DOCTOR BIKES';
  position: absolute;
  font-family: 'Bebas Neue';
  font-size: 14rem;
  color: rgba(0,0,0,0.06);
  white-space: nowrap;
  top: 50%; transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: 8px;
}

.cta-final h2 {
  color: var(--dark);
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-final p {
  color: rgba(0,0,0,0.6);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-btns { display: flex; gap: 16px; position: relative; }

.cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--yellow);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .25s;
}

.cta-dark:hover { background: #111; transform: translateY(-2px); }

.cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.12);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.2);
  transition: all .25s;
}

.cta-white:hover { background: rgba(0,0,0,0.2); }

/* ── FOOTER ── */
footer {
  background: #080808;
  padding: 60px 48px 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.7;
  margin: 16px 0;
}

.socials { display: flex; gap: 12px; }

.social {
  width: 36px; height: 36px;
  border-radius: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: all .25s;
  color: var(--muted);
}

.social:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

.footer-col h4 {
  font-family: 'Syne';
  font-weight: 700;
  margin-bottom: 20px;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: .78rem;
  color: var(--muted);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .25s, box-shadow .25s;
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

.wa-float:hover { transform: scale(1.1); }

/* ── FADE IN ── */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s, transform .6s;
}

.fade.visible { opacity: 1; transform: none; }
.fade-d1 { transition-delay: .1s; }
.fade-d2 { transition-delay: .2s; }
.fade-d3 { transition-delay: .3s; }
.fade-d4 { transition-delay: .4s; }

/* ── RESPONSIVO — TABLET ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  nav ul { display: none; }
  .desktop-only { display: none !important; }

  .hero {
    grid-template-columns: 1fr;
    padding: 110px 20px 60px;
  }

  .hero-right { display: none; }

  section { padding: 70px 20px; }

  .sobre-grid,
  .faq-grid { grid-template-columns: 1fr; }

  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .card-featured { grid-column: span 2; }

  .steps { grid-template-columns: 1fr 1fr; }

  .depo-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  footer { padding: 48px 20px 24px; }

  .cta-final { padding: 60px 20px; }

  .bikes-venda { padding: 70px 20px; }
  .bv-grid { grid-template-columns: 1fr; }
  .bv-header { flex-direction: column; align-items: flex-start; }
  .bv-footer { flex-direction: column; text-align: center; }
}

/* ── RESPONSIVO — MOBILE ── */
@media (max-width: 480px) {

  /* ── NAV ── */
  nav {
    padding: 12px 16px;
  }

  nav ul { display: none; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transition: all .3s;
  }

  nav.menu-open {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(13,13,13,0.99);
    backdrop-filter: none;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 999;
    padding: 0;
  }

  nav.menu-open .logo { display: none; }

  nav.menu-open ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 24px;
    position: static;
    padding: 80px 28px 0 0;
    transform: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  nav.menu-open ul a {
    font-size: 1.4rem;
    color: var(--text);
    letter-spacing: 1px;
  }

  nav.menu-open .nav-hamburger {
    position: fixed;
    top: 20px; right: 16px;
    z-index: 1000;
  }

  nav.menu-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  nav.menu-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  nav.menu-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── HERO — direto ao ponto ── */
  .hero {
    grid-template-columns: 1fr;
    padding: 88px 20px 40px;
    min-height: auto;
  }

  .hero-right { display: none; }

  .hero-badge {
    font-size: .65rem;
    margin-bottom: 16px;
    padding: 5px 10px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: .93;
    margin-bottom: 14px;
  }

  /* Parágrafo do hero: mais curto visualmente */
  .hero p {
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: var(--muted);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

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

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: .9rem;
  }

  /* Botão secundário some — só o principal importa no mobile */
  .hero-btns .btn-outline { display: none; }

  /* Stats: 2x2 compacto */
  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
    border-radius: 4px;
  }

  .hstat { padding: 12px 14px; }
  .hstat-num { font-size: 1.4rem; }
  .hstat-label { font-size: .6rem; }

  /* ── MARQUEE ── */
  .marquee-item {
    font-size: .8rem;
    padding: 0 18px;
    gap: 10px;
  }

  /* ── SEÇÕES — padding menor = mais conteúdo visível ── */
  section { padding: 44px 20px; }

  .section-label { font-size: .65rem; margin-bottom: 8px; }

  h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* ── SOBRE — esconde imagem placeholder, mantém texto ── */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  /* Esconde o bloco de imagem vazia — não agrega no mobile */
  .sobre-img-wrap { display: none; }

  .sobre-text h2 { margin-bottom: 16px; }

  .sobre-text p {
    font-size: .85rem;
    line-height: 1.65;
    margin-bottom: 12px;
  }

  /* Esconde texto secundário do sobre */
  .sobre-text p:nth-child(3) { display: none; }

  .sobre-checks {
    margin: 20px 0;
    gap: 10px;
  }

  .check-item { font-size: .82rem; }

  /* Esconde marcas — excesso de info */
  .sobre-text .section-label:last-of-type,
  .brand-strip { display: none; }

  /* ── SERVIÇOS — cards compactos, só 1 coluna ── */
  .servicos-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .servicos-header .section-label,
  .servicos-header h2 {
    text-align: center;
    width: 100%;
  }

  /* Esconde botão de orçamento no header — já tem no CTA */
  .servicos-header .btn-outline { display: none; }

  .servicos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .card {
    padding: 16px 14px;
  }

  .card-featured {
    grid-column: span 2;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .card-featured .card-icon {
    width: 40px; height: 40px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .card-icon {
    width: 40px; height: 40px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .card h3 { font-size: .9rem; }
  .card p { font-size: .78rem; }
  .card-price { font-size: .72rem; margin-top: 12px; padding-top: 10px; }

  /* ── PROCESSO — linha do tempo vertical ── */
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .steps::before { display: none; }

  .step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 0;
  }

  .step-num {
    width: 44px; height: 44px;
    font-size: 1rem;
    flex-shrink: 0;
    margin: 0;
  }

  .step-text { flex: 1; }

  .step h4 { font-size: .88rem; margin-bottom: 4px; }
  .step p { font-size: .78rem; line-height: 1.5; }

  /* DEPOIMENTOS */
  .depo-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  margin-top: 28px;
  padding: 0 10px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.depo {
  flex: 0 0 90%;
  scroll-snap-align: center;
  padding: 24px;
  border-radius: 16px;
}

.depo q {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

  /* ── FAQ — só a lista, esconde o card de contato ── */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }

  /* Esconde card lateral de contato — já tem WhatsApp float */
  .faq-side { display: none; }

  .faq-q { font-size: .85rem; }
  .faq-a { font-size: .8rem; }

  /* ── LOJA / BIKES À VENDA ── */
  .bikes-venda { padding: 44px 20px; }

  .bv-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .bv-sub { font-size: .82rem; }

  .bv-filtros { flex-wrap: wrap; gap: 6px; }

  .filtro { font-size: .75rem; padding: 6px 14px; }

  .bv-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

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

.bv-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    padding: 20px;
    border-radius: 18px;
}

  /* Esconde ring de specs — muito pequeno pra clicar */
  .bv-specs-ring { display: none; }

  .bv-circulo-wrap {
    width: 140px; height: 140px;
    margin: 20px auto 16px;
  }

  .bv-circulo { width: 140px; height: 140px; }

  .bv-preco-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .bv-preco { font-size: 1.5rem; }
  .bv-preco-de { font-size: .68rem; }

  .bv-btn {
    padding: 9px 14px;
    font-size: .75rem;
    white-space: nowrap;
  }

  /* Esconde rodapé da loja */
  .bv-footer { display: none; }

  /* ── CTA FINAL ── */
  .cta-final { padding: 48px 20px; }

  .cta-final::before { display: none; }

  .cta-final h2 { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 10px; }
  .cta-final p { font-size: .88rem; margin-bottom: 28px; }

  .cta-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-dark,
  .cta-white {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: .88rem;
  }

  /* ── FOOTER — enxuto ── */
  footer { padding: 32px 20px 20px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Esconde colunas de links — só mantém a brand */
  .footer-col { display: none; }

  .footer-brand p { font-size: .8rem; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: .72rem;
    padding-top: 16px;
    margin-top: 20px;
  }

  /* ── WHATSAPP FLOAT — um pouco menor ── */
  .wa-float {
    bottom: 18px;
    right: 16px;
    width: 50px; height: 50px;
    font-size: 1.4rem;
  }
}

/* ── BIKES À VENDA ── */
.bikes-venda {
  background: var(--dark);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.bikes-venda::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Cabeçalho */
.bv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.bv-sub {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 10px;
  max-width: 400px;
}

/* Filtros */
.bv-filtros {
  display: flex;
  gap: 8px;
}

.filtro {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .25s;
}

.filtro:hover,
.filtro.ativo {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  font-weight: 700;
}

/* Grade */
.bv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card base */
.bv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px 28px;
  position: relative;
  transition: all .35s;
  overflow: hidden;
}

.bv-card::after {
  content: '';
  position: absolute;
  inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,200,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.bv-card:hover {
  border-color: rgba(245,200,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,200,0,0.1);
}

.bv-card:hover::after { opacity: 1; }

/* Card destaque */
.bv-destaque {
  border-color: rgba(245,200,0,0.3);
  background: linear-gradient(160deg, rgba(245,200,0,0.06) 0%, var(--card) 50%);
}

.bv-label-destaque {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 3;
}

/* Círculo principal */
.bv-circulo-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 20px auto 28px;
}

.bv-circulo {
  width: 240px;
  height: 240px;
}

.bv-card:hover .bv-circulo {
  border-color: rgba(245,200,0,0.5);
  box-shadow:
    0 0 0 6px rgba(245,200,0,0.05),
    0 0 40px rgba(245,200,0,0.15);
}

/* Arco decorativo girando */
.bv-arco {
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(245,200,0,0.2);
  animation: giro 12s linear infinite;
}

@keyframes giro { to { transform: rotate(360deg); } }

.bv-card:hover .bv-arco {
  border-color: rgba(245,200,0,0.5);
  animation-duration: 4s;
}

/* Emoji da bike */
.bv-emoji {
  font-size: 4rem;
  z-index: 1;
  transition: transform .35s;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.bv-card:hover .bv-emoji {
  transform: scale(1.15) rotate(-5deg);
}

/* Badge NOVA / SEMINOVA */
.bv-badge-top {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  background: rgba(245,200,0,0.15);
  border: 1px solid rgba(245,200,0,0.3);
  color: var(--yellow);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

/* Botão like */
.bv-like {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .2s;
  line-height: 1;
}

.bv-like:hover,
.bv-like.liked {
  background: rgba(220,50,50,0.2);
  border-color: #e05;
  color: #e05;
}

/* Ring de specs em volta do círculo */
.bv-specs-ring {
  position: absolute; inset: -20px;
  pointer-events: none;
}

.spec-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--yellow);
  font-size: .55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
  transform:
    translate(-50%, -50%)
    rotate(var(--ang))
    translateY(-110px)
    rotate(calc(-1 * var(--ang)));
  transition: all .3s;
  cursor: default;
  pointer-events: all;
}

.bv-card:hover .spec-dot {
  background: rgba(245,200,0,0.15);
  border-color: rgba(245,200,0,0.4);
  box-shadow: 0 0 8px rgba(245,200,0,0.2);
}

/* Informações */
.bv-info { text-align: center; }

.bv-marca {
  font-size: .72rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bv-nome {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.bv-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bv-tags span {
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .5px;
}

/* Specs detalhadas */
.bv-especificacoes {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bv-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}

.bv-spec span { color: var(--muted); }
.bv-spec strong { color: var(--text); font-weight: 500; }

/* Preço e botão */
.bv-preco-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bv-preco-de {
  font-size: .72rem;
  color: var(--muted);
  text-decoration: line-through;
}

.bv-preco {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  line-height: 1;
}

.bv-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all .25s;
}

.bv-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,200,0,0.3);
}

/* Rodapé da seção */
.bv-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 20px;
}

.bv-footer p { color: var(--muted); font-size: .88rem; }

/* Card oculto pelo filtro */
.bv-card.oculto {
  display: none;
}

/* Responsivo */
@media (max-width: 900px) {
  .bikes-venda { padding: 70px 20px; }
  .bv-grid { grid-template-columns: 1fr; }
  .bv-header { flex-direction: column; align-items: flex-start; }
  .bv-footer { flex-direction: column; text-align: center; }
}