/* ============================================================
   INFINITY MOTO SPORT — Styles
   ============================================================ */

:root {
  --navy:      #1C1C2E;
  --navy-dark: #0f0f1c;
  --navy-card: #1a1a2e;
  --navy-card2:#13132a;
  --red:       #E8401C;
  --red-hover: #c73418;
  --white:     #ffffff;
  --gray-bg:   #F0F0F0;
  --gray-text: #aaaaaa;
  --green-wa:  #25D366;
  --green-wa-h:#1da851;
  --font-h:    'Oswald', sans-serif;
  --font-b:    'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-b); background: var(--navy); color: var(--white); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--red);
  z-index: 9999;
  transition: width 0.08s linear;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: 70px;
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled {
  background: rgba(15,15,28,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img  { height: 44px; width: auto; object-fit: contain; }

.nav-links { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
.nav-link {
  font-family: var(--font-b); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.07em;
  color: var(--white); position: relative; padding-bottom: 4px;
  transition: color 0.2s; text-transform: uppercase;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.28s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ============================================================
   HAMBURGER
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — AUTOPLAY VIDEO LOOP
   ============================================================ */
.hero { height: 100vh; position: relative; }
.hero-sticky {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,22,0.82) 0%,
    rgba(10,10,22,0.55) 45%,
    rgba(10,10,22,0.25) 100%
  );
}

/* Contenido izquierdo */
.hero-left {
  position: absolute;
  top: 200px;
  left: 300px;
  right: 0;
  z-index: 2;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo {
  width: clamp(260px, 36vw, 460px);
  height: auto; object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 28px rgba(0,0,0,0.55));
}

.hero-desc {
  font-family: var(--font-b);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Dos botones CTA */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-b); font-size: 1rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.hero-cta-arrow { font-size: 1.3rem; line-height: 1; }

.hero-cta--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 4px 22px rgba(232,64,28,0.38);
}
.hero-cta--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,64,28,0.45);
}
.hero-cta--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.hero-cta--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Líneas decorativas */
.hero-lines-svg {
  position: absolute;
  bottom: 0; right: 0;
  width: clamp(280px, 36vw, 480px);
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* Badge circular */
.hero-badge {
  position: absolute; top: 90px; right: 44px;
  width: 112px; height: 112px; z-index: 2;
  animation: badge-spin 14s linear infinite;
  animation-play-state: paused;
}
.hero-badge.spinning { animation-play-state: running; }
.badge-svg { width: 100%; height: 100%; }
.badge-inner {
  position: absolute; inset: 28%;
  display: flex; align-items: center; justify-content: center;
}
.badge-logo {
  width: 100%; height: 100%; object-fit: contain;
  /* Sin contra-rotación: gira junto al badge completo de forma frontal */
}
@keyframes badge-spin { to { transform: rotate(360deg); } }

/* Flecha scroll */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2.5px solid rgba(255,255,255,0.7);
  border-bottom: 2.5px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: arrow-bounce 1.6s ease-in-out infinite;
}
.scroll-arrow.delay { animation-delay: 0.3s; opacity: 0.5; }
@keyframes arrow-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   PRODUCTOS — Infinite Marquee Carousel
   ============================================================ */
.productos {
  background: var(--navy-dark);
  padding: 80px 0 90px;
  overflow: hidden;
}
.productos-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 2rem;
}
.productos-eyebrow {
  font-family: var(--font-b);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.28em; color: var(--red);
  text-transform: uppercase; margin-bottom: 8px;
}
.productos-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700; color: var(--white);
  line-height: 1; letter-spacing: 0.04em;
}
.productos-underline {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 14px auto 0;
  border-radius: 2px;
}
.marquee-wrapper {
  position: relative;
  width: 100%;
}
.marquee-outer { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex; gap: 28px;
  width: max-content;
  animation: marquee-slide 55s linear infinite;
  padding: 8px 0 16px;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Flechas de navegación ── */
.marquee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(28,28,46,0.85);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.marquee-arrow svg { width: 22px; height: 22px; }
.marquee-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}
.marquee-arrow--left  { left: 12px; }
.marquee-arrow--right { right: 12px; }
.prod-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; width: 260px;
  flex-shrink: 0; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.prod-card:hover { border-color: var(--red); transform: translateY(-6px); }
.prod-img-wrap {
  width: 100%; height: 220px;
  background: #13131f;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 20px;
}
.prod-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.35s ease;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-info {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.prod-name {
  font-family: var(--font-h); font-size: 1rem;
  font-weight: 600; letter-spacing: 0.06em;
  color: var(--white); text-align: center;
}
.prod-btn {
  display: inline-block; background: var(--red);
  color: var(--white); font-family: var(--font-b);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; padding: 10px 28px;
  border-radius: 50px; transition: background 0.2s, transform 0.2s;
}
.prod-btn:hover { background: var(--red-hover); transform: scale(1.04); }

.prod-price {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
}

/* ============================================================
   MANTENCIÓN — Sección principal
   ============================================================ */
.mantencion {
  background: var(--navy);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

/* Imagen de fondo al 30% de opacidad — se mezcla con el navy */
.mantencion::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../fondo - mantencion.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.30;
  z-index: 0;
  pointer-events: none;
}

.mant-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

/* Header */
.mant-header {
  text-align: center;
  margin-bottom: 64px;
}
.mant-eyebrow {
  font-family: var(--font-b); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.35em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 8px;
}
.mant-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); text-transform: uppercase;
  line-height: 1; margin-bottom: 16px;
}
.mant-underline {
  width: 56px; height: 4px;
  background: var(--red); border-radius: 2px;
  margin: 0 auto 18px;
}
.mant-desc {
  font-family: var(--font-b); font-size: 1rem;
  color: rgba(255,255,255,0.55); line-height: 1.6;
}

/* Grid de tres cards */
.mant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card base */
.mant-card {
  background: var(--navy-card2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.mant-card:hover {
  border-color: rgba(232,64,28,0.4);
  transform: translateY(-4px);
}

/* Top del card — fondo rojo */
.mant-card-top {
  background: var(--red);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Card Full — gradiente más oscuro en top */
.mant-card--full .mant-card-top {
  background: linear-gradient(135deg, #c73418 0%, #a82c14 100%);
}

/* Card Rodaje — azul acero */
.mant-card--rodaje .mant-card-top {
  background: linear-gradient(135deg, #1a2a4a 0%, #0f1e3a 100%);
  border-bottom: 3px solid var(--red);
}

/* Toggle Moto / Scooter */
.mant-toggle {
  display: flex;
  gap: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mant-toggle-btn {
  flex: 1;
  padding: 10px 8px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.mant-toggle-btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
  background: rgba(232,64,28,0.06);
}
.mant-toggle-btn:hover:not(.active) {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
}

/* Duración dentro de lista */
.mant-duracion {
  margin-top: 6px;
  font-style: italic;
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.82rem !important;
}

.mant-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.mant-icon-wrap svg { width: 28px; height: 28px; }

.mant-card-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white); text-transform: uppercase;
  line-height: 1.1;
}
.mant-card-sub {
  font-family: var(--font-b); font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}

/* Body del card */
.mant-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Lista de servicios */
.mant-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mant-list li {
  font-family: var(--font-b); font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.mant-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--red); font-weight: 700;
}

/* Incluye / No incluye */
.mant-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 3px solid var(--red);
}
.mant-inc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-b); font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.mant-inc-label {
  flex-shrink: 0;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 4px;
}
.mant-inc-si  { background: rgba(39,174,96,0.2);  color: #4cd97b; }
.mant-inc-no  { background: rgba(232,64,28,0.2);  color: #ff7a5a; }

/* Nota al pie del card */
.mant-nota {
  font-family: var(--font-b); font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
}
.mant-nota strong { color: rgba(255,255,255,0.65); }

/* Botón VER PRECIO */
.mant-btn-precio {
  margin: 0 28px 28px;
  background: var(--red);
  color: var(--white);
  border: none; border-radius: 8px;
  padding: 15px 24px;
  font-family: var(--font-b); font-size: 1rem;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  box-shadow: 0 4px 16px rgba(232,64,28,0.3);
}
.mant-btn-precio svg { width: 18px; height: 18px; }
.mant-btn-precio:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,64,28,0.45);
}
.mant-btn-precio:active { transform: translateY(0); }

/* ============================================================
   MODAL v2 — Busca tu moto / Cotiza servicio
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #1a1a30;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 44px 36px 32px;
  width: min(540px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  animation: modalIn 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.modal-close svg { width: 16px; height: 16px; }

.modal-eyebrow {
  font-family: var(--font-b); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.3em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 4px;
}
.modal-titulo {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white); text-transform: uppercase;
  margin-bottom: 20px;
}

/* (tabs eliminados — flujo único de mantenciones) */

/* ── Tipo de mantención ── */
.modal-tipo-group {
  display: flex; gap: 8px;
}
.modal-tipo-btn {
  flex: 1; padding: 10px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-b); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-tipo-btn.active {
  background: rgba(232,64,28,0.15);
  border-color: var(--red);
  color: var(--red);
}
.modal-tipo-btn:hover:not(.active) {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

/* ── Fila 2 columnas (Marca / Modelo) ── */
.modal-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

/* ── Campos ── */
.modal-field { margin-bottom: 14px; }
.modal-field:last-child { margin-bottom: 0; }

.modal-label {
  display: block;
  font-family: var(--font-b); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.modal-aceite-marca { color: rgba(255,255,255,0.3); font-weight: 400; text-transform: none; letter-spacing: 0; }

.modal-input {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-b); font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.modal-input::placeholder { color: rgba(255,255,255,0.28); }
.modal-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,64,28,0.15);
}
.modal-input:disabled {
  opacity: 0.4; cursor: not-allowed;
}

.modal-select-wrap { position: relative; }
.modal-select { cursor: pointer; padding-right: 38px; }
.modal-select-arrow {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; color: rgba(255,255,255,0.4);
}
.modal-select-arrow svg { width: 15px; height: 15px; display: block; }

.modal-select option, .modal-select optgroup {
  background-color: #1a1a30;
  color: var(--white);
  font-family: var(--font-b); font-size: 0.95rem;
}

/* ── Tipo de aceite ── */
.modal-aceite-group {
  display: flex; gap: 10px;
}
.modal-aceite-btn {
  flex: 1; padding: 11px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-b); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.aceite-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: background 0.2s;
}
.modal-aceite-btn.active {
  background: rgba(232,64,28,0.12);
  border-color: var(--red);
  color: var(--white);
}
.modal-aceite-btn.active .aceite-dot { background: var(--red); }
.modal-aceite-btn:hover:not(.active) {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

/* ── Caja de precio ── */
.modal-precio-box {
  display: none;
  background: linear-gradient(135deg, rgba(232,64,28,0.12) 0%, rgba(232,64,28,0.06) 100%);
  border: 1px solid rgba(232,64,28,0.35);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  text-align: center;
}
.modal-precio-box.visible { display: block; }
.modal-precio-label {
  font-family: var(--font-b); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.modal-precio-valor {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--red); line-height: 1; margin-bottom: 6px;
}
.modal-precio-nota {
  font-family: var(--font-b); font-size: 0.74rem;
  color: rgba(255,255,255,0.3); line-height: 1.5;
}

/* ── Bloque OTRO (marca no listada) ── */
.modal-otro-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 18px 18px;
  margin-bottom: 14px;
}
.modal-otro-aviso {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--font-b); font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 14px;
}
.modal-otro-aviso svg { flex-shrink: 0; margin-top: 1px; color: rgba(255,255,255,0.35); }
.modal-otro-box .modal-row-2 { margin-bottom: 0; }

/* ── Precio bloqueado (Otros servicios) ── */
.modal-precio-bloqueado {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.4);
}
.modal-bloq-titulo {
  font-family: var(--font-h); font-size: 1.1rem;
  font-weight: 700; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 4px;
}
.modal-bloq-texto {
  font-family: var(--font-b); font-size: 0.82rem;
  color: rgba(255,255,255,0.35); line-height: 1.5;
}

/* ── Botón WhatsApp ── */
.modal-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--green-wa);
  color: var(--white);
  border-radius: 10px;
  padding: 15px 24px;
  font-family: var(--font-b); font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.22s, transform 0.15s;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.modal-wa-btn svg { flex-shrink: 0; }
.modal-wa-btn:hover { background: var(--green-wa-h); transform: translateY(-2px); }

.modal-pago-nota {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-b); font-size: 0.8rem;
  color: rgba(255,255,255,0.35); text-align: center;
}

/* ============================================================
   SISTEMAS DE MANTENCIÓN
   ============================================================ */
.sistemas {
  background: #0f0f1e;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.sistemas::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,64,28,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.sis-container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

.sis-header { text-align: center; margin-bottom: 64px; }
.sis-eyebrow {
  font-family: var(--font-b); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.35em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 12px;
}
.sis-titulo {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white); text-transform: uppercase;
  line-height: 1.1; margin-bottom: 20px;
}
.sis-titulo span { color: var(--red); }
.sis-underline {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 0 auto 20px;
  border-radius: 2px;
}
.sis-subtitulo {
  font-family: var(--font-b); font-size: 1.05rem;
  color: rgba(255,255,255,0.45); max-width: 480px;
  margin: 0 auto;
}

/* ── Grid de cards (columna vertical) ── */
.sis-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Card individual — full-width horizontal ── */
.sis-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.sis-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  transform: scale(1.005);
}
.sis-card:hover .sis-card-overlay {
  background: linear-gradient(to right,
    rgba(8,8,20,0.97) 0%,
    rgba(8,8,20,0.82) 30%,
    rgba(8,8,20,0.45) 65%,
    rgba(8,8,20,0.05) 100%);
}
.sis-card:hover .sis-card-list { opacity: 1; max-width: 400px; }
.sis-card:hover .sis-card-btn  { opacity: 1; transform: translateX(0); }

.sis-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(8,8,20,0.92) 0%,
    rgba(8,8,20,0.55) 35%,
    rgba(8,8,20,0.1)  70%,
    rgba(8,8,20,0.0)  100%);
  transition: background 0.4s;
}

/* Body: fila horizontal izq→der */
.sis-card-body {
  position: relative; z-index: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

/* Bloque izquierdo: ícono + título (siempre visible) */
.sis-card-info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}

.sis-card-icon {
  width: 70px; height: 70px;
  background: rgba(232,64,28,0.15);
  border: 1px solid rgba(232,64,28,0.4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.sis-card-icon svg { width: 36px; height: 36px; }

.sis-card-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 2.24rem; line-height: 1.15;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Lista central (aparece al hover) */
.sis-card-list {
  list-style: none;
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden; max-width: 0; opacity: 0;
  transition: opacity 0.35s ease, max-width 0.45s ease;
  white-space: nowrap;
}
.sis-card-list li {
  font-family: var(--font-b); font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  padding-left: 16px; position: relative;
  line-height: 1.5;
}
.sis-card-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--red); font-weight: 700;
}

/* Botón derecho */
.sis-card-btn {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 10px;
  padding: 14px 24px;
  font-family: var(--font-b); font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0; transform: translateX(16px);
  transition: opacity 0.3s ease, transform 0.35s ease, background 0.2s;
  white-space: nowrap;
}
.sis-card-btn:hover { background: #c93415; }

/* ── Badge servicio en modal sistemas ── */
.sis-modal-servicio-badge {
  display: inline-flex; align-items: center;
  background: rgba(232,64,28,0.12);
  border: 1px solid rgba(232,64,28,0.35);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--font-h); font-size: 1rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 4px;
  width: 100%;
}

/* ── Responsive sistemas ── */
@media (max-width: 900px) {
  .sis-card { min-height: 240px; }
  .sis-card-body { padding: 24px 26px; gap: 24px; }
  .sis-card-title { font-size: 1.3rem; }
}
@media (max-width: 768px) {
  .sistemas { padding: 70px 0 80px; }
  .sis-card {
    min-height: 260px;
    flex-direction: column;
    justify-content: flex-end;
  }
  .sis-card-overlay {
    background: linear-gradient(to top, rgba(8,8,20,0.95) 0%, rgba(8,8,20,0.4) 60%, rgba(8,8,20,0.05) 100%) !important;
  }
  .sis-card-body { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 20px; }
  .sis-card-info { min-width: unset; }
  .sis-card-list { opacity: 1; max-width: 100%; white-space: normal; }
  .sis-card-btn  { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .sis-card { min-height: 220px; }
  .sis-card-title { font-size: 1.1rem; }
}

/* ============================================================
   NUESTRAS MARCAS — Marquee infinito
   ============================================================ */

.marcas {
  background: var(--navy2);
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marcas-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
  padding: 0 2rem;
}
.marcas-line {
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,64,28,0.5));
}
.marcas-header .marcas-line:last-child {
  background: linear-gradient(to left, transparent, rgba(232,64,28,0.5));
}
.marcas-label {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

/* Track wrapper con fade en los bordes */
.marcas-track-wrapper {
  position: relative;
  overflow: hidden;
}
.marcas-track-wrapper::before,
.marcas-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marcas-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--navy2) 0%, transparent 100%);
}
.marcas-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--navy2) 0%, transparent 100%);
}

/* Track animado */
.marcas-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marcas-scroll 32s linear infinite;
}
.marcas-track-wrapper:hover .marcas-track {
  animation-play-state: paused;
}

@keyframes marcas-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Item de marca */
.marca-item {
  display: flex;
  align-items: center;
  padding: 0 48px;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.08);
  height: 60px;
}
.marca-item:hover {
  color: var(--white);
}
.marca-item svg {
  height: 32px;
  width: auto;
  display: block;
}

/* ============================================================
   DIRECCIÓN
   ============================================================ */
.direccion {
  background: var(--gray-bg);
  padding: 100px 0 110px;
}
.dir-container {
  max-width: 1180px; margin: 0 auto; padding: 0 3rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.dir-info { padding-top: 8px; }

.dir-eyebrow {
  font-family: var(--font-b); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.35em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 8px;
}
.dir-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #111; text-transform: uppercase;
  line-height: 1; margin-bottom: 16px;
}
.dir-underline {
  width: 48px; height: 4px;
  background: var(--red); border-radius: 2px;
  margin-bottom: 30px;
}

.dir-address-block {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 30px;
}
.dir-pin-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  color: var(--red); margin-top: 2px;
}
.dir-address-main {
  font-family: var(--font-h); font-size: 1.5rem;
  font-weight: 600; color: #111;
}
.dir-address-sub {
  font-family: var(--font-b); font-size: 1rem;
  color: #666; margin-top: 4px;
}

.dir-horario {
  background: var(--navy);
  border-radius: 12px;
  padding: 22px 24px;
  color: var(--white);
}
.dir-horario-title {
  font-family: var(--font-b); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.2em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 10px;
}
.dir-horario p {
  font-family: var(--font-b); font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.dir-map {
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.dir-map iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ============================================================
   RESEÑAS
   ============================================================ */
.resenas {
  background: var(--navy-dark);
  padding: 100px 0 110px;
}
.res-container {
  max-width: 1180px; margin: 0 auto; padding: 0 3rem;
}
.res-header {
  text-align: center; margin-bottom: 60px;
}
.res-eyebrow {
  font-family: var(--font-b); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.35em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 8px;
}
.res-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); text-transform: uppercase;
  line-height: 1; margin-bottom: 14px;
}
.res-underline {
  width: 48px; height: 4px;
  background: var(--red); border-radius: 2px;
  margin: 0 auto;
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 48px;
}

.res-card {
  background: var(--navy-card2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.res-card:hover {
  border-color: rgba(232,64,28,0.3);
  transform: translateY(-4px);
}

.res-stars {
  font-size: 1.1rem;
  color: #f5c518;
  letter-spacing: 2px;
}

.res-texto {
  font-family: var(--font-b); font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.res-autor {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}
.res-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700;
  font-size: 1rem; color: var(--white);
}
.res-nombre {
  font-family: var(--font-b); font-weight: 700;
  font-size: 0.92rem; color: var(--white);
}
.res-moto {
  font-family: var(--font-b); font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.res-google-link {
  text-align: center;
}
.res-google-link a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-b); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.res-google-link a:hover { color: var(--red); }

.res-casco-wrap {
  text-align: center;
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.res-casco-img {
  max-width: 260px;
  width: 45%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(232,64,28,0.18));
}

/* ============================================================
   FAQ — PREGUNTAS FRECUENTES
   ============================================================ */
.faq {
  background: var(--navy);
  padding: 100px 0 110px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-container {
  max-width: 840px; margin: 0 auto; padding: 0 3rem;
}
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-eyebrow {
  font-family: var(--font-b); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.35em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 8px;
}
.faq-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); text-transform: uppercase;
  line-height: 1; margin-bottom: 14px;
}
.faq-underline {
  width: 48px; height: 4px;
  background: var(--red); border-radius: 2px;
  margin: 0 auto;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(232,64,28,0.45); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer; list-style: none;
  padding: 22px 24px;
  font-family: var(--font-h); font-weight: 600;
  font-size: 1.18rem; color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--red); }
.faq-icon {
  position: relative; flex-shrink: 0;
  width: 20px; height: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: ""; position: absolute;
  background: var(--red); border-radius: 2px;
  transition: transform 0.28s ease;
}
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after  { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-answer {
  padding: 0 24px 22px;
}
.faq-answer p {
  font-family: var(--font-b);
  font-size: 1.02rem; line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); padding-top: 64px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 2.5rem 50px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem; align-items: start;
}
.footer-logo { height: 72px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-tagline {
  font-family: var(--font-b); font-size: 0.9rem;
  color: rgba(255,255,255,0.4); line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-b); font-size: 1rem;
  font-weight: 700; color: var(--red);
  letter-spacing: 0.12em; margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-family: var(--font-b); font-size: 0.95rem;
  color: #c0c0c0; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--red); }

.footer-social { display: flex; flex-direction: column; gap: 16px; }
.social-row    { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid #3a3a50; border-radius: 50%;
  color: var(--white);
  transition: border-color 0.22s, color 0.22s, transform 0.22s;
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }

.footer-whatsapp { margin-top: 4px; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 50px;
  padding: 9px 18px;
  font-family: var(--font-b); font-size: 0.88rem;
  font-weight: 600; color: var(--green-wa);
  transition: background 0.2s;
}
.footer-wa-btn svg { width: 16px; height: 16px; }
.footer-wa-btn:hover { background: rgba(37,211,102,0.2); }

.footer-bottom { border-top: 1px solid #25253a; text-align: center; padding: 20px 2rem; }
.footer-bottom p { font-family: var(--font-b); font-size: 0.82rem; color: #5a5a7a; }

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .hero-left { left: 180px; }
  .dir-container { grid-template-columns: 300px 1fr; gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE — 900px (tablets)
   ============================================================ */
@media (max-width: 900px) {
  .hero-left { left: 40px; top: 120px; right: 0; padding: 0 2rem; }
  .hero-logo { width: clamp(180px, 46vw, 320px); }

  .mant-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .mant-toggle-btn { font-size: 0.78rem; padding: 9px 6px; }

  .dir-container { grid-template-columns: 1fr; gap: 2rem; }
  .dir-map { height: 320px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — 768px (móvil grande)
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    background: rgba(15,15,28,0.98);
    padding: 80px 2rem 2rem; gap: 1.4rem;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    z-index: 998;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.35s ease, visibility 0s linear 0s;
  }
  .nav-link { font-size: 1rem; }

  /* Hero */
  .hero-sticky { overflow: hidden; }
  .hero-left {
    position: absolute;
    left: 0; right: 0; top: 88px;
    padding: 0 1.4rem;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }
  .hero-logo { width: min(60vw, 240px); margin-bottom: 14px; }
  .hero-desc {
    font-size: clamp(0.88rem, 3.2vw, 1rem);
    margin-bottom: 20px;
    max-width: 90%;
    text-align: center;
  }
  .hero-ctas { justify-content: center; gap: 10px; }
  .hero-cta  { font-size: 0.82rem; padding: 12px 24px; }
  .hero-badge { top: 78px; right: 12px; width: 78px; height: 78px; }
  .hero-lines-svg { width: min(44vw, 220px); }

  /* Productos */
  .productos { padding: 60px 0 70px; }
  .prod-card  { width: 200px; }
  .prod-img-wrap { height: 170px; }

  /* Mantención */
  .mantencion { padding: 70px 0 80px; }
  .mant-container { padding: 0 1.5rem; }
  .mant-grid { grid-template-columns: 1fr; }
  .mant-card-top { padding: 24px 22px 22px; }
  .mant-card-body { padding: 22px; }
  .mant-btn-precio { margin: 0 22px 22px; }

  /* Modal */
  .modal-box { padding: 36px 24px 28px; }

  /* Dirección */
  .direccion { padding: 70px 0 80px; }
  .dir-container { padding: 0 1.5rem; grid-template-columns: 1fr; gap: 2rem; }
  .dir-map { height: 280px; }
  .dir-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }

  /* Reseñas */
  .resenas { padding: 70px 0 80px; }
  .res-container { padding: 0 1.5rem; }
  .res-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 40px 1.5rem; }
  .footer-logo { height: 44px; }
}

/* ============================================================
   RESPONSIVE — 480px (móvil pequeño)
   ============================================================ */
@media (max-width: 480px) {
  /* Hero */
  .hero-left  { top: 82px; }
  .hero-logo  { width: min(58vw, 200px); }
  .hero-desc  { font-size: 0.88rem; line-height: 1.6; max-width: 92vw; }
  .hero-cta   { font-size: 0.78rem; padding: 11px 20px; }
  .hero-badge { width: 66px; height: 66px; top: 76px; right: 8px; }

  /* Productos */
  .prod-card     { width: 175px; }
  .prod-img-wrap { height: 148px; }
  .prod-name     { font-size: 0.86rem; }
  .prod-btn      { font-size: 0.74rem; padding: 8px 18px; }

  /* Mantención */
  .mant-title  { font-size: clamp(1.8rem, 9vw, 3rem); }
  .mant-card-title { font-size: 1.4rem; }
  .mant-list li { font-size: 0.85rem; }
  .mant-inc-row { font-size: 0.8rem; }

  /* Modal */
  .modal-box { padding: 30px 18px 24px; }
  .modal-titulo { font-size: 1.4rem; }
  .modal-precio-valor { font-size: 2rem; }

  /* Dirección */
  .dir-title { font-size: clamp(1.6rem, 10vw, 2.4rem); }
  .dir-map { height: 240px; }
  .dir-container { padding: 0 1rem; }

  /* Reseñas */
  .res-container { padding: 0 1rem; }
  .res-title { font-size: clamp(1.6rem, 9vw, 2.4rem); }

  /* Footer */
  .footer-bottom p { font-size: 0.74rem; }
  .footer-heading  { font-size: 0.85rem; }
}
