:root {
  --dark: #14161c;
  --dark-2: #1d212b;
  --dark-3: #262b37;
  --accent: #ff5a1f;
  --accent-dark: #e84a12;
  --accent-soft: #fff1ea;
  --white: #ffffff;
  --text: #2b2f38;
  --muted: #6b7280;
  --line: #e7e9ee;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(20, 22, 28, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 22, 28, 0.14);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 22, 28, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 104px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}
.logo svg { width: 40px; height: 40px; }
.logo span small { display: block; font-size: 0.7rem; font-weight: 500; color: #b6bcc8; }
.footer-brand .logo img { height: 96px; max-width: 340px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #dfe3ea;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); color: #fff !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
  transition: 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  color: #fff;
  padding: 110px 0 120px;
  background:
    linear-gradient(100deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.55) 55%, rgba(10, 12, 16, 0.35) 100%),
    var(--dark);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-moto.jpg") center / cover no-repeat;
  z-index: -1;
  animation: zoom 18s ease-in-out infinite alternate;
}
@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffe8dc;
  margin-bottom: 22px;
}
.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 800;
  max-width: 680px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  max-width: 620px;
  margin: 22px 0 32px;
  font-size: 1.1rem;
  color: #d7dbe2;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(255, 90, 31, 0.35); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 46px;
}
.hero-meta-item { display: flex; align-items: center; gap: 12px; }
.hero-meta-item svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.hero-meta-item strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.hero-meta-item small { color: #b6bcc8; font-size: 0.82rem; }

/* ============ SECCIONES ============ */
.section { padding: 84px 0; }
#tasador, .city-split, .faq { scroll-margin-top: 96px; }
.section-alt { background: #f6f7f9; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.15;
}
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ============ BARRAS DE CONFIANZA ============ */
.trust-strip { background: var(--dark); color: #fff; padding: 22px 0; }
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.trust-item svg { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
.trust-item strong { font-family: var(--font-head); font-size: 1.05rem; display: block; }
.trust-item small { color: #b6bcc8; font-size: 0.8rem; }

/* ============ SERVICIOS ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #f0c9b8; }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; color: var(--accent); }
.card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ============ COMO FUNCIONA ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px 26px;
  text-align: center;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(255, 90, 31, 0.4);
}
.step svg { width: 40px; height: 40px; color: var(--dark); margin: 6px auto 14px; }
.step h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ============ ZONA DE SERVICIO ============ */
.zone-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.zone-visual {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 30px;
  color: #fff;
}
.zone-map { border-radius: var(--radius-sm); overflow: hidden; line-height: 0; }
.zone-map svg { width: 100%; height: auto; }
.zone-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.zone-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.zone-stat strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--accent); display: block; }
.zone-stat small { color: #b6bcc8; font-size: 0.78rem; }

.zone-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
.zone-list h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 6px; }
.zone-list p { color: var(--muted); margin-bottom: 18px; }
.zone-comarca { margin-bottom: 16px; }
.zone-comarca h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}
.zone-comarca ul li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 3px 0 3px 18px;
  position: relative;
}
.zone-comarca ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============ POR QUE NOSOTROS ============ */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-list li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.why-list li:last-child { border-bottom: 0; }
.why-list svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.why-list strong { font-family: var(--font-head); display: block; font-size: 1rem; }
.why-list p { color: var(--muted); font-size: 0.92rem; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(115deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 22px;
  padding: 52px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
.cta-banner p { margin-top: 8px; opacity: 0.95; max-width: 560px; }
.cta-banner .btn { background: #fff; color: var(--accent-dark); }
.cta-banner .btn:hover { background: var(--dark); color: #fff; }

/* ============ TESTIMONIOS ============ */
.grid-3 .testimonial { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff; }
.stars { color: #ffb400; letter-spacing: 2px; font-size: 1.05rem; }
.testimonial p { font-size: 0.95rem; margin: 12px 0 18px; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark-3); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 0.92rem; }
.testimonial-author small { color: var(--muted); font-size: 0.8rem; }

/* ============ TESTIMONIOS CARRUSEL ============ */
.testimonials { position: relative; max-width: 780px; margin: 0 auto; }
.testimonials-track { position: relative; min-height: 300px; }
.t-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.t-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.t-slide .card { height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.t-slide blockquote { font-size: 1.03rem; line-height: 1.65; color: var(--text); font-style: italic; }
.t-slide blockquote::before {
  content: "“";
  display: block;
  font-family: var(--font-head);
  font-size: 3.4rem;
  color: var(--accent);
  line-height: 0.8;
  margin-bottom: 8px;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}
.t-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.t-nav-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.t-dots { display: flex; gap: 8px; }
.t-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d4d8e0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.t-dots button.active { background: var(--accent); transform: scale(1.35); }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
}
.faq-q .chev { flex-shrink: 0; transition: transform 0.25s; color: var(--accent); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: 0.95rem; }

/* ============ MOTOS EN VENTA ============ */
.motos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.moto-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.moto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.moto-img { height: 230px; overflow: hidden; position: relative; }
.moto-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.moto-card:hover .moto-img img { transform: scale(1.05); }
.moto-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.moto-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.moto-body h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.moto-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.moto-specs span {
  font-size: 0.78rem;
  font-weight: 600;
  background: #f1f3f6;
  border-radius: 50px;
  padding: 4px 12px;
  color: var(--text);
}
.moto-body p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.moto-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.moto-price strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--accent-dark); }
.moto-price small { color: var(--muted); font-size: 0.75rem; display: block; }

/* ============ SOBRE NOSOTROS ============ */
.page-hero {
  background:
    linear-gradient(110deg, rgba(10, 12, 16, 0.9), rgba(10, 12, 16, 0.6)),
    var(--dark);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
.page-hero p { color: #d7dbe2; max-width: 640px; margin: 14px auto 0; font-size: 1.05rem; }

.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.about-gallery img { border-radius: var(--radius); width: 100%; height: 200px; object-fit: cover; }
.about-gallery img:first-child { grid-row: span 2; height: 100%; }
.about-text h2 { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; margin-bottom: 18px; line-height: 1.2; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text ul { margin: 18px 0; }
.about-text ul li { padding: 7px 0 7px 28px; position: relative; }
.about-text ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 17px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.stats-band { background: var(--dark); color: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; padding: 0 20px; }
.stats-inner strong { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--accent); display: block; }
.stats-inner small { color: #b6bcc8; text-transform: uppercase; letter-spacing: 1px; font-size: 0.78rem; }

/* ============ CONTACTO ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 24px; font-size: 0.95rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; }
.form-group label span { color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15);
  background: #fff;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.info-card svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-card h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.93rem; }
.info-card a:hover { color: var(--accent); }
.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.social-row a:hover { background: var(--accent); transform: translateY(-2px); }
.social-row svg { width: 20px; height: 20px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); color: #c9ced8; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; color: #a6adb9; max-width: 340px; }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #a6adb9; font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: #8b93a1;
}
.footer-bottom a { color: #a6adb9; }

/* ============ WHATSAPP FLOTANTE ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ TASADOR ONLINE ============ */
.tasador { position: relative; overflow: hidden; }
.tasador-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: center;
}
.tasador-copy h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.4px; }
.tasador-copy p { color: var(--muted); margin: 16px 0 8px; }
.tasador-copy ul { margin-top: 18px; }
.tasador-copy ul li { padding: 6px 0 6px 28px; position: relative; font-size: 0.95rem; }
.tasador-copy ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 15px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.tasador-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.tasador-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 6px; }
.tasador-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.tasador-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tasador-form .form-group { margin-bottom: 0; }
.tasador-form .form-group.full { grid-column: span 2; }

/* ============ MIGAS DE PAN ============ */
.breadcrumbs { background: #f6f7f9; padding: 14px 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li::after { content: "/"; margin-left: 6px; color: #c2c7d1; }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--accent); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ============ LANDING POR CIUDAD ============ */
.city-hero {
  background:
    linear-gradient(110deg, rgba(10, 12, 16, 0.92), rgba(10, 12, 16, 0.6)),
    var(--dark);
  color: #fff;
  padding: 84px 0;
}
.city-hero h1 { font-family: var(--font-head); font-size: clamp(1.9rem, 4.2vw, 2.8rem); font-weight: 800; line-height: 1.15; }
.city-hero h1 span { color: var(--accent); }
.city-hero p { color: #d7dbe2; max-width: 700px; margin: 18px 0 26px; font-size: 1.05rem; }
.city-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.city-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}
.city-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.city-areas h3 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 14px; }
.city-areas ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.city-areas ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 16px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.city-areas ul li strong { font-family: var(--font-head); font-size: 0.92rem; }
.city-areas ul li small { display: block; color: var(--muted); font-size: 0.82rem; }
.city-side .info-card { margin-bottom: 14px; }
.city-links { display: flex; flex-wrap: wrap; gap: 10px; }
.city-links a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.city-links a:hover { border-color: var(--accent); color: var(--accent); }

/* ============ PAGINA LEGAL ============ */
.legal-page { max-width: 820px; margin: 0 auto; }
.legal-page h1 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 24px; }
.legal-page h2 { font-family: var(--font-head); font-size: 1.2rem; margin: 28px 0 10px; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.95rem; margin-bottom: 10px; }
.legal-page ul { padding-left: 20px; list-style: disc; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .logo img { height: 96px; max-width: 320px; }
  .footer-brand .logo img { height: 86px; }
}

@media (max-width: 992px) {
  .nav { height: 116px; }
  .logo img { height: 92px; max-width: 300px; }
  .footer-brand .logo img { height: 84px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .zone-wrap, .why, .about-grid, .contact-grid, .tasador-wrap, .city-split { grid-template-columns: 1fr; }
  .motos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed;
    top: 116px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 28px 32px;
    gap: 20px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 10px 0; }
  .nav-links .nav-cta { text-align: center; justify-content: center; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .nav { height: 96px; }
  .logo img { height: 76px; max-width: 250px; }
  .footer-brand .logo img { height: 76px; }
  .nav-links { top: 96px; }
  .section { padding: 56px 0; }
  .page-hero, .city-hero { padding: 56px 0; }
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: clamp(1.7rem, 6.5vw, 2.3rem); }
  .hero p { font-size: 1rem; }
  .grid-3, .motos-grid, .stats-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .zone-list { grid-template-columns: 1fr; }
  .zone-stats { grid-template-columns: 1fr; }
  .tasador-form { grid-template-columns: 1fr; }
  .tasador-form .form-group.full { grid-column: span 1; }
  .tasador-card { padding: 22px; }
  .cta-banner { padding: 34px 24px; text-align: center; justify-content: center; }
  .cta-banner .btn { width: 100%; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery img:first-child { grid-row: auto; height: 220px; }
  .contact-form-card { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .city-split, .zone-wrap { gap: 30px; }
  .city-hero .hero-actions { flex-direction: column; }
  .city-hero .hero-actions .btn { width: 100%; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

@media (max-width: 400px) {
  .nav { height: 88px; }
  .logo img { height: 68px; max-width: 220px; }
  .nav-links { top: 88px; }
  .section-head h2 { font-size: 1.55rem; }
  .testimonials-nav { gap: 14px; }
}
