/* ==========================================================================
   Reparatec — Sistema de diseño
   ========================================================================== */

:root {
  /* Neutros cálidos */
  --cream: #f7f3ec;
  --cream-deep: #f0e9da;
  --sand-200: #e6ddc9;
  --sand-300: #d9ccaf;
  --stone-500: #8b8171;
  --stone-600: #6b6153;
  --stone-700: #4a4436;

  /* Marca — azul (acento informativo, nunca fondo de página completo) */
  --navy-900: #0a1f38;
  --navy-800: #0f2a4a;
  --navy-700: #163a63;
  --blue-500: #2e9ee8;
  --blue-600: #1d84c9;
  --blue-100: #e5f3fd;

  /* Acento cálido — naranja (llamadas y acciones secundarias) */
  --orange-500: #e8703a;
  --orange-600: #c85a29;
  --orange-100: #fbe3d4;

  /* WhatsApp — verde de marca, reservado para acciones de WhatsApp */
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;

  --white: #ffffff;

  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(70, 55, 30, 0.08);
  --shadow-md: 0 10px 28px rgba(70, 55, 30, 0.12);
  --shadow-lg: 0 22px 50px rgba(70, 55, 30, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

html { scroll-padding-top: 168px; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 84px 0; background: var(--white); }
@media (max-width: 640px) {
  section { padding: 56px 0; }
}

.section-alt { background: var(--cream); }
.section-sky { background: var(--blue-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--stone-600);
  font-size: 1.2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

/* Acción de WhatsApp — verde de marca, siempre reconocible */
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

/* Acción secundaria (Llamar) — naranja sólido */
.btn-call {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
  box-shadow: 0 8px 20px rgba(232, 112, 58, 0.3);
}
.btn-call:hover { background: var(--orange-600); border-color: var(--orange-600); }

/* Acción secundaria general (Ver términos, Descargar PDF, Llamar en barra móvil) */
.btn-call-solid {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
}
.btn-call-solid:hover { background: var(--orange-600); border-color: var(--orange-600); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.btn-block { width: 100%; }
.btn-lg { padding: 20px 40px; font-size: 1.15rem; }
.btn-xl { padding: 20px 40px; font-size: 1.3rem; box-shadow: var(--shadow-lg); }
.btn-call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.btn-call-text small { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.85; }
.btn-call-text strong { font-size: 1.25rem; font-weight: 800; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-900);
  color: #cfe0f2;
  font-size: 0.88rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
}
.topbar a { color: #cfe0f2; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left { display: flex; gap: 22px; }
.topbar svg { width: 14px; height: 14px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.92;
  transition: opacity .15s ease, transform .15s ease;
}
.topbar-social a:hover { opacity: 1; transform: translateY(-1px); }
.topbar-social svg { width: 18px; height: 18px; }

/* Brand-colored social icons (topbar, contact card, footer) */
.topbar-social a.ig, .social-btn.ig { background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%); }
.topbar-social a.fb, .social-btn.fb { background: #1877f2; }
.topbar-social a.tt, .social-btn.tt { background: #010101; }

@media (max-width: 720px) {
  .topbar-left .topbar-hide-mobile { display: none; }
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(70, 55, 30, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; padding-right: 24px; border-right: 1px solid var(--sand-200); }
.brand-icon { height: 70px; width: 70px; border-radius: 50%; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.01em; color: var(--navy-900); }
.brand-name span { color: var(--blue-600); }

.footer-brand .brand-icon { height: 46px; width: 46px; }
.footer-brand .brand-name { color: var(--white); font-size: 1.7rem; }
.footer-brand .brand-name span { color: var(--blue-500); }
.footer-brand .brand { border-right: none; padding-right: 0; }

nav.main-nav { display: flex; gap: 8px; }
nav.main-nav a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-800);
  padding: 12px 20px;
  border-radius: 100px;
  transition: background .15s ease, color .15s ease;
}
nav.main-nav a:hover { background: var(--orange-100); color: var(--orange-600); }

.header-actions { display: flex; align-items: center; gap: 10px; padding-left: 24px; border-left: 1px solid var(--sand-200); }
@media (max-width: 900px) {
  .header-actions { padding-left: 0; border-left: none; }
  .brand { border-right: none; padding-right: 0; }
}
.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 700;
  transition: background .15s ease;
}
.header-phone-btn:hover { background: var(--orange-600); }
.header-phone-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.header-phone-btn span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.header-phone-btn small { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; opacity: 0.85; }
.header-phone-btn strong { font-size: 0.92rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--navy-800);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  nav.main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    padding: 90px 28px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-lg);
    z-index: 160;
  }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; }
  .header-phone-btn { display: none; }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 56, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 150;
  }
  .nav-scrim.open { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 148px);
  display: flex;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  width: 100%;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-left: max(20px, calc((100vw - 1180px) / 2 + 20px));
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 940px) {
  .hero-content { padding-left: 20px; padding-right: 20px; order: 2; padding-top: 40px; }
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 12px;
  color: var(--stone-600);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 22px;
  background: var(--white);
  padding: 10px 20px 10px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.hero-badge strong { color: var(--orange-500); font-weight: 800; }
.hero-badge-flag { width: 38px; height: auto; flex-shrink: 0; border-radius: 4px; box-shadow: 0 0 0 1px rgba(10, 31, 56, 0.12); }
.hero-badge-text { display: inline; }
.hero-badge-nowrap { white-space: nowrap; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy-900);
  margin-bottom: 24px;
}
.hero h1 span { color: var(--orange-500); font-weight: 800; }
.hero h1 .tight { color: inherit; font-weight: inherit; letter-spacing: -0.04em; margin-right: 0.18em; display: inline-block; }
.hero p.lead {
  font-size: 1.05rem;
  color: var(--stone-600);
  max-width: 460px;
  margin-bottom: 32px;
}
.hero p.lead strong { color: var(--navy-900); font-weight: 800; }

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 22px; }
.hero-ctas .btn-whatsapp { padding: 14px 26px; font-size: 0.95rem; box-shadow: none; }

.hero-quick-facts { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.hero-quick-facts a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: var(--stone-600); }
.hero-quick-facts a:hover { color: var(--navy-900); }
.hero-quick-facts svg { width: 16px; height: 16px; color: var(--blue-600); flex-shrink: 0; }

.hero-visual {
  position: relative;
  min-height: 340px;
}
@media (max-width: 940px) {
  .hero-visual { order: 1; min-height: 320px; }
}
.hero-visual-frame {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 56px 0 0 56px;
  overflow: hidden;
}
@media (max-width: 940px) {
  .hero-visual-frame { border-radius: 0 0 40px 40px; }
}
.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 25%;
}
.hero-visual-badge {
  position: absolute;
  bottom: 36px;
  left: -18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.hero-visual-badge svg { width: 19px; height: 19px; color: var(--white); flex-shrink: 0; }
@media (max-width: 560px) {
  .hero-visual-badge { font-size: 0.8rem; padding: 10px 16px; bottom: 20px; left: -10px; }
  .hero-visual-badge svg { width: 16px; height: 16px; }
}
/* ---------- Contador ---------- */
.counter-section { padding: 40px 0; background: var(--blue-100); }
.counter-box { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-align: center; }
.counter-number { font-size: clamp(2.4rem, 6vw, 3.2rem); font-weight: 800; color: var(--orange-500); line-height: 1; }
.counter-label { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); }
@media (max-width: 640px) {
  .counter-section { padding: 28px 0; }
  .counter-label { font-size: 0.95rem; }
}

/* ---------- Servicios ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  transition: box-shadow .18s ease, transform .18s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-icon {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.service-icon svg { width: 42px; height: 42px; color: var(--blue-600); stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; color: var(--navy-900); }
.service-card p { font-size: 1.05rem; color: var(--stone-500); }

.services-includes {
  margin-top: 48px;
  background: var(--orange-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.services-includes h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 18px; color: var(--navy-800); }
.includes-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 24px; }
@media (max-width: 760px) { .includes-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .includes-list { grid-template-columns: 1fr; } }
.includes-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 1.05rem; font-weight: 600; color: var(--navy-800); }
.includes-list svg { width: 20px; height: 20px; color: var(--orange-600); flex-shrink: 0; margin-top: 1px; }

/* ---------- Marcas ---------- */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 48px;
}
@media (max-width: 800px) { .brands-strip { gap: 28px 36px; } }
@media (max-width: 560px) { .brands-strip { gap: 22px 28px; } }
.brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  flex: 0 0 320px;
}
@media (max-width: 800px) { .brand-badge { flex-basis: 250px; height: 140px; } }
@media (max-width: 560px) { .brand-badge { flex-basis: 180px; height: 110px; } }
.brand-badge span {
  font-weight: 800;
  color: var(--navy-800);
  font-size: 2.4rem;
  letter-spacing: 0.01em;
}
.brand-logo-img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .2s ease;
}
.brand-badge:hover .brand-logo-img { transform: scale(1.05); }
.brand-logo-img[alt="LG"] { max-height: 150px; }
.brand-logo-img[alt="Electrolux"] { max-height: 145px; }

/* ---------- Diferenciales ---------- */
.why-carousel { position: relative; }
.why-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.why-grid::-webkit-scrollbar { display: none; }
.why-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
@media (max-width: 560px) { .why-card { flex-basis: 260px; } }
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 24px; height: 24px; color: var(--blue-500); }
.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--navy-900); }
.why-card p { font-size: 1.08rem; color: var(--stone-500); }

.why-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy-800);
  z-index: 2;
}
.why-arrow:hover { background: var(--blue-500); color: var(--white); }
.why-arrow svg { width: 22px; height: 22px; }
.why-arrow-prev { left: -23px; }
.why-arrow-next { right: -23px; }
@media (max-width: 900px) {
  .why-arrow { display: none; }
}

/* ---------- Trabajos realizados ---------- */
.work-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
@media (max-width: 860px) { .work-showcase { grid-template-columns: 1fr; } }
.work-media {
  aspect-ratio: 3/4;
  max-height: 520px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-copy .badge-real {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.work-copy .badge-real svg { width: 24px; height: 24px; flex-shrink: 0; }
.work-copy h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; color: var(--navy-900); }
.work-copy p { color: var(--stone-600); margin-bottom: 18px; font-size: 1.08rem; }
.work-copy ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.work-copy ul li { display: flex; gap: 10px; font-size: 1.05rem; color: var(--navy-800); font-weight: 600; }
.work-copy ul svg { width: 19px; height: 19px; color: var(--orange-600); flex-shrink: 0; }

/* ---------- Reseñas ---------- */
.reviews-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-head strong { display: block; font-size: 1rem; color: var(--navy-900); margin-bottom: 2px; }
.review-stars-row { display: flex; align-items: center; gap: 6px; }
.review-stars { color: #FBBC05; font-size: 0.95rem; letter-spacing: 1px; }
.review-google-mini { width: 15px; height: 15px; flex-shrink: 0; }
.review-card p { font-size: 0.98rem; color: var(--stone-600); }

.reviews-eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.google-g-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Cobertura ---------- */
.coverage-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}
.coverage-wrap .coverage-panel {
  max-width: 700px;
  width: 100%;
}
.coverage-map-card {
  width: 100%;
  max-width: 260px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.coverage-map-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--blue-600);
}
.coverage-map-card-head svg { width: 14px; height: 14px; flex-shrink: 0; }
.coverage-map {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.coverage-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.coverage-map-zone {
  position: absolute;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 111, 33, .32) 0%, rgba(232, 111, 33, 0) 72%);
  pointer-events: none;
}
.coverage-map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.coverage-map-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange-500);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 5px rgba(232, 111, 33, .28);
  flex-shrink: 0;
  animation: coverage-pulse 2s infinite;
}
@keyframes coverage-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(232, 111, 33, .28); }
  50% { box-shadow: 0 0 0 9px rgba(232, 111, 33, .12); }
}
.coverage-map-caption {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  text-align: center;
}
@media (max-width: 800px) {
  .coverage-map-card { max-width: 220px; }
}
.coverage-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.coverage-stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--sand-200);
}
.coverage-stat strong { font-size: 2.4rem; font-weight: 800; color: var(--orange-500); line-height: 1; }
.coverage-stat span { font-size: 1.05rem; font-weight: 700; color: var(--navy-800); }

.district-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 520px) { .district-groups { grid-template-columns: 1fr; } }
.district-group h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--blue-600);
  font-weight: 700;
  margin-bottom: 12px;
}
.district-group h4 svg { width: 16px; height: 16px; flex-shrink: 0; }
.district-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.district-chip {
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}

.coverage-cta-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--sand-200);
  font-size: 0.95rem;
  color: var(--stone-600);
  text-align: center;
}

/* ---------- Garantías ---------- */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) { .guarantee-grid { grid-template-columns: 1fr; } }
.guarantee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.guarantee-days {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 6px;
}
.guarantee-days span { font-size: 1.1rem; font-weight: 700; color: var(--stone-500); display: block; margin-top: 4px; }
.guarantee-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--navy-900); }
.guarantee-card p { font-size: 1.05rem; color: var(--stone-500); }

.guarantee-details {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 26px;
}
.guarantee-details h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy-900); margin-bottom: 6px; }
.guarantee-details > p { font-size: 1.05rem; color: var(--stone-600); margin-bottom: 20px; }
.guarantee-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
@media (max-width: 700px) { .guarantee-points { grid-template-columns: 1fr; } }
.guarantee-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--stone-700);
}
.guarantee-points li svg { width: 20px; height: 20px; color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }

.guarantee-resources {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
}
@media (max-width: 700px) { .guarantee-resources { flex-direction: column; text-align: center; } }
.guarantee-resources-text h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.guarantee-resources-text p { font-size: 1.02rem; color: #c7d7e8; margin-bottom: 18px; max-width: 460px; }
.guarantee-resources-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 700px) { .guarantee-resources-actions { justify-content: center; } }
.guarantee-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
}
.guarantee-qr img { width: 128px; height: 128px; display: block; }
.guarantee-qr span { font-size: 0.8rem; font-weight: 700; color: var(--navy-800); text-align: center; max-width: 140px; }

/* ---------- Contacto ---------- */
.contact-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
}
@media (max-width: 900px) { .contact-showcase { grid-template-columns: 1fr; } }

.contact-visual {
  position: relative;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  border-radius: 40px 40px 40px 40px;
  padding: 52px 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-visual-eyebrow {
  display: inline-block;
  color: var(--blue-500);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.contact-visual h3 { font-size: 2rem; font-weight: 800; margin-bottom: 28px; line-height: 1.2; }

.contact-phone-display {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 22px;
}
.contact-phone-display small { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: #9fb6cc; margin-bottom: 4px; }
.contact-phone-display strong { display: block; font-size: clamp(1.4rem, 6vw, 2.1rem); font-weight: 800; color: var(--white); letter-spacing: -0.01em; white-space: nowrap; }

.contact-visual-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.contact-visual-ctas .btn-whatsapp { padding: 14px 26px; font-size: 0.95rem; box-shadow: none; }

.contact-visual-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-visual-list li { display: flex; align-items: center; gap: 16px; }
.contact-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-circle svg { width: 24px; height: 24px; color: var(--blue-500); }
.contact-icon-circle-lg { width: 62px; height: 62px; background: var(--orange-500); }
.contact-icon-circle-lg svg { width: 28px; height: 28px; color: var(--white); }
.contact-visual-list strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.contact-visual-list a, .contact-visual-list span { font-size: 1rem; color: #c7d7e8; }
.contact-visual-list a:hover { color: var(--white); }

.social-row { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; }
.social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: transform .15s ease, opacity .15s ease;
}
.social-btn svg { width: 26px; height: 26px; }
.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.social-btn:hover svg { color: var(--white); }

.contact-form {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-md);
}
.contact-form-badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange-100);
  color: var(--orange-600);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.contact-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; color: var(--navy-900); }
.contact-form p.hint { color: var(--stone-500); font-size: 0.95rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy-800); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--sand-200);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--navy-900);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-900);
  color: #b9c8db;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.95rem; color: #93a6bc; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.92rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span { font-size: 1rem; }
.footer-col a:hover { color: var(--orange-500); }
.footer-social-link { display: flex; align-items: center; gap: 10px; }
.footer-social-link .social-btn { width: 38px; height: 38px; }
.footer-social-link .social-btn svg { width: 19px; height: 19px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.88rem;
  color: #7d92aa;
}
.footer-bottom a:hover { color: var(--white); }

/* ---------- Floating WhatsApp + mobile bar ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 10px 28px rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 28px rgba(37,211,102,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 28px rgba(37,211,102,0.5); }
}

.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 290;
  background: var(--white);
  border-top: 1px solid var(--sand-200);
  box-shadow: 0 -6px 20px rgba(70,55,30,0.12);
  padding: 10px 14px;
  gap: 10px;
}
@media (max-width: 720px) {
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 74px; }
  .wa-float { bottom: 88px; right: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 26px; height: 26px; }
}
.mobile-action-bar .btn { flex: 1; padding: 13px 10px; font-size: 0.92rem; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Legal doc page ---------- */
.legal-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 56px 0 40px;
}
.legal-hero .eyebrow { color: var(--blue-600); }
.legal-hero h1 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; margin-bottom: 10px; color: var(--navy-900); }
.legal-hero p { color: var(--stone-600); max-width: 620px; margin-bottom: 22px; }
.legal-hero-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.legal-tag {
  background: var(--white);
  border: 1px solid var(--sand-200);
  color: var(--navy-800);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.legal-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
  padding: 52px 0 80px;
}
@media (max-width: 900px) { .legal-wrap { grid-template-columns: 1fr; } }

.legal-toc {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 20px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.legal-toc h2 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--stone-500); margin-bottom: 12px; }
.legal-toc ol { counter-reset: toc; display: flex; flex-direction: column; gap: 9px; }
.legal-toc li { font-size: 0.86rem; }
.legal-toc a { color: var(--navy-800); font-weight: 600; }
.legal-toc a:hover { color: var(--orange-600); }
@media (max-width: 900px) {
  .legal-toc { position: static; max-height: none; }
}

.legal-body { max-width: 760px; }
.legal-body section { padding: 0 0 40px; scroll-margin-top: 100px; background: transparent; }
.legal-body section:last-child { padding-bottom: 0; }
.legal-body h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand-200);
}
.legal-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 22px 0 8px;
}
.legal-body p {
  color: var(--stone-700);
  font-size: 0.96rem;
  margin-bottom: 10px;
}
.legal-body ul { margin: 10px 0 14px; display: flex; flex-direction: column; gap: 8px; }
.legal-body ul li {
  font-size: 0.94rem;
  color: var(--stone-700);
  padding-left: 20px;
  position: relative;
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}
.legal-preface {
  background: var(--blue-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 36px;
  font-size: 0.94rem;
  color: var(--navy-800);
}
.legal-footer-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-200);
  font-size: 0.88rem;
  color: var(--stone-500);
  text-align: center;
}

/* ---------- Grid blowout safety net ---------- */
.services-grid > *,
.why-grid > *,
.brands-strip > *,
.guarantee-grid > *,
.district-groups > *,
.footer-grid > *,
.includes-list > *,
.field-row > *,
.coverage-wrap > *,
.contact-showcase > * {
  min-width: 0;
}

/* ---------- Mobile scale pass ---------- */
@media (max-width: 640px) {
  section { padding: 44px 0; }
  .container { padding: 0 18px; }

  /* Header */
  .header-inner { padding-top: 12px; padding-bottom: 12px; gap: 10px; }
  .brand { gap: 10px; }
  .brand-icon { height: 44px; width: 44px; }
  .brand-name { font-size: 1.5rem; }

  .eyebrow { font-size: 0.8rem; margin-bottom: 8px; }
  h2.section-title { font-size: clamp(1.35rem, 6vw, 1.7rem); margin-bottom: 8px; }
  .section-head { margin-bottom: 32px; }
  .section-sub { font-size: 1rem; }

  /* Hero */
  .hero-badge { font-size: 0.82rem; gap: 8px; margin-bottom: 14px; padding: 8px 14px; border-radius: 16px; align-items: flex-start; }
  .hero-badge-flag { width: 20px; margin-top: 2px; }
  .hero-badge-text { line-height: 1.45; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); margin-bottom: 16px; }
  .hero p.lead { font-size: 0.92rem; margin-bottom: 20px; }
  .btn-xl { padding: 16px 28px; font-size: 1rem; }
  .btn-call-text strong { font-size: 1.05rem; }
  .hero-ctas { gap: 12px; margin-bottom: 16px; }
  .hero-quick-facts { font-size: 0.85rem; gap: 8px 18px; }
  .hero-quick-facts a { font-size: 0.85rem; }

  /* Servicios */
  .service-icon { width: 54px; height: 54px; margin-bottom: 12px; }
  .service-icon svg { width: 28px; height: 28px; }
  .service-card { padding: 20px 16px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.92rem; }
  .services-includes { padding: 22px 20px; margin-top: 32px; }
  .services-includes h3 { font-size: 1.05rem; }
  .includes-list li { font-size: 0.92rem; }

  /* Marcas */
  .brand-badge { flex-basis: 92px !important; height: 76px !important; }
  .brand-logo-img { max-height: 44px !important; }
  .brand-logo-img[alt="LG"], .brand-logo-img[alt="Electrolux"] { max-height: 40px !important; }
  .brand-badge span { font-size: 1rem; }
  .brands-strip { gap: 14px !important; }

  /* Por qué elegirnos */
  .why-card { padding: 20px 18px; }
  .why-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .why-icon svg { width: 20px; height: 20px; }
  .why-card h3 { font-size: 0.98rem; }
  .why-card p { font-size: 0.9rem; }

  /* Trabajos */
  .work-copy .badge-real { font-size: 1.1rem; margin-bottom: 12px; }
  .work-copy h3 { font-size: 1.2rem; }

  /* Cobertura */
  .coverage-panel { padding: 24px 20px; }
  .coverage-stat strong { font-size: 1.7rem; }
  .coverage-stat span { font-size: 0.92rem; }
  .district-group h4 { font-size: 0.82rem; }
  .district-chip { font-size: 0.8rem; padding: 5px 10px; }
  .district-groups { gap: 20px; }
  .coverage-map-card { max-width: 180px; padding: 18px 18px 16px; gap: 10px; }
  .coverage-map-card-head { font-size: 0.7rem; }
  .coverage-map-caption { font-size: 0.85rem; }
  .coverage-map-zone { width: 56px; height: 56px; }
  .coverage-map-dot { width: 11px; height: 11px; }

  /* Garantías */
  .guarantee-days { font-size: 1.8rem; }
  .guarantee-days span { font-size: 0.9rem; }
  .guarantee-card { padding: 20px; }
  .guarantee-card h3 { font-size: 1rem; }
  .guarantee-card p { font-size: 0.88rem; }
  .guarantee-details { padding: 22px 20px; }
  .guarantee-points li { font-size: 0.92rem; }
  .guarantee-resources { padding: 24px 20px; }
  .guarantee-resources-text, .guarantee-resources-actions { min-width: 0; width: 100%; }
  .guarantee-resources-text h3 { font-size: 1.1rem; }
  .guarantee-resources-text p { font-size: 0.9rem; }
  .guarantee-resources-actions .btn { white-space: normal; text-align: center; width: 100%; }

  /* Contacto */
  .contact-visual { padding: 32px 22px; }
  .contact-visual h3 { font-size: 1.4rem; margin-bottom: 20px; }
  .contact-phone-display { padding: 14px 16px; gap: 12px; }
  .contact-icon-circle-lg { width: 48px; height: 48px; }
  .contact-icon-circle-lg svg { width: 22px; height: 22px; }
  .contact-visual-list strong { font-size: 0.95rem; }
  .contact-visual-list a, .contact-visual-list span { font-size: 0.9rem; }
  .contact-form { padding: 28px 20px 22px; }
  .contact-form h3 { font-size: 1.1rem; }

  /* Footer */
  .footer-brand .brand-name { font-size: 1.4rem; }
  .footer-col a, .footer-col span { font-size: 0.92rem; }
}
