/* ============================================================
   RESET & TOKENS — PALETA MOURA
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #001a4d;
  --dark: #002266;
  --surface: #00308a;
  --card: #003a9e;
  --border: rgba(255, 255, 255, .12);
  --red: #F5A800;
  --red2: #ffbe1a;
  --red-dim: rgba(245, 168, 0, .18);
  --yellow: #F5A800;
  --green: #25D366;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, .6);
  --muted2: rgba(255, 255, 255, .2);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.mono {
  font-family: 'JetBrains Mono', monospace;
}

.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1;
}

/* ============================================================
   STICKY HEADER
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 8, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.header-logo span {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-call {
  display: none;
  /* Escondido no mobile base */
  align-items: center;
  gap: 7px;
  background: #F5A800;
  border: none;
  color: #001a4d;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-call:hover {
  background: #ffbe1a;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245, 168, 0, 0.3);
}

.btn-wpp {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  border: none;
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-wpp:hover {
  background: #1fb34d;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  padding: 120px 24px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0, 26, 77, 0.9) 0%, rgba(0, 26, 77, 0.5) 100%),
    url('imagens/hero.webp');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 168, 0, .18);
  border: 1px solid rgba(245, 168, 0, .4);
  color: #ffbe1a;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeUp .5s ease both;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F5A800;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(40px, 10vw, 80px);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  animation: fadeUp .5s .1s ease both;
}

.hero-text h1 em {
  font-style: normal;
  color: #F5A800;
  display: block;
}

.hero-text h1 .sub {
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  display: block;
  margin-top: 12px;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeUp .5s .2s ease both;
}

.perk {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5A800;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp .5s .3s ease both;
}

.cta-primary,
.cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary {
  background: #25D366;
  color: #fff;
  border: none;
}

.cta-primary:hover {
  background: #1fb34d;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-secondary {
  background: #F5A800;
  color: #001a4d;
  border: none;
}

.cta-secondary:hover {
  background: #ffbe1a;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 168, 0, 0.25);
}

.hero-image {
  display: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  margin-top: 48px;
  animation: fadeUp .5s .5s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #F5A800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-desc {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.2;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   URGENCY STRIP
============================================================ */
.urgency-strip {
  background: #F5A800;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.urgency-strip p {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.01em;
  color: #001a4d;
  line-height: 1.2;
}

.urgency-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #001a4d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.urgency-strip a:hover {
  background: #00308a;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   SECTIONS
============================================================ */
section {
  padding: 60px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #F5A800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .1);
}

.section-title {
  font-size: clamp(32px, 8vw, 48px);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.step {
  background: var(--surface);
  padding: 36px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.step:hover {
  background: var(--card);
  border-color: var(--border);
  transform: translateY(-5px);
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: #F5A800;
  letter-spacing: .15em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-num::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #F5A800;
}

.step-icon {
  margin-bottom: 20px;
  color: var(--red);
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  color: var(--white);
  transform: scale(1.1);
}

.step-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

.steps-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

/* ============================================================
   BENEFITS
============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.benefit:hover {
  background: var(--card);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.benefit-icon {
  color: var(--red);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.benefit:hover .benefit-icon {
  color: var(--white);
  transform: scale(1.1);
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.benefit-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   PRICE SECTION
============================================================ */
.price-section {
  background: var(--surface);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.price-card-img {
  height: 280px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.price-card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.price-card:hover .price-card-img img {
  transform: scale(1.1);
}

.price-card-content {
  padding: 24px;
}

.price-card-type {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.price-card-from {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
}

.price-card-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.price-card-value small {
  font-size: 16px;
  color: var(--muted);
}

.price-card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.brand-tag {
  background: rgba(255, 255, 255, .06);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
}

.price-note {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.price-note-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #F5A800;
}

.price-note-header strong {
  font-size: 18px;
  letter-spacing: -0.01em;
}

.price-note p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}

.price-note-cta {
  display: flex;
}

/* ============================================================
   COVERAGE
============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.region {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5A800;
}

/* ============================================================
   VEHICLES
============================================================ */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.vehicle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle:hover {
  background: var(--card);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vehicle-img {
  height: 140px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vehicle-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vehicle:hover .vehicle-img img {
  transform: scale(1.15);
}

.vehicle-content {
  padding: 20px 16px;
  text-align: center;
}

.vehicle-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.vehicle-action {
  font-size: 12px;
  color: #F5A800;
  font-weight: 700;
  transition: all 0.3s ease;
}

.vehicle:hover .vehicle-action {
  color: var(--white);
  transform: translateX(5px);
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 100px;
  width: fit-content;
}

.badge-score {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 15px;
  border-right: 1px solid var(--border);
}

.score-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.score-stars-svg {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.score-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}

.google-logo-pill {
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 800;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  padding: 80px 24px;
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.final-cta-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 0 auto 40px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.final-cta p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}

.final-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-info {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}

/* ============================================================
   FLOATING WPP
============================================================ */
.float-wpp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.float-wpp:hover {
  transform: scale(1.1);
  background: #1fb34d;
  box-shadow: 0 12px 32px rgba(31, 179, 77, 0.4);
}

.float-wpp-label {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.float-wpp:hover .float-wpp-label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   DESKTOP OPTIMIZATIONS (MIN-WIDTH: 900PX)
============================================================ */
@media(min-width: 900px) {
  .header {
    padding: 0 40px;
    height: 80px;
  }

  .header-logo img {
    height: 48px;
  }

  .header-logo span {
    font-size: 20px;
  }

  .btn-call {
    display: flex;
  }

  .hero {
    padding: 140px 100px 80px;
  }

  .hero .container {
    max-width: 1400px;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-main {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .hero-text {
    max-width: 600px;
  }

  .hero-perks {
    justify-content: flex-start;
  }

  .hero-stats {
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-top: 100px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .stat-num {
    font-size: 64px;
  }

  .stat-desc {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .hero-ctas {
    flex-direction: row;
    gap: 12px;
  }

  .hero-ctas .cta-primary,
  .hero-ctas .cta-secondary {
    width: auto;
  }

  .urgency-strip {
    flex-direction: row;
    padding: 32px;
  }

  .urgency-strip p {
    font-size: 28px;
  }

  section {
    padding: 100px 40px;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .step:first-child {
    border-radius: 12px 0 0 12px;
  }

  .step:last-child {
    border-radius: 0 12px 12px 0;
  }

  .step:not(:first-child):not(:last-child) {
    border-radius: 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .vehicles-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .reviews-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .final-cta h2 {
    font-size: 64px;
  }

  .final-cta-img {
    max-width: 480px;
    margin-bottom: 60px;
  }

  .final-cta-btns {
    flex-direction: row;
    justify-content: center;
  }

  .final-cta-btns .cta-primary,
  .final-cta-btns .cta-secondary {
    width: auto;
  }

  .steps-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .steps-ctas .cta-primary,
  .steps-ctas .cta-secondary {
    width: auto;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section-title br {
    display: none;
  }
}