/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  --red: #e10600;
  --red-dark: #b00500;
  --black: #0a0a0a;
  --black-2: #141414;
  --white: #ffffff;
  --gray: #9a9a9a;
  --wa: #25d366;
  --wa-dark: #1ebe5a;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
}
.accent { color: var(--red); }
.center { text-align: center; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--wa);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover { background: var(--wa-dark); }
.btn-primary:active { transform: scale(0.97); }
.btn-lg { font-size: 17px; padding: 18px 28px; }
.btn-xl {
  font-size: 19px;
  padding: 20px 28px;
  width: 100%;
  max-width: 420px;
}
.btn-block { width: 100%; }

@keyframes pulse-shadow {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
}
.pulse { animation: pulse-shadow 2s infinite; }

/* ========== TOPBAR ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #1a1a1a;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
}
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wa);
  color: #0a0a0a;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 30px 20px 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.85) 75%, #0a0a0a 100%),
    url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(225,6,0,0.4), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(225,6,0,0.22), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(38px, 9vw, 64px);
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-sub {
  font-size: clamp(16px, 4.2vw, 20px);
  margin: 0 auto 28px;
  color: #ddd;
  max-width: 580px;
}
.hero-sub strong { color: #fff; }
.hero-bullets {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}
.hero-bullets li {
  font-size: 13px;
  font-weight: 600;
  color: #ddd;
}

/* ========== SECTION BASE ========== */
section { padding: 60px 20px; }
.section-title {
  font-size: clamp(30px, 7vw, 44px);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 36px;
  font-size: 15px;
}

/* ========== BENEFITS ========== */
.benefits { background: #0a0a0a; }
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 30px;
}
.benefit {
  background: linear-gradient(145deg, #141414, #0d0d0d);
  border: 1px solid #1f1f1f;
  border-left: 4px solid var(--red);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(225,6,0,0.12);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit h3 { font-size: 18px; margin-bottom: 4px; }
.benefit p { color: var(--gray); font-size: 14px; }

/* ========== TRUST ========== */
.trust {
  background: linear-gradient(180deg, #100000 0%, #0a0a0a 100%);
  text-align: center;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.trust-card {
  background: #141414;
  border: 1px solid #1f1f1f;
  border-top: 3px solid var(--red);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  background: rgba(225,6,0,0.12);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-card h3 { font-size: 18px; margin-bottom: 6px; }
.trust-card p { color: var(--gray); font-size: 14px; }

/* ========== VEHICLES ========== */
.vehicles { background: #0a0a0a; }
.vehicle-card {
  background: linear-gradient(145deg, #141414, #0d0d0d);
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 20px;
  max-width: 640px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.vehicle-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 14px;
  overflow: hidden;
}
.vehicle-img.moto {
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.45) 100%),
    url("assets/moto.png");
  background-size: cover;
  background-position: center;
}
.vehicle-img.carro {
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.45) 100%),
    url("assets/carro.png");
  background-size: cover;
  background-position: center;
}
.tag-hot {
  position: relative;
  z-index: 1;
  background: var(--red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(225,6,0,0.5);
}
.vehicle-info { padding: 22px; }
.vehicle-info h3 { font-size: 24px; margin-bottom: 8px; }
.vehicle-info > p { color: var(--gray); margin-bottom: 16px; font-size: 15px; }
.vehicle-features {
  margin-bottom: 18px;
  display: grid;
  gap: 6px;
}
.vehicle-features li { font-size: 14px; color: #ddd; }

/* ========== URGENCY ========== */
.urgency {
  background:
    repeating-linear-gradient(135deg, var(--red) 0 30px, var(--red-dark) 30px 60px);
  padding: 50px 20px;
  position: relative;
}
.urgency-inner {
  background: rgba(10,10,10,0.9);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.urgency-badge {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.urgency h2 {
  font-size: clamp(28px, 6.5vw, 38px);
  margin-bottom: 12px;
  color: #fff;
}
.urgency p {
  margin-bottom: 24px;
  font-size: 16px;
  color: #fff;
}

/* ========== HOW IT WORKS ========== */
.how { background: #0a0a0a; }
.how-steps {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.how-steps li {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #141414;
  border: 1px solid #1f1f1f;
  padding: 18px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.how-steps li::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(225,6,0,0.4);
}
.how-steps h3 { font-size: 18px; margin-bottom: 2px; }
.how-steps p { color: var(--gray); font-size: 14px; }

/* ========== FINAL CTA ========== */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(225,6,0,0.35), transparent 70%),
    linear-gradient(180deg, #1a0303 0%, #0a0a0a 100%);
  text-align: center;
  padding: 70px 20px;
}
.final-cta h2 {
  font-size: clamp(34px, 8vw, 52px);
  margin-bottom: 14px;
}
.final-cta > p {
  color: #ddd;
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-note {
  margin-top: 18px !important;
  font-size: 13px !important;
  color: var(--gray) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========== FOOTER ========== */
.footer {
  background: #050505;
  text-align: center;
  padding: 40px 20px 100px;
  color: var(--gray);
  font-size: 13px;
}
.footer-logo {
  display: block;
  height: 44px;
  width: auto;
  margin: 0 auto 12px;
}
.footer p { margin-bottom: 6px; }
.copy { margin-top: 16px; font-size: 12px; opacity: 0.7; }

/* ========== FLOATING WHATSAPP ========== */
.float-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 60px;
  height: 60px;
  background: var(--wa);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  z-index: 100;
  animation: pulse-shadow 2s infinite;
}
.float-wa:active { transform: scale(0.95); }

/* ========== DESKTOP ========== */
@media (min-width: 720px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero { padding: 60px 40px 80px; }
  section { padding: 80px 40px; }
  .float-wa { width: 64px; height: 64px; }
}
@media (min-width: 1024px) {
  .benefit-grid { grid-template-columns: 1fr 1fr 1fr; max-width: 1100px; }
  .vehicle-card { display: grid; grid-template-columns: 1fr 1fr; max-width: 980px; }
  .vehicle-card .vehicle-img { height: 100%; min-height: 280px; }
}
