/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #111111;
  --bg-card: #2A2A2A;
  --accent: #E60000;
  --accent-hover: #ff1a1a;
  --text-primary: #FFFFFF;
  --text-secondary: #F2F2F2;
  --text-muted: #999999;
  --border: #3a3a3a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
  --font: 'Inter', 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

.top-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.top-bar__item a:hover {
  color: var(--accent);
}

.top-bar__icon {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.logo__bolt {
  width: 28px;
  height: 28px;
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(230, 0, 0, 0.6));
}

.logo__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__elite {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.logo__rodas {
  color: var(--accent);
}

.nav {
  display: none;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(230, 0, 0, 0.35);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(230, 0, 0, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

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

.header__cta {
  display: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(230, 0, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(230, 0, 0, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, #111111 0%, #1a1a1a 50%, #111111 100%);
  z-index: 0;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230, 0, 0, 0.12);
  border: 1px solid rgba(230, 0, 0, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__title span {
  display: block;
  background: linear-gradient(90deg, var(--accent) 0%, #ff4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__card-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(230,0,0,0.08), transparent);
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.hero__scooter-icon {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
}

.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 90%;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── About ── */
.about {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0d0d 100%);
}

.about__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about__header .section-subtitle {
  margin: 0 auto;
}

.about__story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(230, 0, 0, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__lead {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
}

.about__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

.about__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.about__photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: #111;
}

.about__photo-caption {
  padding: 0.8rem 0.95rem 1rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.25);
}

.about__supporting {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1rem;
}

.about__supporting-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 720px;
}

.about__cta {
  width: auto;
  padding-inline: 1.35rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .about__story {
    grid-template-columns: 1fr;
  }

  .about__gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about__story {
    padding: 1.1rem;
  }

  .about__gallery {
    grid-template-columns: 1fr;
  }

  .about__supporting {
    align-items: stretch;
  }

  .about__cta {
    width: 100%;
    text-align: center;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 0, 0, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ── Catálogo ── */
.catalog {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.catalog__header {
  text-align: center;
  margin-bottom: 3rem;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(230, 0, 0, 0.28);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  transform: scale(0.99);
  transform-origin: center center;
  transition: transform 0.45s ease;
}

.product-card:hover .card-img {
  transform: scale(1.9);
}

.product-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.product-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-card__specs li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-card__specs li::before {
  content: '⚡';
  flex-shrink: 0;
  font-size: 0.8rem;
  line-height: 1.6;
}

.product-card .btn {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
}

/* ── Assistência Técnica ── */
.assistencia-tecnica {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(230, 0, 0, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(230, 0, 0, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0d0d0d 0%, var(--bg-primary) 100%);
  position: relative;
}

.assistencia-tecnica__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(42, 42, 42, 0.98), rgba(18, 18, 18, 0.96));
  border: 1px solid rgba(230, 0, 0, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.assistencia-tecnica__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
}

.assistencia-tecnica__inner {
  display: grid;
  gap: 1.75rem;
}

.assistencia-tecnica__title {
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.assistencia-tecnica__copy {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 720px;
}

.assistencia-tecnica__copy strong {
  color: var(--text-primary);
  font-weight: 600;
}

.assistencia-tecnica__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assistencia-tecnica__list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.25rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  line-height: 1.5;
  font-size: 0.95rem;
}

.assistencia-tecnica__list li::before {
  content: '';
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.15);
}

.assistencia-tecnica__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.assistencia-tecnica__actions .btn {
  min-width: 220px;
}

@media (min-width: 700px) {
  .assistencia-tecnica__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }

  .assistencia-tecnica__list li {
    padding: 1rem 1rem 1rem 2.1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .assistencia-tecnica__content {
    padding: 1.75rem 1.25rem;
  }

  .assistencia-tecnica__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .assistencia-tecnica__actions .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 3rem 0;
}

.cta-banner__inner {
  background: linear-gradient(135deg, rgba(230,0,0,0.15) 0%, var(--bg-card) 50%, rgba(230,0,0,0.08) 100%);
  border: 1px solid rgba(230, 0, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
}

.cta-banner__text {
  color: var(--text-muted);
  max-width: 480px;
}

/* ── Footer ── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__brand .logo {
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__info-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__info-item a:hover {
  color: var(--accent);
}

.footer__utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer__social a:hover {
  color: var(--accent);
  border-color: rgba(230, 0, 0, 0.45);
  background: rgba(230, 0, 0, 0.1);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}

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

.footer__legal-sep {
  color: #444444;
  font-size: 0.7rem;
  user-select: none;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.footer__disclaimer a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer__disclaimer a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFF;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }
}

/* ── Tablet ── */
@media (min-width: 600px) {
  .top-bar__inner {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .hero__actions {
    flex-direction: row;
  }

  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid .card--valores {
    grid-column: 1 / -1;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Desktop ── */
@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .hero__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero__visual {
    justify-content: flex-end;
  }

  .about__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__grid .card--valores {
    grid-column: auto;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .footer__utility {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
}

/* ── Páginas Legais (Política de Privacidade e Termos de Uso) ── */
.legal-header {
  border-bottom: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.95);
  padding: 1rem 1.25rem;
}

.legal-header__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-back {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.legal-back:hover {
  color: var(--accent);
  text-decoration: none;
}

.legal-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.legal-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.legal-title {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.75rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

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

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-highlight {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 1rem 0;
}

.legal-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-footer nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.legal-footer nav a {
  color: #666;
  font-size: 0.75rem;
}

.legal-footer nav a:hover {
  color: var(--accent);
}
