/* =============================================================
   /assets/css/styles.css
   Alquiler de Furgonetas — Hoja de estilos principal
   Orden: Variables → Reset → Base → Layout → Header → Hero
          → Components → Sections → Footer → Float → Utilities → Responsive
   ============================================================= */


/* ── 1. VARIABLES ─────────────────────────────────────────────── */
:root {
  /* Paleta */
  --color-primary:      #1e40af;
  --color-primary-dk:   #1e3a8a;
  --color-primary-lt:   #dbeafe;
  --color-accent:       #f59e0b;
  --color-accent-dk:    #d97706;
  --color-wa:           #25d366;
  --color-wa-dk:        #1ebe57;
  --color-text:         #111827;
  --color-text-muted:   #6b7280;
  --color-bg:           #f1f5f9;
  --color-white:        #ffffff;
  --color-border:       #e5e7eb;

  /* Tipografía */
  --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs:     0.75rem;
  --fs-sm:     0.875rem;
  --fs-base:   1rem;
  --fs-md:     1.125rem;
  --fs-lg:     1.25rem;
  --fs-xl:     1.5rem;
  --fs-2xl:    2rem;
  --fs-3xl:    clamp(1.6rem, 3.5vw, 2.5rem);
  --fs-hero:   clamp(2rem, 5vw, 3.25rem);

  /* Espaciado */
  --sp-xs:   0.25rem;
  --sp-sm:   0.5rem;
  --sp-md:   1rem;
  --sp-lg:   1.5rem;
  --sp-xl:   2rem;
  --sp-2xl:  3rem;
  --sp-3xl:  5rem;

  /* Layout */
  --container-max: 1100px;
  --container-pad: clamp(1rem, 4vw, 1.5rem);

  /* Forma */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12);

  /* Transición global */
  --ease: 0.22s cubic-bezier(.4,0,.2,1);
}


/* ── 2. RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--color-primary-dk); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
p { max-width: 65ch; }


/* ── 3. BASE TIPOGRAFÍA ───────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--color-text); }
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }


/* ── 4. LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section         { padding-block: var(--sp-2xl); }
.section--lg     { padding-block: var(--sp-3xl); }
.section--white  { background: var(--color-white); }
.section--gray   { background: var(--color-bg); }
.section--blue   { background: var(--color-primary-lt); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.section-header h2 { margin-bottom: var(--sp-sm); }
.section-header p  { color: var(--color-text-muted); font-size: var(--fs-md); margin-inline: auto; }


/* ── 5. SKIP LINK (accesibilidad) ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-md);
  background: var(--color-primary);
  color: #fff;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--ease);
}
.skip-link:focus { top: var(--sp-md); }


/* ── 6. BOTONES ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: .75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-base);
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  text-align: center;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,64,175,.30);
}
.btn-primary:hover { background: var(--color-primary-dk); color: #fff; box-shadow: 0 6px 20px rgba(30,64,175,.40); }

.btn-whatsapp {
  background: var(--color-wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: var(--color-wa-dk); color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.45); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}

.btn-phone {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  gap: var(--sp-sm);
}
.btn-phone:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* Ocultar en móvil, mostrar solo en desktop */
.btn-desktop-only { display: none; }
@media (min-width: 768px) {
  .btn-desktop-only { display: inline-flex; }
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

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

.btn-sm  { padding: .5rem 1rem;   font-size: var(--fs-sm); border-radius: var(--radius-sm); }
.btn-lg  { padding: 1rem 2rem;    font-size: var(--fs-md); border-radius: var(--radius-lg); }
.btn-wa-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  object-fit: contain;
  text-decoration: none;
  line-height: 0;
}


/* ── 7. HEADER ────────────────────────────────────────────────── */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .875rem;
  gap: var(--sp-md);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 100px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

/* Hamburguesa */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 7px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background var(--ease);
  z-index: 200;
}
.menu-toggle:hover { background: var(--color-bg); }
.menu-toggle:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.menu-toggle.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navegación — mobile */
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.main-nav.is-open { display: block; }

.nav-list {
  display: flex;
  flex-direction: column;
  padding: var(--sp-sm) var(--container-pad) var(--sp-md);
}
.nav-link {
  display: block;
  padding: .625rem var(--sp-md);
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  transition: background var(--ease), color var(--ease);
}
.nav-link:hover,
.nav-link.active {
  background: var(--color-primary-lt);
  color: var(--color-primary);
}

/* Navegación — desktop */
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .main-nav {
    display: block !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .125rem;
    padding: 0;
  }
  .nav-link { padding: .5rem .625rem; font-size: .8125rem; }
}


/* ── 8. HERO ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, #0f2d6e 0%, var(--color-primary) 55%, #3b82f6 100%);
  color: #fff;
  padding-block: clamp(3rem, 8vw, 5.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Patrón sutil de fondo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: .375rem 1rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: var(--sp-lg);
  letter-spacing: .03em;
}
.hero h1, .hero h1 * { color: #fff; }
.hero h1 { margin-bottom: var(--sp-lg); text-shadow: 0 2px 12px rgba(0,0,0,.18); }
.hero-city-name { color: #93c5fd; }

.hero-subtitle {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.85);
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
  max-width: 54ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  justify-content: center;
  margin-bottom: var(--sp-xl);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xl) var(--sp-2xl);
  justify-content: center;
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat-num   { font-size: var(--fs-2xl); font-weight: 800; }
.hero-stat-label { font-size: var(--fs-xs);  color: rgba(255,255,255,.7); }


/* ── 9. BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb-wrapper { background: var(--color-white); border-bottom: 1px solid var(--color-border); }
.breadcrumb { padding-block: .75rem; font-size: var(--fs-sm); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .375rem;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: .25rem; }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--color-text-muted); }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb [aria-current="page"] { color: var(--color-text); font-weight: 500; }


/* ── 10. TARJETAS DE VEHÍCULOS ────────────────────────────────── */
.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
.vehicle-card {
  display: flex;
  gap: var(--sp-lg);
  padding: var(--sp-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-lt);
}
.vehicle-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
  width: 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: .25rem;
}
.vehicle-body { flex: 1; min-width: 0; }
.vehicle-name {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-sm);
}
.vehicle-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-md);
}
.vehicle-usos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
}
.vehicle-usos li {
  background: var(--color-primary-lt);
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .625rem;
  border-radius: 999px;
}
.vehicle-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.vehicle-capacidad { font-size: var(--fs-sm); color: var(--color-text-muted); }
.vehicle-precio    { font-size: var(--fs-md);  font-weight: 700; color: var(--color-accent-dk); }


/* ── 11. PASOS (Cómo funciona) ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
.step-card {
  text-align: center;
  padding: var(--sp-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fs-lg);
  font-weight: 800;
  margin-bottom: var(--sp-md);
}
.step-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-xs); }
.step-card p  { font-size: var(--fs-sm); color: var(--color-text-muted); margin-inline: auto; }


/* ── 12. BENEFICIOS ───────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
.benefit-card {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--ease);
}
.benefit-card:hover { box-shadow: var(--shadow-sm); }
.benefit-icon { font-size: 1.625rem; flex-shrink: 0; line-height: 1; padding-top: .1rem; }
.benefit-card h3 { font-size: var(--fs-base); font-weight: 600; margin-bottom: .25rem; }
.benefit-card p  { font-size: var(--fs-sm); color: var(--color-text-muted); }


/* ── 13. TESTIMONIOS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars  { color: var(--color-accent); font-size: var(--fs-md); margin-bottom: var(--sp-sm); }
.testimonial-text   { font-style: italic; color: var(--color-text); margin-bottom: var(--sp-md); line-height: 1.7; }
.testimonial-author { font-weight: 600; font-size: var(--fs-sm); color: var(--color-text-muted); }


/* ── 14. FAQ (details/summary) ────────────────────────────────── */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-lg) 0;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-base);
  list-style: none;
  color: var(--color-text);
  transition: color var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-primary); }

.faq-item summary::after {
  content: '+';
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding-bottom: var(--sp-lg);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.75;
}


/* ── 15. INTRO LOCAL ─────────────────────────────────────────── */
.local-intro {
  border-left: 4px solid var(--color-primary);
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--color-primary-lt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--sp-xl);
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--color-text);
}
.local-intro p { max-width: none; }


/* ── 16. COBERTURA ───────────────────────────────────────────── */
.coverage-box {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
  background: var(--color-primary-lt);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
}
.coverage-icon { font-size: 2rem; flex-shrink: 0; }
.coverage-box h3 { font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-xs); }
.coverage-box p  { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--sp-md); }


/* ── 17. GRID DE CIUDADES ────────────────────────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}
.city-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.city-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.city-card--home { border-style: dashed; }
.city-icon { font-size: 1.625rem; margin-bottom: var(--sp-xs); }
.city-card a {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--fs-md);
  text-decoration: none;
}
.city-card a:hover { color: var(--color-primary); }


/* ── 18. SECCIÓN CON CONDUCTOR ──────────────────────────────── */
.conductor-card {
  display: flex;
  gap: var(--sp-2xl);
  align-items: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid var(--color-primary-lt);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
}
.conductor-emoji { font-size: 3.5rem; flex-shrink: 0; line-height: 1; }
.conductor-body h2 { margin-bottom: var(--sp-sm); }
.conductor-body p  { margin-bottom: var(--sp-lg); color: var(--color-text-muted); }
@media (max-width: 599px) {
  .conductor-card { flex-direction: column; text-align: center; }
  .conductor-body .btn { width: 100%; justify-content: center; }
}


/* ── 19. SECCIÓN CTA ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dk), var(--color-primary));
  color: #fff;
  text-align: center;
  padding-block: var(--sp-3xl);
}
.cta-section h2 { color: #fff; margin-bottom: var(--sp-md); }
.cta-section p  {
  color: rgba(255,255,255,.82);
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
  font-size: var(--fs-md);
}


/* ── 19. FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,.7);
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  margin-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-md);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-text {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  max-width: 28ch;
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: var(--fs-sm);
  transition: color var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
  line-height: 1.9;
}


/* ── 20. BOTÓN FLOTANTE WHATSAPP ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  margin: 0 auto;
  width: fit-content;
  max-width: calc(100vw - 2rem);
  z-index: 999;
  background: var(--color-wa);
  color: #fff !important;
  border-radius: 999px;
  padding: .875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  box-shadow: 0 4px 24px rgba(37,211,102,.42);
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.wa-float:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.52);
  color: #fff !important;
}
.wa-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }


/* ── 21. PÁGINAS LEGALES ─────────────────────────────────────── */
.legal-content {
  max-width: 740px;
  margin-inline: auto;
  padding-block: var(--sp-2xl);
}
.legal-content h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-xl); }
.legal-content h2 { font-size: var(--fs-xl); margin-top: var(--sp-xl); margin-bottom: var(--sp-md); color: var(--color-primary); }
.legal-content h3 { font-size: var(--fs-lg); margin-top: var(--sp-lg); margin-bottom: var(--sp-sm); }
.legal-content p,
.legal-content li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-md);
}
.legal-content ul { list-style: disc; padding-left: var(--sp-xl); }
.legal-content a  { text-decoration: underline; }
.legal-updated {
  display: inline-block;
  background: var(--color-primary-lt);
  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: var(--sp-xl);
}


/* ── 22. UTILIDADES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-muted   { color: var(--color-text-muted); }
.fw-bold      { font-weight: 700; }
.d-flex       { display: flex; }
.gap-md       { gap: var(--sp-md); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ── 23. RESPONSIVE ──────────────────────────────────────────── */

/* 480 px */
@media (min-width: 480px) {
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 600 px */
@media (min-width: 600px) {
  .vehicles-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .steps-grid         { grid-template-columns: repeat(3, 1fr); }
}

/* 768 px — tablet */
@media (min-width: 768px) {
  .footer-grid        { grid-template-columns: 2fr 1fr 1fr; }
  .testimonials-grid  { grid-template-columns: repeat(3, 1fr); }
  .cities-grid        { grid-template-columns: repeat(3, 1fr); }
}

/* 1024 px — desktop */
@media (min-width: 1024px) {
  .vehicles-grid  { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid  { grid-template-columns: repeat(3, 1fr); }
  .cities-grid    { grid-template-columns: repeat(6, 1fr); }
}

/* Bordes de tarjetas más visibles en móvil */
@media (max-width: 767px) {
  .vehicle-card,
  .step-card,
  .benefit-card,
  .testimonial-card,
  .conductor-card {
    border-color: #b0bac4;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
  }
}

/* Botones dentro de tarjetas: full-width en móvil para no desbordar */
@media (max-width: 599px) {
  .vehicle-card .btn,
  .coverage-box .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* Desktop: botón flotante a la derecha */
@media (min-width: 768px) {
  .wa-float {
    left: auto;
    right: 1.5rem;
    margin: 0;
    width: auto;
    max-width: none;
  }
}

/* ── LANDING VEHÍCULO: PRICING ───────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-2xl);
}
.pricing-card {
  position: relative;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-xl) var(--sp-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  transition: transform var(--ease), box-shadow var(--ease);
}
.pricing-card--popular {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: .25rem .875rem;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pricing-badge--larga { background: #16a34a; }
.pricing-card--larga  { border-color: #16a34a; }
.pricing-card--larga .pricing-price { color: #15803d; }
.pricing-plan-name {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-xs);
  letter-spacing: -.01em;
}
.pricing-card--popular .pricing-plan-name { color: var(--color-primary); }
.pricing-card--larga .pricing-plan-name   { color: #15803d; }

.pricing-price {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--color-primary);
}
.pricing-kms {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text);
}
.pricing-detail {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-md);
  max-width: 28ch;
}
.km-rule-box {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fbbf24;
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-xl);
}
.km-rule-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }
.km-rule-box strong { display: block; margin-bottom: var(--sp-xs); }
.km-rule-box p { font-size: var(--fs-sm); color: var(--color-text-muted); max-width: none; }

/* ── LANDING VEHÍCULO: REQUISITOS ────────────────────────────── */
.reqs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
.req-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  text-align: center;
}
.req-icon { font-size: 2.5rem; margin-bottom: var(--sp-sm); line-height: 1; }
.req-item h3 { font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-xs); }
.req-item p  { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0 auto; }

/* Link "Ver tarifas" en tarjetas de vehículos */
.vehicle-tarifas-link {
  display: inline-block;
  margin-top: var(--sp-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary);
}
.vehicle-tarifas-link:hover { color: var(--color-primary-dk); }

/* Responsive pricing + requisitos */
@media (min-width: 600px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reqs-grid    { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-card--larga {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .req-item { border-color: #b0bac4; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
  .pricing-card { border-color: #b0bac4; }
  .pricing-card .btn { width: 100%; justify-content: center; white-space: normal; }
}

/* ── CONDICIONES DEL ALQUILER ────────────────────────────────── */
.larga-duracion-box {
  background: #f0fdf4;
  border: 2px solid #16a34a;
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.larga-duracion-header {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}
.larga-duracion-header span { font-size: 1.75rem; line-height: 1; }
.larga-duracion-header h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: #15803d;
  margin: 0;
}
.larga-duracion-price {
  font-size: var(--fs-xl);
  color: #15803d;
  margin-bottom: var(--sp-sm);
}
.larga-duracion-box p { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--sp-md); }
.larga-duracion-box .btn { margin-top: var(--sp-xs); }

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
.condition-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
}
.condition-icon { font-size: 2rem; margin-bottom: var(--sp-sm); line-height: 1; }
.condition-item h3 { font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-xs); }
.condition-item p  { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0; }
.condition-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.condition-list li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.condition-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 600px) {
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .condition-item { border-color: #b0bac4; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
  .larga-duracion-box .btn { width: 100%; justify-content: center; white-space: normal; }
}

/* Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
