/* Pedro Veículos — Kawasaki Eliminator 500 2024/2025 */

:root {
  --bg: #0c0f0b;
  --bg-alt: #12160f;
  --surface: #181d15;
  --surface-2: #20261b;
  --border: #2a3222;
  --text: #f3f5ef;
  --muted: #a9b3a0;
  --accent: #8fd400;
  --accent-dark: #6ea300;
  --price: #ffb020;
  --danger: #e2574c;
  --radius: 14px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--muted); }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.badge strong { color: var(--accent); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,15,11,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:active { transform: scale(.97); }
.btn--primary {
  background: var(--accent);
  color: #0c0f0b;
}
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 18px;
  font-size: .88rem;
}
.btn--block { width: 100%; }
.btn--lg { padding: 18px 30px; font-size: 1.05rem; }

/* Hero */
.hero {
  padding: 48px 0 56px;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(143,212,0,.12), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
}
.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
}
.hero .lead {
  font-size: 1.08rem;
  color: var(--text);
  opacity: .85;
  max-width: 46ch;
}
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .ph-tag {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
  padding: 20px;
}

/* Price box */
.price-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 22px 0;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.price-main {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--price);
}
.price-sub { color: var(--muted); font-size: .95rem; }
.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1rem;
}
.price-note { font-size: .88rem; color: var(--muted); margin-top: 8px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .ph-tag {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .72rem; text-align: center; padding: 8px;
}

.gallery-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .gallery-two { grid-template-columns: 1fr 1fr; }
}
.gallery-two-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.gallery-two-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-note {
  margin-top: 16px;
  font-size: .92rem;
}
.gallery-note a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* Cards / grid features */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: .95rem; }
.card .num {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: 13px 18px;
  font-size: .94rem;
}
.specs-table td:first-child {
  color: var(--muted);
  width: 46%;
}
.specs-table td:last-child {
  font-weight: 600;
}

/* Transparency box */
.honesty-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--price);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.honesty-box h3 { color: var(--price); font-size: 1rem; margin-bottom: 6px; }

/* Checklist */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); font-size: .96rem; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Comparison table */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) {
  .compare { grid-template-columns: 1fr 1fr; }
}
.compare .card.highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(143,212,0,.08), var(--surface));
}
.compare .big { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 700; }

/* FAQ */
details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.2rem; }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; margin-bottom: 0; }

/* Final CTA */
.final-cta {
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(143,212,0,.15), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 24px;
}
.final-cta h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(12,15,11,.96);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  backdrop-filter: blur(6px);
}
@media (min-width: 900px) { .sticky-cta { display: none; } }

footer {
  padding: 40px 0 90px;
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
}
footer a { color: var(--accent); text-decoration: none; }

@media (max-width: 899px) {
  body { padding-bottom: 64px; }
}
