/* ============ PINTURAS ALPES v3 — «Pigmento» ============ */
@font-face { font-family: 'Archivo'; src: url('/assets/fonts/archivo-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('/assets/fonts/archivo-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('/assets/fonts/archivo-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('/assets/fonts/archivo-900.woff2') format('woff2'); font-weight: 900; font-display: swap; }

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

:root {
  --crema: #faf7f2;
  --tinta: #141414;
  --terracota: #e8542f;
  --azul: #1f5fa8;
  --ocre: #e3a71e;
  --musgo: #2d5940;
  --blanco: #ffffff;
  --gris: #5c5c5c;
  --borde: rgba(20,20,20,0.1);
  --font: 'Archivo', -apple-system, 'Helvetica Neue', sans-serif;
  --max-w: 1160px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  /* El fondo de página muta por sección (scroll-effects.js actualiza --page-bg) */
  --page-bg: var(--crema);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font); color: var(--tinta);
  background: var(--page-bg);
  transition: background-color 0.8s var(--ease);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 24px; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
p { color: var(--gris); font-size: 1.02rem; line-height: 1.75; }

.label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terracota); margin-bottom: 16px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 100px;
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  text-decoration: none; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  cursor: pointer; border: none;
}
.btn--primary { background: var(--terracota); color: var(--blanco); }
.btn--primary:hover { background: #d64825; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,84,47,0.35); }
.btn--dark { background: var(--tinta); color: var(--blanco); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.btn--ghost { background: transparent; color: var(--tinta); border: 2px solid var(--tinta); }
.btn--ghost:hover { background: var(--tinta); color: var(--blanco); }

/* ---- Burger + drawer (estructura idéntica a v2, estética Pigmento) ---- */
.nav__burger {
  position: fixed; top: 24px; left: 24px; z-index: 200;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--borde); border-radius: 100px;
  cursor: pointer; padding: 12px; width: 54px; height: 54px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.12); transition: box-shadow 0.2s;
}
.nav__burger:hover { box-shadow: 0 4px 22px rgba(0,0,0,0.18); }
.nav__burger span { display: block; width: 24px; height: 3px; border-radius: 2px; background: var(--tinta); margin: 0 auto; }
.nav__burger span:nth-child(1) { background: var(--terracota); }
.nav__burger span:nth-child(2) { background: var(--azul); }
.nav__burger span:nth-child(3) { background: var(--ocre); }

.nav__drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 85vw;
  background: var(--tinta); z-index: 300;
  transform: translateX(-100%); transition: transform 0.4s var(--ease);
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer-inner { padding: 32px 28px; display: flex; flex-direction: column; height: 100%; }
.nav__close { align-self: flex-end; background: none; border: none; font-size: 1.3rem; color: rgba(255,255,255,0.5); cursor: pointer; margin-bottom: 40px; padding: 4px; }
.nav__close:hover { color: var(--blanco); }
.nav__drawer-inner ul { list-style: none; flex: 1; }
.drawer-link {
  display: block; padding: 16px 4px; font-size: 1.5rem; font-weight: 900;
  color: var(--blanco); text-decoration: none; letter-spacing: -0.01em;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-link:hover { color: var(--terracota); padding-left: 10px; }
.nav__drawer-socials { padding-top: 32px; display: flex; gap: 20px; }
.nav__drawer-socials a { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; }
.nav__drawer-socials a:hover { color: var(--ocre); }
.nav__overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 250; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.nav__overlay.visible { opacity: 1; pointer-events: all; }

/* ---- WhatsApp flotante ---- */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px;
  background: #25D366; color: var(--blanco); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45); z-index: 150;
  transition: transform 0.25s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.08); }

/* ---- Footer ---- */
.footer { background: var(--tinta); padding: 48px 0 32px; color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer .container { display: flex; flex-direction: column; gap: 16px; text-align: center; }
.footer__zonas { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.footer__zonas a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer__zonas a:hover { color: var(--ocre); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; align-items: center; }
.footer__legal a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer__legal a:hover { color: var(--blanco); }
.footer__socials { display: flex; justify-content: center; gap: 20px; }
.footer__socials a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer__socials a:hover { color: var(--ocre); }

/* ---- Accesibilidad ---- */
a:focus-visible, button:focus-visible { outline: 3px solid var(--azul); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
}

/* ---- Efectos de scroll ---- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ---- Comparador antes/después ---- */
.compare { position: relative; aspect-ratio: 16/9; max-width: 880px; margin: 48px auto 0; border-radius: 16px; overflow: hidden; cursor: ew-resize; touch-action: none; box-shadow: 0 20px 60px rgba(0,0,0,0.18); user-select: none; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: var(--blanco); box-shadow: 0 0 12px rgba(0,0,0,0.4); transform: translateX(-50%); }
.compare__handle::after { content: '◂ ▸'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--terracota); color: var(--blanco); font-size: 13px; font-weight: 700; padding: 9px 12px; border-radius: 100px; white-space: nowrap; letter-spacing: 2px; }
.compare__tag { position: absolute; bottom: 14px; padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blanco); background: rgba(0,0,0,0.55); z-index: 2; pointer-events: none; }
.compare__tag--antes { left: 14px; }
.compare__tag--despues { right: 14px; }

/* ==========================================
   VÍDEOS — CARRUSEL
   ========================================== */
.videos {
  background: var(--tinta);
  overflow: hidden;
  padding-bottom: 64px;
}
.videos .container { padding-bottom: 40px; }
.videos h2 { color: var(--blanco); }
.videos .label { color: var(--ocre); }
.videos__sub { color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 0; }

.videos__carousel-wrap {
  position: relative;
  padding: 0 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

.videos__carousel {
  display: flex;
  gap: 20px;
  overflow: visible;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.videos__carousel.dragging { cursor: grabbing; }

.video-card {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  transition: transform 0.3s var(--ease);
  aspect-ratio: 9/16;
  max-height: 560px;
  min-height: 300px;
  position: relative;
}
.video-card:hover { transform: scale(1.02); }

.video-card__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 12px;
}
.video-card__icon {
  font-size: 2.5rem;
  color: var(--ocre);
  opacity: 0.6;
}
.video-card__net {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ocre);
}
.video-card__desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* Título del vídeo */
.video-card__title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--blanco);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0 0 12px 12px;
}
.video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Embeds nativos */
.video-card iframe,
.video-card blockquote {
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 12px;
}

/* Botones carrusel */
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blanco); font-size: 1.4rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
.carousel__btn:hover { background: var(--ocre); transform: translateY(-50%) scale(1.1); }
.carousel__btn--prev { left: 8px; }
.carousel__btn--next { right: 8px; }
.carousel__btn.hidden { opacity: 0.2; pointer-events: none; }

/* Dots */
.carousel__dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 24px;
}
.carousel__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.3s;
  border: none;
}
.carousel__dot.active {
  background: var(--ocre);
  width: 20px; border-radius: 3px;
}

/* Social pills */
.videos__social-links {
  display: flex; justify-content: center; gap: 16px;
  margin-top: 32px; flex-wrap: wrap;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: all 0.25s var(--ease);
}
.social-pill:hover { border-color: var(--ocre); color: var(--ocre); }
.social-pill svg { flex-shrink: 0; }

/* ==========================================
   HOME — HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--crema);
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(40px); z-index: 0; will-change: transform; }
.hero__blob--1 { top: -10%; left: -8%; width: 420px; height: 420px; background: radial-gradient(circle, var(--terracota), transparent 70%); opacity: 0.35; }
.hero__blob--2 { bottom: -15%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, var(--azul), transparent 70%); opacity: 0.3; }
.hero__blob--3 { top: 30%; right: 15%; width: 280px; height: 280px; background: radial-gradient(circle, var(--ocre), transparent 70%); opacity: 0.3; }
.hero__content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 140px 24px 96px; text-align: center; }
.hero__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracota); margin-bottom: 20px; }
.hero__title { font-size: clamp(2.8rem, 6.5vw, 5.5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 28px; }
.hero__sub { max-width: 620px; margin: 0 auto 36px; font-size: 1.1rem; }
.hero__sub strong { color: var(--tinta); }
.hero__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Pincelada de color en el título ---- */
.paint-sweep {
  background-repeat: no-repeat;
  background-size: 0% 88%;
  background-position: 0 60%;
  animation: sweep 1s var(--ease) 0.3s forwards;
  padding: 0 4px;
}
.paint-sweep--terracota { background-image: linear-gradient(100deg, var(--terracota), var(--terracota)); }
.paint-sweep--azul { background-image: linear-gradient(100deg, var(--azul), var(--azul)); color: var(--blanco); }
@keyframes sweep { to { background-size: 100% 88%; } }

/* ---- Marquesina inferior del hero ---- */
.marquee {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  background: var(--tinta); color: var(--blanco);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.marquee__track {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { to { transform: translateX(-33.33%); } }

/* ==========================================
   SERVICIOS
   ========================================== */
.servicios__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.servicio-card {
  position: relative; overflow: hidden;
  background: var(--blanco); border: 1px solid var(--borde); border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.servicio-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--card-color, var(--terracota));
}
.servicio-card__icon { color: var(--card-color, var(--terracota)); margin-bottom: 20px; display: block; }
.servicio-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.servicio-card p { font-size: 0.92rem; }
.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--card-color, var(--terracota)) 25%, transparent);
}

/* ==========================================
   NOSOTROS + CIFRAS
   ========================================== */
.nosotros { background: var(--azul); color: var(--blanco); }
.nosotros h2, .nosotros h3 { color: var(--blanco); }
.nosotros p { color: rgba(255,255,255,0.75); }
.nosotros p strong { color: var(--blanco); }
.label--blanco { color: var(--blanco); }
.nosotros__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.nosotros__stats { display: flex; flex-direction: column; gap: 36px; padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.25); }
.stat__num { display: block; font-size: 3.4rem; font-weight: 900; color: var(--ocre); line-height: 1; margin-bottom: 6px; }
.stat__label { font-size: 0.85rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; text-transform: uppercase; }

/* ==========================================
   HISTORIA / TIMELINE
   ========================================== */
.historia { background: var(--tinta); color: var(--blanco); }
.historia h2, .historia h3 { color: var(--blanco); }
.historia p { color: rgba(255,255,255,0.65); }
.historia__title { margin-bottom: 64px; }
.timeline { position: relative; padding-left: 40px; }
.timeline__line { position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; height: calc(100% - 12px); overflow: visible; }
.timeline__item { position: relative; padding-bottom: 56px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -40px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--terracota); box-shadow: 0 0 0 4px rgba(232,84,47,0.2); transform: translateX(3px); }
.timeline__year { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terracota); margin-bottom: 10px; }
.timeline__item h3 { margin-bottom: 10px; }

/* ==========================================
   ZONAS
   ========================================== */
.zonas__map svg { display: block; max-width: 720px; width: 100%; margin: 0 auto 48px; }
.zonas__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.zona-card {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 14px;
  padding: 20px 18px;
  text-decoration: none;
  color: var(--tinta);
  transition: all 0.25s var(--ease);
}
.zona-card:hover { border-color: var(--terracota); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.zona-card strong { font-size: 1.1rem; font-weight: 900; color: var(--tinta); }
.zona-card span { font-size: 0.82rem; color: var(--gris); }
.zonas__hubs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.zonas__hubs p { width: 100%; margin-bottom: 4px; font-weight: 700; color: var(--tinta); }
.hub-pill {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 100px;
  border: 1.5px solid var(--borde); color: var(--tinta);
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s var(--ease);
}
.hub-pill:hover, .hub-pill--capital:hover { background: var(--tinta); color: var(--blanco); border-color: var(--tinta); }
.hub-pill--capital { border-color: var(--ocre); }

/* ==========================================
   PRECIOS TEASER
   ========================================== */
.precios-teaser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.precio-chip {
  background: var(--blanco); border-radius: 14px; padding: 24px 22px;
  border: 1px solid var(--borde);
}
.precio-chip strong { display: block; font-size: 1.05rem; margin-bottom: 6px; color: var(--tinta); }
.precio-chip span { color: var(--gris); font-size: 0.95rem; }
.precios-teaser__nota { max-width: 560px; margin-bottom: 28px; }

/* Variante de .precio-chip para la página /precios.html: más tarjetas, columnas flexibles,
   y una nota adicional bajo el rango (no aplica a los 3 chips del teaser de home). */
.precios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 24px; }
.precio-chip__nota { margin-top: 10px; font-size: 0.82rem; color: var(--gris); line-height: 1.5; }

/* ==========================================
   TESTIMONIOS
   ========================================== */
.testimonios__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonio-card {
  background: var(--blanco); border: 1px solid var(--borde); border-radius: 14px;
  padding: 28px 26px;
}
.testimonio-card__cita { font-size: 1rem; font-style: italic; color: var(--tinta); margin-bottom: 16px; }
.testimonio-card__autor { display: flex; flex-direction: column; gap: 2px; font-size: 0.85rem; }
.testimonio-card__autor strong { color: var(--tinta); font-weight: 700; }
.testimonio-card__autor span { color: var(--gris); }

/* ==========================================
   FAQ
   ========================================== */
.faq { background: transparent; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 10px;
  overflow: hidden;
}
.faq__question {
  display: block;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--tinta);
  position: relative;
  padding-right: 48px;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--terracota);
  transition: transform 0.2s;
  font-weight: 300;
}
.faq__item[open] .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__answer {
  padding: 0 22px 18px;
  color: var(--gris);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   CONTACTO
   ========================================== */
.contacto { background: var(--blanco); text-align: center; }
.contacto__sub { max-width: 460px; margin: 0 auto 56px; font-size: 1rem; }
.contacto__grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.contacto-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 36px 40px; border: 1px solid var(--borde); border-radius: 14px;
  text-decoration: none; color: var(--tinta); min-width: 200px;
  transition: all 0.25s var(--ease); background: var(--blanco);
}
.contacto-card:hover { border-color: var(--terracota); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.contacto-card__icon { font-size: 1.8rem; color: var(--terracota); display: flex; align-items: center; }
.contacto-card svg { stroke: var(--terracota); }
.contacto-card__label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gris); }
.contacto-card__value { font-size: 1rem; font-weight: 700; color: var(--tinta); }
.contacto__horario { margin-top: 32px; color: var(--gris); }

/* ==========================================
   LANDING PAGES POR CIUDAD
   ========================================== */
.hero--landing { min-height: 62svh; }
.hero__title--landing { font-size: clamp(2.4rem, 5.5vw, 4rem); }

.breadcrumbs {
  padding: 16px 0;
  background: var(--crema);
  font-size: 0.85rem;
  color: var(--gris);
}
.breadcrumbs a {
  color: var(--gris);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--terracota); }
.breadcrumbs span[aria-current] { color: var(--tinta); font-weight: 500; }

.barrios {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; margin-top: 16px;
}
.barrios li {
  padding: 8px 16px;
  border: 1px solid var(--borde); border-radius: 100px;
  font-size: 0.9rem; color: var(--tinta);
}

.barrios--municipios {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; margin-top: 16px;
}
.barrios--municipios li {
  padding: 8px 16px;
  border: 1px solid var(--borde); border-radius: 100px;
  font-size: 0.85rem; color: var(--tinta);
}

.por-que__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  gap: 12px;
  max-width: 720px;
}
.por-que__list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--gris);
  line-height: 1.55;
}
.por-que__list li::before {
  content: "✓";
  position: absolute;
  left: 16px; top: 14px;
  width: 20px; height: 20px;
  background: var(--terracota);
  color: var(--blanco);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================
   RESPONSIVE — SECCIONES HOME
   ========================================== */
@media (max-width: 1024px) {
  .servicios__grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros__inner { gap: 48px; }
  .precios-teaser__grid, .testimonios__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__content { padding-top: 96px; padding-bottom: 72px; }
  .hero { min-height: auto; }
  .hero__sub { margin: 0 auto 28px; }

  .nosotros__inner { grid-template-columns: 1fr; gap: 40px; }
  .nosotros__stats { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 32px; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .stat { flex: 1; min-width: 90px; }

  .timeline { padding-left: 28px; }
  .timeline__dot { left: -28px; }

  .servicios__grid { grid-template-columns: 1fr; gap: 16px; }

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

  .contacto__grid { flex-direction: column; align-items: center; }
  .contacto-card { width: 100%; max-width: 320px; }
}

/* ==========================================
   CONSEJOS (blog): índice y artículos
   ========================================== */
.articulo { max-width: 720px; margin: 0 auto; }
.articulo h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.articulo p, .articulo li { margin-bottom: 14px; }
