/* ============================================================
   TRANSPORTES KMP — styles.css
   Industrial moderno · dark + naranja alta visibilidad
   ============================================================ */

:root {
  --bg:        #0d0f12;
  --bg-2:      #12151a;
  --bg-3:      #171b21;
  --panel:     #14171c;
  --ink:       #edeff2;
  --ink-soft:  #c6cbd2;
  --ink-mute:  #8b929c;
  --accent:    #ff6b1a;
  --accent-2:  #e2530a;
  --warn:      #ffd166;
  --line:      rgba(237, 239, 242, 0.1);
  --radius:    14px;
  --nav-h:     72px;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-accent: 0 18px 50px -18px rgba(255, 107, 26, 0.45);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .footer-brand, .nav-brand {
  font-family: "Archivo", "Inter", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.8rem, 4.2vw, 3rem); max-width: 22ch; text-wrap: balance; }
h2 em, h1 em { font-style: italic; color: var(--accent); }
h3 { font-size: 1.25rem; font-weight: 700; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #0d0f12; }

/* ---------- Reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.1rem;
}
.kicker-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse { 50% { opacity: 0.45; } }
.kicker-num {
  color: var(--accent);
  font-family: "Archivo", sans-serif;
  font-weight: 900;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0d0f12;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px -16px rgba(255, 107, 26, 0.6); }
.btn-ghost {
  border-color: var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(13, 15, 18, 0.86);
  border-bottom-color: var(--line);
}
@supports (backdrop-filter: blur(14px)) {
  .nav.is-solid { background: rgba(13, 15, 18, 0.7); backdrop-filter: blur(14px); }
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.15rem; letter-spacing: 0.01em;
}
.nav-brand strong { color: var(--accent); }
.nav-logo { width: 38px; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav-links a:not(.nav-cta) {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 0.3rem 0;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 0.55rem 1.2rem; border-radius: 999px;
  background: var(--accent); color: #0d0f12;
  font-weight: 700; font-size: 0.9rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.nav-burger { display: none; }

@media (max-width: 820px) {
  .nav-burger {
    display: grid; gap: 5px; background: none; border: 0; padding: 10px; z-index: 102;
  }
  .nav-burger span {
    width: 24px; height: 2px; background: var(--ink);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
  }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: fixed; inset: 0; z-index: 101;
    flex-direction: column; justify-content: center; gap: 2rem;
    background: rgba(13, 15, 18, 0.97);
    font-size: 1.2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1rem, 5vw, 4rem) 4rem;
  overflow: clip;
}
.hero-glow {
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 90%;
  background:
    radial-gradient(42% 40% at 72% 38%, rgba(255, 107, 26, 0.16), transparent 70%),
    radial-gradient(38% 42% at 18% 18%, rgba(255, 209, 102, 0.07), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: glowDrift 14s ease-in-out infinite alternate;
}
@keyframes glowDrift { to { transform: translate3d(3%, 4%, 0) scale(1.06); } }
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(75% 65% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 40%, #000 30%, transparent 100%);
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
  width: 100%;
}
.hero-title {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  font-weight: 900;
  text-wrap: balance;
  margin-bottom: 1.3rem;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-stats {
  list-style: none;
  display: flex;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: grid; gap: 0.15rem; }
.hero-stats strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--accent);
}
.stat-unit { font-size: 0.6em; }
.hero-stats span:not(.stat-unit) { font-size: 0.82rem; color: var(--ink-mute); }

.hero-art { position: relative; }
.truck-svg { width: 100%; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5)); }
.truck-body { animation: truckBob 3.4s ease-in-out infinite; }
@keyframes truckBob { 50% { transform: translateY(-5px); } }
.wheel { animation: wheelSpin 5s linear infinite; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }
.speed-lines path { animation: speed 1.6s ease-in-out infinite; }
.speed-lines path:nth-child(2) { animation-delay: 0.25s; }
.speed-lines path:nth-child(3) { animation-delay: 0.5s; }
@keyframes speed {
  0%, 100% { opacity: 0.15; transform: translateX(0); }
  50% { opacity: 0.8; transform: translateX(-10px); }
}
.route-line { animation: routeDash 1.2s linear infinite; }
@keyframes routeDash { to { stroke-dashoffset: -24; } }
.hero-art-tag {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--line);
  border-radius: 999px;
  display: grid; justify-content: center; padding-top: 8px;
}
.hero-scroll span {
  width: 4px; height: 8px; border-radius: 4px;
  background: var(--accent);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 50% { transform: translateY(10px); opacity: 0.3; } }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 480px; margin-inline: auto; }
  .hero { padding-bottom: 5.5rem; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: clip;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.marquee-track i { color: var(--accent); font-style: normal; font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 4rem);
  max-width: 1240px;
  margin-inline: auto;
}
.section-alt {
  max-width: none;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.section-alt > * { max-width: 1240px; margin-inline: auto; }
.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }

/* ---------- Cards servicios ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.2rem;
}
.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 26, 0.55);
  box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 107, 26, 0.18);
}
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 107, 26, 0.1);
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.card-icon svg { width: 28px; height: 28px; }
.card p { font-size: 0.94rem; color: var(--ink-soft); flex: 1; }
.card-link {
  font-weight: 600; font-size: 0.92rem; color: var(--accent);
  transition: gap 0.25s; display: inline-flex; gap: 0.35rem;
}
.card-link:hover { gap: 0.7rem; }

/* ---------- Ventajas ---------- */
.feature-rows { display: grid; gap: 0; }
.feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: 0; }
.feature-num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  line-height: 1;
}
.feature h3 { margin-bottom: 0.35rem; }
.feature p { color: var(--ink-soft); max-width: 64ch; }

/* ---------- B2B ---------- */
.b2b-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.b2b-text { color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 52ch; }
.b2b-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.b2b-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.b2b-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.46em;
  width: 10px; height: 10px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.b2b-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: grid;
  gap: 1.3rem;
}
.b2b-row { display: grid; gap: 0.45rem; font-size: 0.88rem; color: var(--ink-soft); }
.b2b-row i {
  display: block; height: 10px; border-radius: 99px;
  background: var(--bg-3);
  position: relative; overflow: hidden;
}
.b2b-row i::after {
  content: ""; position: absolute; inset: 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease-out);
}
.b2b-panel.is-visible .b2b-row i::after { transform: scaleX(1); }
.b2b-row:nth-child(2) i::after { transition-delay: 0.15s; }
.b2b-row:nth-child(3) i::after { transition-delay: 0.3s; }
.b2b-row:nth-child(4) i::after { transition-delay: 0.45s; }
.b2b-panel-note { font-size: 0.78rem; color: var(--ink-mute); }
@media (max-width: 920px) { .b2b-wrap { grid-template-columns: 1fr; } }

/* ============================================================
   COTIZACIÓN
   ============================================================ */
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.4rem;
  align-items: start;
}
@media (max-width: 920px) { .quote-wrap { grid-template-columns: 1fr; } }

.quote-express, .quote-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.quote-express { border-color: rgba(255, 107, 26, 0.4); position: relative; }
.quote-express::before {
  content: "MÁS RÁPIDO";
  position: absolute; top: -11px; left: 1.6rem;
  background: var(--accent); color: #0d0f12;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em;
  padding: 0.25rem 0.7rem; border-radius: 99px;
}
.quote-express h3, .quote-form h3 { margin-bottom: 0.4rem; }
.flash { color: var(--warn); }
.quote-hint { font-size: 0.88rem; color: var(--ink-mute); margin-bottom: 1.4rem; }

.express-form fieldset { border: 0; margin-bottom: 1.2rem; }
.express-form legend {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-3);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.22s var(--ease-out);
}
.chip:hover { border-color: var(--accent); color: var(--ink); }
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0f12;
  font-weight: 700;
}
.express-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.6rem;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
}

/* inputs */
input, select, textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.18);
}
input::placeholder, textarea::placeholder { color: var(--ink-mute); }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-mute) 50%), linear-gradient(135deg, var(--ink-mute) 50%, transparent 50%); background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
textarea { resize: vertical; }

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--ink-mute); margin-top: 0.8rem; text-align: center; }

.quote-alt {
  margin-top: 1.6rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.quote-alt a { color: var(--accent); }
.quote-alt a:hover { text-decoration: underline; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 0.8rem; max-width: 860px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.4rem;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(255, 107, 26, 0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2rem 1.15rem 0;
  font-weight: 600;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem; font-weight: 700;
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 0 1.3rem; color: var(--ink-soft); font-size: 0.95rem; max-width: 70ch; }

/* ============================================================
   CTA FINAL + FOOTER
   ============================================================ */
.cta-final {
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(60% 90% at 50% 110%, rgba(255, 107, 26, 0.14), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-final h2 { margin-inline: auto; margin-bottom: 1.8rem; }
.cta-final .hero-actions { justify-content: center; }

.footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem clamp(1rem, 5vw, 4rem) 2rem;
  background: var(--bg);
}
.footer-grid {
  max-width: 1240px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-size: 1.3rem; margin-bottom: 0.6rem; }
.footer-brand strong { color: var(--accent); }
.footer-tag { font-size: 0.9rem; color: var(--ink-mute); }
.footer-h {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 0.9rem;
}
.footer-grid a {
  display: block;
  font-size: 0.93rem;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--accent); }
.footer-note { font-size: 0.85rem; color: var(--ink-mute); margin-top: 0.5rem; }
.footer-legal {
  max-width: 1240px;
  margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-mute);
}

/* ============================================================
   PÁGINAS DE COMUNA + HUB DE COBERTURA
   ============================================================ */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-bottom: 1.2rem;
}
.crumbs a { color: var(--ink-soft); transition: color 0.2s; }
.crumbs a:hover { color: var(--accent); }
.crumbs strong { color: var(--accent); font-weight: 600; }

.hero-comuna { min-height: auto; padding-bottom: 3rem; }
.hero-inner-single { grid-template-columns: 1fr; max-width: 900px; }
.hero-title-comuna { font-size: clamp(2rem, 5vw, 3.4rem); }

.vecinas-wrap { text-align: center; }
.vecinas-title { margin: 0 auto 1.6rem; font-size: clamp(1.3rem, 3vw, 1.8rem); }
.vecinas-row { justify-content: center; }
.vecinas-row .chip:hover { background: var(--accent); color: #0d0f12; border-color: var(--accent); }
.vecinas-all { margin-top: 1.4rem; font-size: 0.92rem; }
.vecinas-all a { color: var(--accent); font-weight: 600; }
.vecinas-all a:hover { text-decoration: underline; }

.hub-region-title {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: var(--ink);
  margin: 3rem 0 1.6rem;
  padding-left: 1rem;
  border-left: 5px solid var(--accent);
  max-width: none;
}
.hub-region-title:first-child { margin-top: 0; }
.hub-group { margin-bottom: 2.4rem; }
.hub-group-title {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  max-width: none;
}
.hub-group .chip:hover { background: var(--accent); color: #0d0f12; border-color: var(--accent); }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease-out);
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); }
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-pulse { animation: none; }
  .hero-glow { animation: none; }
}
