/* ══════════════════════════════════════════════════════════════
   MELHOR LOCAR — Main Stylesheet
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #7c3aed;
  --purple-light: #9d5cf5;
  --purple-dark:  #5b21b6;
  --purple-glow:  rgba(124, 58, 237, 0.35);
  --black:        #0f0f13;
  --dark:         #18181f;
  --dark-card:    #1e1e28;
  --dark-border:  #2a2a38;
  --white:        #ffffff;
  --gray-100:     #f4f4f8;
  --gray-400:     #9898b0;
  --gray-600:     #5a5a72;
  --text:         #e2e2ec;
  --text-muted:   #9898b0;
  --green:        #4ade80;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 16px 64px rgba(0,0,0,.55);
  --trans:     .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  justify-content: center;
}
.btn--sm  { padding: 9px 18px;  font-size: 13px; }
.btn--lg  { padding: 16px 36px; font-size: 16px; }
.btn:not(.btn--sm):not(.btn--lg) { padding: 13px 28px; font-size: 15px; }

.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 0 0 var(--purple-glow);
}
.btn--primary:hover {
  background: var(--purple-light);
  box-shadow: 0 0 24px var(--purple-glow);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--dark-border);
}
.btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: rgba(124,58,237,.08);
}
.btn--white {
  background: #fff;
  color: var(--purple-dark);
  font-weight: 700;
}
.btn--white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
}
.btn--whatsapp:hover { background: #1fba59; }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 96px 0; }

.section__header { text-align: center; margin-bottom: 60px; }
.section__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-light);
  background: rgba(124,58,237,.12);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Section link ───────────────────────────────────────────── */
.section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-light);
  margin-top: 20px;
  transition: var(--trans);
}
.section__more:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
  background: rgba(15,15,19,0);
  backdrop-filter: blur(0px);
}
.header.scrolled {
  background: rgba(15,15,19,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.logo__melhor { font-size: 19px; font-weight: 900; color: var(--white); letter-spacing: .02em; }
.logo__locar  { font-size: 19px; font-weight: 900; color: var(--purple); letter-spacing: .02em; margin-top: -2px; }
.logo__sub    { font-size: 9px;  font-weight: 500; color: var(--gray-400); letter-spacing: .2em; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 32px; }

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--trans);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--trans);
}
.nav__link:hover        { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--active,
.nav__link--active:hover { color: var(--white); }
.nav__link--active::after { transform: scaleX(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  min-height: calc(100vh - 72px);
}
.hero__text { max-width: 560px; }
.hero__badge {
  display: inline-block;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.35);
  color: var(--purple-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: .03em;
}
.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero__title span { color: var(--purple-light); }
.hero__desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero__trust { display: flex; align-items: center; gap: 20px; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 18px; font-weight: 800; color: var(--white); }
.trust-item span   { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.trust-divider { width: 1px; height: 36px; background: var(--dark-border); }

.hero__image { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__image-glow {
  position: absolute;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(124,58,237,.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero__img {
  position: relative; z-index: 1;
  width: 100%; max-width: 600px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float      { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse-glow { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.15); } }

.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 28px;
  color: var(--text-muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--purple); border-bottom: 2px solid var(--purple); transform: rotate(45deg); }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ══════════════════════════════════════════════════════════════
   BENEFITS BAR
   ══════════════════════════════════════════════════════════════ */
.benefits-bar {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.benefits-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.benefit {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--dark-border);
  transition: var(--trans);
}
.benefit:last-child { border-right: none; }
.benefit:hover { background: rgba(124,58,237,.06); }
.benefit__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
}
.benefit div { display: flex; flex-direction: column; gap: 2px; }
.benefit strong { font-size: 14px; font-weight: 700; color: var(--white); }
.benefit span   { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--black); }

.steps { display: flex; align-items: flex-start; }
.step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 24px;
}
.step__connector {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--dark-border));
  margin-top: 52px;
  flex-shrink: 0;
}
.step__number {
  font-size: 11px; font-weight: 800; letter-spacing: .15em; color: var(--purple);
  margin-bottom: 16px;
  background: rgba(124,58,237,.1);
  padding: 4px 10px; border-radius: 50px;
}
.step__icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  margin-bottom: 24px;
  transition: var(--trans);
}
.step:hover .step__icon {
  border-color: var(--purple);
  background: rgba(124,58,237,.12);
  box-shadow: 0 0 24px var(--purple-glow);
}
.step h3   { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step p    { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   BIKE TEASER (homepage)
   ══════════════════════════════════════════════════════════════ */
.bike-teaser { background: var(--dark); }
.bike-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bike-teaser__img-wrap {
  background: linear-gradient(135deg, var(--dark-card), var(--black));
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.bike-teaser__img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(124,58,237,.12), transparent 65%);
}
.bike-teaser__img-wrap img { position: relative; z-index: 1; }
.bike-teaser__tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px; font-weight: 700;
  color: var(--purple-light);
  background: rgba(124,58,237,.12);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.bike-teaser__title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.bike-teaser__sub   { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; line-height: 1.6; }
.bike-teaser__specs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.bike-teaser__specs li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.bike-teaser__specs li svg { color: var(--purple-light); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   BIKE SHOWCASE (bike page)
   ══════════════════════════════════════════════════════════════ */
.bike-section { background: var(--dark); }
.bike__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bike__main-img {
  background: linear-gradient(135deg, var(--dark-card), var(--black));
  border-radius: var(--radius-xl);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  margin-bottom: 16px;
  position: relative;
}
.bike__main-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(124,58,237,.12), transparent 65%);
}
.bike__main-img img {
  width: 100%; object-fit: contain;
  position: relative; z-index: 1;
  transition: var(--trans);
}
.bike__thumbs { display: flex; gap: 10px; }
.bike__thumb {
  flex: 1; aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-card);
  border: 2px solid var(--dark-border);
  padding: 8px; cursor: pointer;
  transition: var(--trans);
}
.bike__thumb img { width: 100%; height: 100%; object-fit: contain; }
.bike__thumb:hover { border-color: var(--purple-light); }
.bike__thumb.active { border-color: var(--purple); background: rgba(124,58,237,.1); }

.bike__tag {
  display: inline-block;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 11px; font-weight: 700;
  color: var(--purple-light);
  background: rgba(124,58,237,.12);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.bike__name { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.bike__tagline { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }

.bike__specs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.bike__specs li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.bike__specs li svg { color: var(--purple-light); flex-shrink: 0; margin-top: 2px; }

.bike__benefits-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.bike__benefit-chip {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
}

/* Lifestyle section (bike page) */
.bike-lifestyle { background: var(--black); }
.bike-lifestyle__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bike-lifestyle__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.bike-lifestyle__img img { width: 100%; height: 100%; object-fit: cover; }
.bike-lifestyle__text {
  display: flex; flex-direction: column; justify-content: center;
  gap: 20px;
}
.bike-lifestyle__text h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--white); line-height: 1.2; }
.bike-lifestyle__text p  { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   PLANS
   ══════════════════════════════════════════════════════════════ */
.plans { background: var(--black); }
.plans__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 32px;
}
.plan-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 24px;
  transition: var(--trans);
  position: relative; overflow: hidden;
}
.plan-card:hover { border-color: var(--purple); transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.plan-card--featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, rgba(124,58,237,.12), var(--dark-card));
  box-shadow: 0 0 0 1px var(--purple), 0 24px 64px rgba(124,58,237,.25);
  transform: scale(1.02);
}
.plan-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-card__badge {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--purple); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}
.plan-card__header { display: flex; flex-direction: column; gap: 8px; }
.plan-card__period { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }
.plan-card__price  { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.plan-card__old    { font-size: 14px; color: var(--gray-600); text-decoration: line-through; }
.plan-card__current { font-size: 36px; font-weight: 900; color: var(--white); line-height: 1; }
.plan-card__current small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.plan-card--featured .plan-card__current { color: var(--purple-light); }
.plan-card__save { font-size: 12px; color: var(--green); font-weight: 600; }
.plan-card__features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-card__features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.plan-card__features li svg { color: var(--purple-light); flex-shrink: 0; }
.plan-card__btn { width: 100%; }
.plans__note {
  text-align: center; font-size: 14px; color: var(--text-muted);
  max-width: 680px; margin: 0 auto;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 16px 24px; line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════════════════ */
.reviews { background: var(--dark); }
.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--trans);
}
.review-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.review-card__stars { font-size: 18px; }
.review-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; font-style: italic;
}
.review-card p::before { content: '"'; }
.review-card p::after  { content: '"'; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 16px; flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 14px; color: var(--white); }
.review-card__author span  { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple), #b847ff);
  padding: 88px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  position: relative;
}
.cta-banner__text h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-banner__text p  { font-size: 16px; color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════════════════════
   PAGE BANNER (inner pages)
   ══════════════════════════════════════════════════════════════ */
.page-banner {
  padding: 100px 0 60px;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-banner__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.page-banner__label {
  display: inline-block;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: 11px; font-weight: 700;
  color: var(--purple-light);
  background: rgba(124,58,237,.12);
  padding: 5px 14px; border-radius: 50px;
}
.page-banner__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; color: var(--white); line-height: 1.15;
}
.page-banner__title span { color: var(--purple-light); }
.page-banner__desc {
  font-size: 17px; color: var(--text-muted);
  max-width: 600px; line-height: 1.7;
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: var(--trans); }
.breadcrumb a:hover { color: var(--purple-light); }
.breadcrumb__sep { color: var(--dark-border); }
.breadcrumb span:last-child { color: var(--purple-light); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   FAQ (inner pages)
   ══════════════════════════════════════════════════════════════ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--dark-border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  cursor: pointer;
  color: var(--white);
  font-size: 15px; font-weight: 600;
  user-select: none;
  gap: 16px;
}
.faq-question__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
  font-size: 20px; font-weight: 300;
  transition: var(--trans);
}
.faq-item.open .faq-question__icon { background: var(--purple); border-color: var(--purple); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--trans);
}
.contact-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.contact-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
}
.contact-card__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }
.contact-card__title { font-size: 18px; font-weight: 700; color: var(--white); }
.contact-card__value { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.contact-card__btn   { margin-top: auto; align-self: flex-start; }

/* ══════════════════════════════════════════════════════════════
   WHAT'S INCLUDED (planos page)
   ══════════════════════════════════════════════════════════════ */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.include-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: var(--trans);
}
.include-card:hover { border-color: var(--purple); }
.include-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  font-size: 28px;
}
.include-card h3 { font-size: 16px; font-weight: 700; color: var(--white); }
.include-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Process after subscribing */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 40px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(180deg, var(--purple), var(--dark-border));
}
.process-step__dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(124,58,237,.15);
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  font-size: 14px; font-weight: 800;
  flex-shrink: 0;
}
.process-step__content h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.process-step__content p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand p { font-size: 14px; color: var(--text-muted); margin-top: 16px; max-width: 260px; line-height: 1.7; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  transition: var(--trans);
}
.footer__social a:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 4px; }
.footer__links a { font-size: 13px; color: var(--text-muted); transition: var(--trans); }
.footer__links a:hover { color: var(--purple-light); }
.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__contact h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 4px; }
.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer__contact-item svg { color: var(--purple-light); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: var(--text-muted); transition: var(--trans); }
.footer__contact-item a:hover { color: var(--purple-light); }
.footer__bottom { border-top: 1px solid var(--dark-border); padding: 20px 0; text-align: center; }
.footer__bottom p { font-size: 13px; color: var(--gray-600); }
.logo--footer .logo__melhor,
.logo--footer .logo__locar { font-size: 22px; }

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 999;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  transition: var(--trans);
}
.whatsapp-float:hover { background: #1fba59; transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.4); }

/* ══════════════════════════════════════════════════════════════
   AOS ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(32px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .plans__grid { grid-template-columns: repeat(2,1fr); }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }
  .benefits-bar__grid { grid-template-columns: repeat(2,1fr); }
  .benefit:nth-child(2) { border-right: none; }
  .benefit:nth-child(3) { border-top: 1px solid var(--dark-border); border-right: 1px solid var(--dark-border); }
  .benefit:last-child   { border-top: 1px solid var(--dark-border); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 36px;
    transform: translateX(100%); transition: var(--trans);
    z-index: 999;
    border-top: 1px solid var(--dark-border);
  }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 20px; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-top: 32px; gap: 32px; min-height: auto; padding-bottom: 32px; }
  .hero__text   { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__trust   { justify-content: center; }
  .hero__image   { order: -1; }
  .hero__img     { max-width: 280px; }
  .hero__desc    { margin: 0 auto 36px; }

  .benefits-bar__grid { grid-template-columns: 1fr; }
  .benefit { border-right: none; border-top: 1px solid var(--dark-border); }
  .benefit:first-child { border-top: none; }

  .steps { flex-direction: column; align-items: center; }
  .step__connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--purple), var(--dark-border)); margin: 0; }

  .bike__showcase { grid-template-columns: 1fr; gap: 40px; }
  .bike-teaser__grid { grid-template-columns: 1fr; gap: 40px; }
  .bike-lifestyle__grid { grid-template-columns: 1fr; }

  .plans__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }

  .page-banner { padding: 88px 0 48px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .bike__thumbs { gap: 6px; }
  .hero__img { max-width: 240px; }
}
