﻿/* ==========================================================================
   HF Rent Loc — Home Premium
   Vanilla CSS premium aesthetic (glass, glow, scroll-reveal).
   Tudo prefixado com .hp- ou scoped sob .hp-wrap para nao afetar outras paginas.
   ========================================================================== */

.hp-wrap,
.hp-mobile-cta {
  --ink:        #f4f7fb;
  --ink-dim:    rgba(244, 247, 251, 0.72);
  --ink-faint:  rgba(244, 247, 251, 0.45);
  --bg:         #04132f;
  --bg-2:       #061a3e;
  --bg-3:       #09255d;
  --line:       rgba(255, 255, 255, 0.08);
  --line-2:     rgba(255, 255, 255, 0.14);
  --accent:     #1bdcfc;
  --accent-2:   #99cada;
  --accent-dim: rgba(27, 220, 252, 0.18);
  --glass:      rgba(255, 255, 255, 0.04);
  --glass-2:    rgba(255, 255, 255, 0.07);
  --shadow-lg:  0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-md:  0 12px 36px rgba(0, 0, 0, 0.35);
  --radius-lg:  24px;
  --radius-md:  16px;
}

.hp-wrap {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

/* Hard reset para evitar margens default herdadas do Bootstrap */
.hp-wrap section { position: relative; }
.hp-wrap h1, .hp-wrap h2, .hp-wrap h3, .hp-wrap h4 {
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
}
.hp-wrap h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.02; }
.hp-wrap h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.08; }
.hp-wrap h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); line-height: 1.2; }
.hp-wrap p  { color: var(--ink-dim); line-height: 1.6; margin: 0 0 12px; }
.hp-wrap a  { color: inherit; text-decoration: none; }

.hp-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ── Eyebrow / kicker ─────────────────────────────────────────────────────── */
.hp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-dim);
  border: 1px solid rgba(153, 202, 218, 0.28);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

/* ── Section base ─────────────────────────────────────────────────────────── */
.hp-section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.hp-section-tinted { background: var(--bg-2); }
.hp-section-deep   { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); }
.hp-section-light  { background: #f5f7f5; color: #0f172a; }
.hp-section-light h2, .hp-section-light h3 { color: #0f172a; }
.hp-section-light p { color: #555; }
.hp-section-light .hp-eyebrow {
  color: #135DA3;
  background: rgba(27, 220, 252, 0.09);
  border-color: rgba(19, 93, 163, 0.20);
}

.hp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.hp-section-head h2 { margin-bottom: 12px; }
.hp-section-head p  { font-size: 1.05rem; color: var(--ink-dim); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none !important;
}
.hp-btn:hover { transform: translateY(-2px); }

.hp-btn-primary {
  background: linear-gradient(180deg, #70edff 0%, var(--accent) 100%);
  color: #04132f !important;
  box-shadow:
    0 0 0 1px rgba(223, 246, 251, 0.38) inset,
    0 18px 36px rgba(27, 220, 252, 0.28);
}
.hp-btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(223, 246, 251, 0.48) inset,
    0 24px 48px rgba(27, 220, 252, 0.40);
}
.hp-btn-ghost {
  background: var(--glass);
  color: var(--ink) !important;
  border: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hp-btn-ghost:hover { background: var(--glass-2); border-color: rgba(255, 255, 255, 0.25); }

.hp-btn-sm { height: 44px; padding: 0 20px; font-size: 0.9rem; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
  background: var(--bg);
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(70% 60% at 72% 45%, rgba(27, 220, 252, 0.10) 0%, rgba(4, 19, 47, 0.25) 58%, rgba(4, 19, 47, 0.88) 100%),
    linear-gradient(180deg, rgba(4, 19, 47, 0.18) 0%, rgba(4, 19, 47, 0.82) 100%);
}
.hp-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}
.hp-hero-glow {
  position: absolute;
  z-index: 2;
  width: 720px; height: 720px;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(27, 220, 252, 0.24) 0%, rgba(27, 220, 252, 0) 70%);
  pointer-events: none;
  animation: hp-pulse 7s ease-in-out infinite;
}
@keyframes hp-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

.hp-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hp-hero-text { max-width: 640px; }
.hp-hero-text h1 { color: #fff; margin-bottom: 22px; }
.hp-hero-text h1 .accent {
  background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 50%, var(--accent-2) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hp-shine 8s ease infinite;
}
@keyframes hp-shine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hp-hero-text p {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(244, 247, 251, 0.78);
  margin-bottom: 32px;
  max-width: 560px;
}

.hp-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hp-microtrust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  color: var(--ink-dim);
  font-size: 0.88rem;
}
.hp-microtrust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hp-microtrust .check {
  display: inline-flex;
  width: 18px; height: 18px;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent-2);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

/* Floating card stack (lado direito do hero) */
.hp-hero-cards {
  position: relative;
  min-height: 460px;
}
.hp-bike-stage {
  position: absolute;
  inset: 38px 12px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(153, 202, 218, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 52% 48%, rgba(27,220,252,.22), rgba(19,93,163,.10) 52%, rgba(4,19,47,.18) 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
}
.hp-bike-stage::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; bottom: 9%;
  height: 24px;
  border-radius: 50%;
  background: rgba(4,19,47,.22);
  filter: blur(14px);
}
.hp-bike-stage img {
  position: relative;
  z-index: 1;
  width: 108%;
  height: auto;
  transform: translateY(8px);
  filter: saturate(1.08) contrast(1.04);
}
.hp-float-card {
  position: absolute;
  background: rgba(15, 26, 43, 0.65);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease;
  animation: hp-float 6s ease-in-out infinite;
}
.hp-float-card:hover { transform: translateY(-6px); }
@keyframes hp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hp-float-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.hp-float-card-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hp-float-card-value .unit {
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 500;
}
.hp-float-card-sub {
  font-size: 0.82rem;
  color: var(--accent-2);
}
.hp-float-card.f1 { top: 0; right: 0; width: 255px; animation-delay: 0s; }
.hp-float-card.f2 { bottom: 0; left: 0; width: 245px; animation-delay: 1.5s; }
.hp-float-card.f3 { bottom: 18px; right: 0; width: 250px; animation-delay: 3s; }

/* Stats faixa na base do hero */
.hp-stats {
  position: relative;
  z-index: 3;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.hp-stats > div {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}
.hp-stats > div:last-child { border-right: none; }
.hp-stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hp-stat-value .accent { color: var(--accent-2); }
.hp-stat-label {
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

/* ── BENEFITS ─────────────────────────────────────────────────────────────── */
.hp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-glass-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hp-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 220, 252, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hp-glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 220, 252, 0.30);
  background: var(--glass-2);
}
.hp-glass-card:hover::before { opacity: 1; }
.hp-icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(27, 220, 252, 0.30);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.hp-glass-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.hp-glass-card p { font-size: 0.94rem; color: var(--ink-dim); margin: 0; }

/* ── FROTA (showroom) ─────────────────────────────────────────────────────── */
.hp-fleet {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hp-fleet-card {
  background: linear-gradient(180deg, rgba(15, 26, 43, 0.7) 0%, rgba(10, 18, 31, 0.5) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.hp-fleet-card:hover {
  border-color: rgba(27, 220, 252, 0.25);
}
.hp-fleet-image {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(27, 220, 252, 0.18), transparent 70%), #061a3e;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
}
.hp-fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hp-fleet-image img.hp-fleet-image-fallback {
  width: 92%;
  height: auto;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.35));
}
.hp-fleet-card:hover .hp-fleet-image img { transform: scale(1.04); }
.hp-fleet-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hp-badge-electric { background: rgba(27, 220, 252, 0.2); color: #dff6fb; border: 1px solid rgba(27, 220, 252, 0.35); }
.hp-badge-popular  { background: rgba(251, 191, 36, 0.18); color: #fde68a; border: 1px solid rgba(251, 191, 36, 0.35); }
.hp-badge-available { background: rgba(27, 220, 252, 0.2); color: #dff6fb; border: 1px solid rgba(27, 220, 252, 0.35); }
.hp-badge-waitlist  { background: rgba(239, 68, 68, 0.18); color: #fecaca; border: 1px solid rgba(239, 68, 68, 0.35); }

.hp-fleet-body { padding: 38px 36px; display: flex; flex-direction: column; }
.hp-fleet-body h3 { font-size: 1.65rem; margin-bottom: 6px; }
.hp-fleet-years {
  color: var(--ink-faint);
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.hp-fleet-years strong { color: var(--ink-dim); font-weight: 600; }

.hp-fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 22px;
  padding: 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.hp-fleet-specs > div { display: flex; flex-direction: column; gap: 2px; }
.hp-fleet-specs span {
  font-size: 0.7rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hp-fleet-specs strong { font-size: 0.98rem; color: var(--ink); font-weight: 700; }

.hp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.hp-price-grid > div {
  padding: 14px 10px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
}
.hp-price-grid span {
  display: block;
  font-size: 0.66rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.hp-price-grid strong { font-size: 1.1rem; font-weight: 800; }
.hp-price-grid .hp-price-featured {
  background: rgba(27, 220, 252, 0.12);
  border-color: rgba(27, 220, 252, 0.3);
}
.hp-price-grid .hp-price-featured span { color: var(--accent-2); }

.hp-included {
  background: rgba(27, 220, 252, 0.08);
  border: 1px solid rgba(27, 220, 252, 0.18);
  color: #dff6fb;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.hp-fleet-cta { display: flex; gap: 10px; margin-top: auto; }
.hp-fleet-cta .hp-btn { flex: 1; }

/* ── COMO FUNCIONA (timeline) ─────────────────────────────────────────────── */
.hp-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.hp-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line-2), var(--line-2), transparent);
}
.hp-timeline-step { text-align: center; position: relative; }
.hp-timeline-num {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-2);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.hp-timeline-step:hover .hp-timeline-num {
  background: var(--accent-dim);
  border-color: var(--accent-2);
  transform: scale(1.08);
}
.hp-timeline-step h4 { font-size: 1rem; margin-bottom: 6px; }
.hp-timeline-step p { font-size: 0.88rem; color: var(--ink-dim); }

/* ── BUYOUT (direito de compra) ───────────────────────────────────────────── */
.hp-buyout-example {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(153, 202, 218, 0.18);
  border-radius: 22px;
  padding: 32px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}
.hp-buyout-step { text-align: center; }
.hp-buyout-step .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.hp-buyout-step .val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
}
.hp-buyout-step.final { background: rgba(27, 220, 252, 0.12); border-radius: 14px; padding: 14px; }
.hp-buyout-step.final .lbl { color: var(--accent-2); font-weight: 700; }
.hp-buyout-step.final .val { color: var(--accent-2); font-size: 1.85rem; }
.hp-buyout-arrow { color: var(--ink-faint); font-size: 1.4rem; }

.hp-buyout-modes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hp-buyout-mode {
  background: var(--glass);
  border-left: 4px solid var(--line-2);
  border-radius: 12px;
  padding: 20px 24px;
}
.hp-buyout-mode.primary { border-left-color: var(--accent); background: rgba(27, 220, 252, 0.08); }
.hp-buyout-mode strong.title { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 6px; }
.hp-buyout-mode p { font-size: 0.94rem; margin: 0; }
.hp-buyout-mode .pin { color: var(--accent-2); font-weight: 700; }

/* ── DEPOIMENTOS ─────────────────────────────────────────────────────────── */
.hp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-testimonial {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-testimonial-quote {
  font-size: 0.98rem;
  color: var(--ink-dim);
  line-height: 1.55;
  font-style: italic;
}
.hp-testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--accent-2);
  margin-bottom: 8px;
  font-style: normal;
  font-family: 'Georgia', serif;
}
.hp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.hp-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.hp-avatar.a1 { background: linear-gradient(135deg, #1bdcfc, #135da3); }
.hp-avatar.a2 { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.hp-avatar.a3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.hp-testimonial-author .meta { display: flex; flex-direction: column; }
.hp-testimonial-author .name { color: var(--ink); font-weight: 700; font-size: 0.95rem; }
.hp-testimonial-author .role { color: var(--ink-faint); font-size: 0.82rem; }
.hp-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 0.05em; }

/* ── FACHADA ─────────────────────────────────────────────────────────────── */
.hp-fachada {
  position: relative;
  min-height: 560px;
  padding: 90px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
}
.hp-fachada-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(27,220,252,.28), transparent 32%),
    linear-gradient(115deg, #04132f 0%, #09255d 52%, #135da3 100%);
  z-index: 0;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}
.hp-fachada:hover .hp-fachada-bg { transform: scale(1); }
.hp-fachada-bike {
  position: absolute;
  z-index: 1;
  right: -3%;
  bottom: -4%;
  width: min(58vw, 820px);
  height: auto;
  opacity: .92;
  filter: saturate(1.1) contrast(1.06);
}
.hp-fachada::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,19,47,0.96) 0%, rgba(4,19,47,0.76) 46%, rgba(4,19,47,0.14) 100%),
    linear-gradient(180deg, transparent 60%, rgba(4,19,47,0.68) 100%);
  z-index: 1;
}
.hp-fachada .hp-container { position: relative; z-index: 2; max-width: 1180px; }
.hp-fachada h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.hp-fachada-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hp-fachada-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 20px; color: rgba(255,255,255,0.85); font-size: 0.96rem; }
.hp-fachada-meta i { color: var(--accent-2); margin-right: 6px; }

/* ── STICKY MOBILE CTA — alta visibilidade ───────────────────────────────── */
.hp-mobile-cta {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px; right: 12px;
  z-index: 1050;
  gap: 10px;
  padding: 10px;
  background: rgba(8, 14, 25, 0.96);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow:
    0 -2px 24px rgba(0, 0, 0, 0.4),
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(27, 220, 252, 0.14);
}
.hp-mobile-cta .hp-btn {
  flex: 1;
  height: 56px;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 0 16px;
  border-radius: 14px;
}
/* Cor HF explícita: a CTA fica fora do .hp-wrap no DOM. */
.hp-mobile-cta .hp-btn-primary {
  background: linear-gradient(180deg, #70edff 0%, #1bdcfc 100%) !important;
  color: #04132f !important;
  box-shadow:
    0 0 0 1px rgba(223, 246, 251, 0.60) inset,
    0 12px 30px rgba(27, 220, 252, 0.42);
}
.hp-mobile-cta .hp-btn-primary:hover {
  background: linear-gradient(180deg, #8af1ff 0%, #16c9e7 100%) !important;
}
.hp-wa {
  background: #25D366 !important;
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 12px 30px rgba(37, 211, 102, 0.55);
}
.hp-wa:hover, .hp-wa:focus { background: #1ebe57 !important; }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1.in-view { transition-delay: 80ms; }
.reveal-d2.in-view { transition-delay: 160ms; }
.reveal-d3.in-view { transition-delay: 240ms; }
.reveal-d4.in-view { transition-delay: 320ms; }

/* ── NAVBAR sempre em dark glass (mais opaca ao rolar) ──────────────────── */
/* Body dark evita o flash branco quando a navbar tem qualquer transparencia */
body.hp-page { background: #04132f; }

body.hp-page .navbar {
  background: rgba(4, 19, 47, 0.76) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  transition: background 0.3s ease, border-color 0.3s ease;
}
body.hp-page.hp-scrolled .navbar {
  background: rgba(4, 19, 47, 0.94) !important;
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}
/* Garante que os links e o logo da navbar fiquem brancos sobre o glass */
body.hp-page .navbar .nav-link { color: rgba(255, 255, 255, 0.88) !important; }
body.hp-page .navbar .nav-link:hover { color: var(--accent-2) !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hp-hero-cards { min-height: 390px; max-width: 660px; width: 100%; margin: 0 auto; }
  .hp-float-card.f1 { right: 0; }
  .hp-float-card.f2 { left: 0; }
  .hp-float-card.f3 { right: 0; }
  .hp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-fleet-card { grid-template-columns: 1fr; }
  .hp-fleet-image { min-height: 280px; }
  .hp-fleet-specs { grid-template-columns: repeat(4, 1fr); }
  .hp-timeline { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .hp-timeline::before { display: none; }
  .hp-buyout-example { grid-template-columns: 1fr; }
  .hp-buyout-arrow { transform: rotate(90deg); }
  .hp-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hp-section { padding: 70px 0; }
  .hp-section-head { margin-bottom: 40px; }
  .hp-hero { padding: 100px 0 60px; min-height: auto; }
  .hp-hero-text p { font-size: 1rem; }
  .hp-cta-row { width: 100%; }
  .hp-cta-row .hp-btn { flex: 1; }
  .hp-microtrust { gap: 10px 14px; font-size: 0.82rem; }
  .hp-hero-cards { min-height: 300px; margin-top: -18px; }
  .hp-bike-stage { inset: 10px 0 10px; border-radius: 24px; }
  .hp-bike-stage img { width: 122%; }
  .hp-float-card { padding: 12px 14px; }
  .hp-float-card-value { font-size: 1.25rem; }
  .hp-float-card-sub { display: none; }
  .hp-float-card.f1 { width: 185px; }
  .hp-float-card.f2 { width: 155px; }
  .hp-float-card.f3 { width: 165px; bottom: 8px; }
  .hp-stats { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; margin-top: 50px; }
  .hp-stats > div { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .hp-stats > div:last-child { border-bottom: none; padding-bottom: 0; }
  .hp-benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .hp-fleet-body { padding: 28px 22px; }
  .hp-fleet-specs { grid-template-columns: repeat(2, 1fr); }
  .hp-price-grid { gap: 6px; }
  .hp-price-grid > div { padding: 12px 6px; }
  .hp-price-grid strong { font-size: 0.95rem; }
  .hp-fleet-cta { flex-direction: column; }
  .hp-timeline { grid-template-columns: 1fr 1fr; gap: 22px; }
  .hp-buyout-example { padding: 22px 18px; }
  .hp-buyout-modes { grid-template-columns: 1fr; }
  .hp-mobile-cta { display: flex; }
  /* compensa a sticky CTA (altura ~80px com padding) pra nao cobrir footer */
  .hp-wrap { padding-bottom: 100px; }
  .hp-fachada-bike { width: 95vw; right: -34%; opacity: .42; }
  body.hp-page .navbar { background: rgba(4, 19, 47, 0.96) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .hp-hero-glow, .hp-float-card { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
