/* LocaGOra - MGV — landing estática (Pacote 1) */
:root {
  --bg: #0c0f14;
  --surface: #151a22;
  --text: #e8ecf1;
  --muted: #9aa5b5;
  --accent: #f5a623;
  --accent-dark: #d48b12;
  --border: #2a3342;
  --radius: 12px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 15, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(245, 166, 35, 0.18), transparent);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero .lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #1a1206;
}

.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  margin-left: 0.5rem;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* Sections */
section {
  padding: 3.5rem 0;
}

section:nth-of-type(even) {
  background: var(--surface);
}

.section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 2rem;
}

/* Benefits */
.benefits {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

section:nth-of-type(even) .benefit-card {
  background: var(--bg);
}

.benefit-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
}

.benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Diferenciais (texto em colunas no desktop) */
.diferenciais-body {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .diferenciais-body {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}

.diferenciais-body p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Bikes grid */
.bikes {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .bikes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bike-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.bike-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.bike-card .body {
  padding: 1.25rem;
}

.bike-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.bike-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0;
}

.bike-card .note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.5rem;
  max-width: 800px;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1206;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* FAQ */
.faq {
  max-width: 720px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
  background: var(--surface);
}

section:nth-of-type(even) .faq details {
  background: var(--bg);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq details[open] summary {
  margin-bottom: 0.5rem;
}

.faq p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer .cols {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .site-footer .cols {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer h3 {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}
