:root {
  --red: #e50914;
  --red-dark: #a80008;
  --black: #050505;
  --ink: #151515;
  --muted: #666;
  --white: #fff;
  --soft: #f5f5f5;
  --line: #e5e5e5;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand { display: flex; align-items: center; }
.brand img {
  width: min(285px, 52vw);
  height: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 22px;
  color: #ddd;
  font-size: 14px;
  font-weight: 800;
}
.nav a:hover { color: var(--red); }
.whatsapp,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}
.whatsapp,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.btn.dark {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, #2d2d2d, #000);
}
.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
button.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.hero {
  min-height: 740px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=85") center/cover;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 900px;
  background: linear-gradient(180deg, transparent, rgba(229, 9, 20, 0.75), transparent);
  transform: rotate(28deg);
  pointer-events: none;
}
.hero::before { left: -180px; top: -140px; }
.hero::after { right: -220px; bottom: -220px; }
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}
.kicker {
  margin: 0 0 14px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 900;
}
.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}
.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 920px;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}
.hero-strip span {
  padding: 18px 14px;
  text-align: center;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.55);
}

.vehicle-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  text-transform: uppercase;
  font-weight: 900;
}

.section,
.pricing,
.contact {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}
.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}
h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  text-transform: uppercase;
}
h3 { margin: 0 0 10px; font-size: 24px; }
p { color: var(--muted); line-height: 1.65; }

.option-grid,
.price-grid,
.benefit-grid {
  display: grid;
  gap: 18px;
}
.option-grid { grid-template-columns: 1fr 1fr; }
.option-card,
.price-card,
.benefit-grid div,
.contact-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.08);
}
.option-card {
  padding: 30px;
}
.option-card.highlight {
  color: var(--white);
  border-color: rgba(229, 9, 20, 0.5);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.92), rgba(10, 10, 10, 0.96)),
    var(--black);
  box-shadow: var(--shadow);
}
.option-card.highlight p,
.option-card.highlight li { color: rgba(255, 255, 255, 0.84); }
.tag {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.tag.dark { background: #333; }
ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.pricing {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1160px) / 2));
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  background: #0b0b0b;
}
.pricing h2 { color: var(--white); }
.pricing .section-title p { color: var(--red); }
.price-grid { grid-template-columns: repeat(3, 1fr); }
.price-card {
  overflow: hidden;
  background: var(--white);
}
.price-card.featured {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.price-head {
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.price-head span,
.price-head small { display: block; font-weight: 900; text-transform: uppercase; }
.price-head strong {
  display: block;
  margin: 8px 0;
  font-size: 46px;
  font-weight: 900;
}
.price-card ul { padding: 24px 28px 28px 44px; margin: 0; }

.catalog {
  text-align: center;
}
.catalog .section-title {
  margin-left: auto;
  margin-right: auto;
}
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.catalog-modal {
  width: min(980px, calc(100% - 24px));
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}
.catalog-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
}
.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--white);
  background: #050505;
  border-bottom: 3px solid var(--red);
}
.modal-head h2 {
  font-size: clamp(24px, 4vw, 36px);
}
.close-modal {
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}
.catalog-view {
  display: grid;
  gap: 16px;
  padding: 16px;
}
.catalog-view img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: var(--white);
}

.catalog-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(229, 9, 20, 0.16), transparent 28%),
    #080808;
}
.catalog-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 34px;
  color: var(--white);
}
.catalog-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1;
  text-transform: uppercase;
}
.catalog-hero p:not(.kicker) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}
.catalog-tabs {
  position: sticky;
  top: 78px;
  z-index: 7;
  display: flex;
  gap: 10px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.94);
  overflow-x: auto;
}
.catalog-tabs button {
  flex: 1 0 max-content;
  border: 0;
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  background: #222;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.catalog-tabs button.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.catalog-section {
  display: none;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 74px;
}
.catalog-section.active {
  display: block;
}
.catalog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
  color: var(--white);
}
.catalog-section-head h2 {
  max-width: 760px;
}
.slider-controls {
  display: flex;
  gap: 10px;
}
.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--white);
  background: #191919;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}
.plan-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 380px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
}
.gps-plan {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #111;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.featured-plan {
  border-color: rgba(229, 9, 20, 0.55);
  background:
    linear-gradient(145deg, rgba(229, 9, 20, 0.32), rgba(255, 255, 255, 0.03)),
    #111;
}
.plan-label {
  align-self: start;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--white);
  background: #333;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.plan-label.red {
  background: var(--red);
}
.gps-plan h3 {
  font-size: 26px;
}
.plan-price {
  display: block;
  margin: 8px 0 8px;
  color: var(--red);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}
.plan-price small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}
.plan-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}
.gps-plan ul {
  flex: 1;
  color: rgba(255, 255, 255, 0.78);
}
.gps-plan li::marker {
  color: var(--red);
}
.gps-plan .btn {
  margin-top: 24px;
}

.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.benefit-grid div { padding: 24px; }
.benefit-grid strong {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}
.benefit-grid p { margin-bottom: 0; }

.contact {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 30px;
  align-items: center;
}
.contact-card {
  display: grid;
  gap: 12px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #141414, #000);
  border-color: #222;
}
.contact-card strong {
  font-size: 44px;
  line-height: 1;
}
.contact-card span { color: rgba(255, 255, 255, 0.72); font-weight: 800; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px max(20px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: var(--black);
  border-top: 4px solid var(--red);
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar { flex-wrap: wrap; padding: 14px 16px; }
  .nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero { min-height: auto; }
  .hero-strip,
  .option-grid,
  .price-grid,
  .benefit-grid,
  .contact { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .catalog-tabs { top: 126px; }
  .catalog-section-head { align-items: start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand img { width: min(230px, 78vw); }
  .whatsapp { width: 100%; }
  .hero h1 { font-size: 38px; }
  .hero-inner,
  .section,
  .pricing,
  .contact { padding-top: 56px; padding-bottom: 56px; }
  .contact-card strong { font-size: 34px; }
  .footer { flex-direction: column; }
}

/* Catalogo de precios: version limpia tipo tabla de planes. */
.catalog-page {
  background: #eef1f5;
}

.catalog-page .topbar {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.catalog-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 28px;
  color: var(--ink);
  text-align: center;
}

.catalog-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.catalog-hero p:not(.kicker) {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #596273;
  font-size: 18px;
}

.catalog-tabs {
  position: sticky;
  top: 78px;
  z-index: 7;
  display: flex;
  gap: 10px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 10px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  overflow-x: auto;
}

.catalog-tabs button {
  flex: 1 0 max-content;
  border: 0;
  border-radius: 8px;
  padding: 13px 16px;
  color: #202632;
  background: #f4f6f9;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.catalog-tabs button.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.catalog-section {
  display: none;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 74px;
}

.catalog-section.active {
  display: block;
}

.catalog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
  color: var(--ink);
}

.catalog-section-head h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 44px);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid #dde3eb;
  border-radius: 50%;
  color: #202632;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}

.plan-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 22px;
}

.gps-plan {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  color: #202632;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.featured-plan {
  border-color: rgba(229, 9, 20, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(229, 9, 20, 0.17);
}

.plan-label {
  display: block;
  align-self: stretch;
  margin-bottom: 0;
  padding: 18px 20px;
  border-radius: 0;
  color: var(--white);
  background: #202632;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.featured-plan .plan-label,
.plan-label.red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.gps-plan h3 {
  min-height: 74px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 22px 20px;
  border-bottom: 1px solid #edf0f4;
  text-align: center;
  font-size: 21px;
  text-transform: uppercase;
}

.vehicle-art {
  width: calc(100% - 36px);
  height: 154px;
  object-fit: contain;
  display: block;
  margin: 18px auto 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(229, 9, 20, 0.08)),
    #f7f8fa;
}

.catalog-empty {
  padding: 34px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.catalog-empty h2 {
  margin-bottom: 12px;
}

.plan-price {
  display: block;
  margin: 34px 20px 8px;
  color: var(--red);
  text-align: center;
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}

.plan-price small {
  color: #4b5563;
  font-size: 16px;
}

.plan-note {
  min-height: 54px;
  margin: 0 24px 22px;
  color: #596273;
  text-align: center;
  font-weight: 700;
}

.gps-plan ul {
  flex: 1;
  margin: 0;
  padding: 24px 28px 24px 46px;
  border-top: 1px solid #edf0f4;
  color: #202632;
}

.gps-plan li::marker {
  color: var(--red);
}

.gps-plan .btn {
  width: calc(100% - 48px);
  margin: 0 24px 26px;
}

.private-slider {
  grid-auto-columns: minmax(270px, 330px);
}

.promo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.promo-gallery img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
  .catalog-tabs {
    top: 126px;
  }

  .catalog-section-head {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .promo-gallery {
    grid-template-columns: 1fr;
  }

  .catalog-section {
    width: min(100% - 18px, 560px);
  }

  .plan-slider {
    grid-auto-columns: calc(100vw - 28px);
    gap: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .gps-plan {
    width: calc(100vw - 28px);
  }

  .vehicle-art {
    height: 190px;
  }

  .plan-price {
    font-size: 64px;
  }
}
