/* ==========================================================================
   BM Locadora - 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:         #071c2c;
  --bg-2:       #0b2537;
  --bg-3:       #123f5a;
  --line:       rgba(255, 255, 255, 0.08);
  --line-2:     rgba(255, 255, 255, 0.14);
  --accent:     #8cc63f;
  --accent-2:   #b6df63;
  --accent-dim: rgba(140, 198, 63, 0.14);
  --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(110, 231, 183, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

/* ── Section base ─────────────────────────────────────────────────────────── */
.hp-section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.hp-section-tinted { background: linear-gradient(180deg, #0b2537 0%, #071c2c 100%); }
.hp-section-deep   { background: linear-gradient(180deg, #071c2c 0%, #0b2537 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: #123f5a;
  background: rgba(140, 198, 63, 0.12);
  border-color: rgba(140, 198, 63, 0.24);
}

.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, var(--accent-2) 0%, var(--accent) 100%);
  color: #071c2c !important;
  box-shadow:
    0 0 0 1px rgba(182, 223, 99, 0.35) inset,
    0 18px 36px rgba(140, 198, 63, 0.24);
}
.hp-btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(182, 223, 99, 0.45) inset,
    0 24px 48px rgba(140, 198, 63, 0.34);
}
.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;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
  background: #071c2c;
}
.hp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.78;
  filter: saturate(1.1) contrast(1.05);
}
.hp-hero-image {
  background-position: center;
  background-size: cover;
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(70% 60% at 30% 50%, rgba(7, 28, 44, 0.05) 0%, rgba(7, 28, 44, 0.42) 62%, rgba(7, 28, 44, 0.86) 100%),
    linear-gradient(180deg, rgba(7, 28, 44, 0.22) 0%, rgba(7, 28, 44, 0.78) 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(140, 198, 63, 0.16) 0%, rgba(140, 198, 63, 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-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: 280px; animation-delay: 0s; }
.hp-float-card.f2 { top: 150px; left: 0; width: 260px; animation-delay: 1.5s; }
.hp-float-card.f3 { bottom: 0; right: 30px; width: 300px; 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(110, 231, 183, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hp-glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 231, 183, 0.3);
  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(110, 231, 183, 0.3);
  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(110, 231, 183, 0.25);
}
.hp-fleet-image {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(140, 198, 63, 0.18), transparent 70%), #0b2537;
  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-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(34, 197, 94, 0.2); color: #a7f3d0; border: 1px solid rgba(34, 197, 94, 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(34, 197, 94, 0.2); color: #a7f3d0; border: 1px solid rgba(34, 197, 94, 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(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
}
.hp-price-grid .hp-price-featured span { color: var(--accent-2); }

.hp-included {
  background: rgba(140, 198, 63, 0.10);
  border: 1px solid rgba(140, 198, 63, 0.16);
  color: #d1fae5;
  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); }

/* APP BM Locadora */
.hp-app-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hp-app-text h2 { margin-bottom: 14px; }
.hp-app-feats {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hp-app-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-dim);
  font-size: 0.94rem;
}
.hp-app-feats li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--accent-dim);
  color: var(--accent-2);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hp-app-stores { display: flex; gap: 12px; margin-top: 26px; }
.hp-app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #000;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  color: #fff !important;
  transition: transform 0.2s ease;
}
.hp-app-store-btn:hover { transform: translateY(-2px); }
.hp-app-store-btn i { font-size: 1.6rem; }
.hp-app-store-btn .label { display: flex; flex-direction: column; line-height: 1.1; }
.hp-app-store-btn .label small { font-size: 0.65rem; opacity: 0.7; }
.hp-app-store-btn .label strong { font-size: 0.95rem; }

.hp-app-mock {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(15, 26, 43, 0.4));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-app-mock-phone {
  width: 65%;
  aspect-ratio: 9/19;
  background: #0b2537;
  border: 8px solid #1a1a1a;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: rotate(-3deg);
}
.hp-mock-status {
  height: 10px;
  background: #071c2c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-mock-status::after {
  content: '';
  width: 50px; height: 4px;
  background: #333;
  border-radius: 2px;
}
.hp-mock-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}
.hp-mock-card.green { background: rgba(34, 197, 94, 0.15); border-color: rgba(34, 197, 94, 0.3); }
.hp-mock-card .row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.hp-mock-bar { height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; }
.hp-mock-bar.fill { width: 70%; background: var(--accent); }
.hp-mock-label { font-size: 0.55rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.1em; }
.hp-mock-value { font-size: 0.85rem; font-weight: 800; color: var(--ink); }
.hp-mock-pill {
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.55rem;
  font-weight: 700;
  background: var(--accent-dim);
  color: var(--accent-2);
  border-radius: 999px;
}

/* ── BUYOUT (direito de compra) ───────────────────────────────────────────── */
.hp-buyout-example {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(110, 231, 183, 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(34, 197, 94, 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(140, 198, 63, 0.10); }
.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, #8cc63f, #6faa28); }
.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-size: cover;
  background-position: center;
  filter: brightness(0.85) saturate(1.15);
  z-index: 0;
  transform: scale(1.04);
  transition: transform 0.8s ease;
}
.hp-fachada:hover .hp-fachada-bg { transform: scale(1); }
.hp-fachada::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,9,18,0.88) 0%, rgba(5,9,18,0.55) 45%, rgba(5,9,18,0.25) 100%),
    linear-gradient(180deg, transparent 60%, rgba(5,9,18,0.5) 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(34, 197, 94, 0.12);
}
.hp-mobile-cta .hp-btn {
  flex: 1;
  height: 56px;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 0 16px;
  border-radius: 14px;
}
/* Forca o verde explicito aqui (sem depender so de var) — se a sticky CTA
   for movida pra fora do .hp-wrap, o contraste continua perfeito. */
.hp-mobile-cta .hp-btn-primary {
  background: linear-gradient(180deg, #b6df63 0%, #8cc63f 100%) !important;
  color: #04140a !important;
  box-shadow:
    0 0 0 1px rgba(110, 231, 183, 0.55) inset,
    0 12px 30px rgba(34, 197, 94, 0.55);
}
.hp-mobile-cta .hp-btn-primary:hover {
  background: linear-gradient(180deg, #34e574 0%, #1fb853 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: #071c2c; }

body.hp-page .navbar {
  background: rgba(10, 18, 31, 0.72) !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(8, 14, 25, 0.92) !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 { display: none; }
  .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-app-grid { grid-template-columns: 1fr; gap: 40px; }
  .hp-app-mock { max-width: 360px; margin: 0 auto; }
  .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-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; }
  body.hp-page .navbar { background: rgba(7, 28, 44, 0.96) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .hp-hero-glow, .hp-float-card { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
