/* =====================================================
   Funeraria Málaga .es — Hoja de estilos premium
   Versión: 2.0 — "Hazel Enhanced"
   Paleta: Navy profundo + Dorado rico + Crema cálida
   ===================================================== */

/* ─── Variables ─── */
:root {
  --dark:          #0d0c1a;
  --dark-2:        #161528;
  --dark-section:  #111020;
  --dark-surface:  #1e1c32;
  --dark-card:     #181628;
  --accent:        #e87722;
  --accent-hover:  #cc6310;
  --accent-light:  #f0923a;
  --accent-pale:   rgba(232,119,34,.12);
  --bg:            #ffffff;
  --bg-alt:        #f6f4f0;
  --white:         #ffffff;
  --text:          #1a1828;
  --text-muted:    #6b6880;
  --text-light:    #9490a8;
  --border:        #e8e4de;
  --border-dark:   rgba(232,119,34,.2);
  --gold-grad:     linear-gradient(135deg, #e87722 0%, #f0923a 50%, #e87722 100%);
  --dark-grad:     linear-gradient(180deg, #0d0c1a 0%, #161528 100%);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', system-ui, sans-serif;
  --transition:    all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:     0 2px 10px rgba(13,12,26,.08);
  --shadow-md:     0 8px 32px rgba(13,12,26,.14);
  --shadow-lg:     0 20px 60px rgba(13,12,26,.22);
  --shadow-gold:   0 8px 30px rgba(232,119,34,.28);
  --radius:        10px;
  --radius-lg:     20px;
  --radius-xl:     32px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
figure { margin: 0; }

/* ─── Scroll progress ─── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 9999;
  transition: width .1s linear;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.18;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); font-weight: 600; }
h1 em, h2 em { font-style: italic; color: var(--accent); }

/* ─── Layout helpers ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-lead {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  text-align: center;
}
.section-divider {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  margin: 0 auto 3rem;
}
.text-center { text-align: center; }

/* ─── Animations (progressive enhancement — visible by default) ─── */
.js-enabled .anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.js-enabled .anim-fade-up.visible { opacity: 1; transform: translateY(0); }

.js-enabled .anim-fade-in {
  opacity: 0;
  transition: opacity .8s ease;
}
.js-enabled .anim-fade-in.visible { opacity: 1; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(232,119,34,.35);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-surface);
  border-color: var(--dark-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-gold:hover {
  background: var(--accent-pale);
  transform: translateY(-2px);
}
.btn-phone-pulse { animation: phonePulse 2.8s infinite; }

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,119,34,.6); }
  50%       { box-shadow: 0 0 0 14px rgba(232,119,34,0); }
}

/* ─── Gold line ornament ─── */
.ornament {
  display: block;
  width: 48px; height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin: 1.2rem auto 0;
}

/* =====================================================
   NAVEGACIÓN
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
}
.nav-logo-sub {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .45rem .85rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(13,12,26,.65);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--dark); background: rgba(0,0,0,.05); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--accent);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  padding: .55rem 1.3rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(232,119,34,.3);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.nav-badge {
  background: rgba(255,255,255,.25);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .15rem .45rem;
  border-radius: 100px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 2rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem 1rem; font-size: 1rem; color: var(--dark); }
  .nav-hamburger { display: flex; }
  .nav-cta .nav-badge { display: none; }
}

/* =====================================================
   HERO — Foto oscura + texto bold centrado
   ===================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}
#heroCanvas { display: none; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,5,10,.45) 0%,
      rgba(5,5,10,.65) 50%,
      rgba(5,5,10,.80) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero-content { width: 100%; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { display: none; }
.hero h1 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--accent-light); font-style: normal; }

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.hero-trust-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.hero-trust-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Hero card flotante */
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(232,119,34,.2);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
}
.hero-card-title span { color: var(--accent); }
.hero-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.hero-service-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  padding: .6rem .75rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.hero-service-item:hover {
  background: rgba(232,119,34,.1);
  border-color: rgba(232,119,34,.3);
  color: var(--white);
}
.hero-service-item svg { color: var(--accent); flex-shrink: 0; }
.hero-phone-big {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gold-grad);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  color: var(--dark);
}
.hero-phone-big-icon {
  width: 44px; height: 44px;
  background: rgba(13,12,26,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-phone-big-text { display: flex; flex-direction: column; }
.hero-phone-big-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.hero-phone-big-num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; line-height: 1; }

@media (max-width: 900px) {
  .hero-inner { padding-top: 6rem; }
  .hero-card { display: none; }
}

/* ─── Hero wave ─── */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--accent);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.25);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--white); }
.stat-label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: .4rem;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

/* =====================================================
   SERVICIOS
   ===================================================== */
.services {
  padding: 7rem 0;
  background: var(--bg);
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,119,34,.25);
}
.service-card-img {
  margin: -2rem -2rem 1.25rem;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-icon {
  width: 54px; height: 54px;
  background: var(--accent-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}
.service-card h3 { color: var(--accent); }
.service-card p { color: var(--text-muted); font-size: .95rem; flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .03em;
  transition: var(--transition);
}
.service-link:hover { gap: .6rem; }
.service-link svg { transition: transform .3s; }
.service-link:hover svg { transform: translateX(3px); }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* =====================================================
   POR QUÉ ELEGIRNOS — Split oscuro
   ===================================================== */
.why {
  background: var(--dark-section);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,119,34,.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-left {}
.why-left .section-label { color: var(--accent); }
.why-left h2 { color: var(--white); }
.why-left p { color: rgba(255,255,255,.65); margin-top: 1.25rem; line-height: 1.8; }
.why-left .btn { margin-top: 2rem; }
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-feature:hover {
  background: rgba(232,119,34,.06);
  border-color: rgba(232,119,34,.2);
}
.why-feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(232,119,34,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.why-feature-body h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-heading);
}
.why-feature-body p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin-top: .25rem;
}
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* =====================================================
   PROCESO
   ===================================================== */
.process {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.process-header { text-align: center; margin-bottom: 4rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--accent) 0%, rgba(232,119,34,.2) 100%);
}
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.process-step-num {
  width: 60px; height: 60px;
  background: var(--dark);
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.1);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.process-step p { font-size: .88rem; color: var(--text-muted); }
@media (max-width: 700px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* =====================================================
   GALERÍA
   ===================================================== */
.gallery {
  padding: 7rem 0;
  background: var(--dark);
  overflow: hidden;
}
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-header h2 { color: var(--white); }
.gallery-header .section-label { color: var(--accent); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-surface);
  position: relative;
}
.gallery-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: unset;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,12,26,.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
/* Placeholder colors for gallery items */
.gallery-ph-1 { background: linear-gradient(135deg, #1e1c32, #2a2845); }
.gallery-ph-2 { background: linear-gradient(135deg, #1a1830, #252340); }
.gallery-ph-3 { background: linear-gradient(135deg, #161428, #201e38); }
.gallery-ph-4 { background: linear-gradient(135deg, #12101e, #1c1a30); }
.gallery-ph-5 { background: linear-gradient(135deg, #1e1c32, #181628); }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; aspect-ratio: 4/3; }
}

/* =====================================================
   TESTIMONIOS
   ===================================================== */
.testimonials {
  padding: 7rem 0;
  background: var(--bg);
}
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,119,34,.3);
}
.testimonial-stars {
  display: flex;
  gap: .2rem;
  color: var(--accent);
}
.testimonial-text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-date { font-size: .78rem; color: var(--text-light); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* =====================================================
   FAQ
   ===================================================== */
.faq-section {
  padding: 7rem 0;
  background: var(--dark-section);
}
.faq-section .section-label { color: var(--accent); }
.faq-section h2 { color: var(--white); }
.faq-section .section-lead { color: rgba(255,255,255,.5); }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(232,119,34,.35); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.03);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  transition: background .3s;
}
.faq-question:hover { background: rgba(255,255,255,.05); }
.faq-item.open .faq-question { background: rgba(232,119,34,.07); color: var(--accent-light); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .35s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .3s ease;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: var(--gold-grad);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-band p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-band-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================================================
   MAPA + CONTACTO
   ===================================================== */
.contact-section {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--accent-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-item-body {}
.contact-item-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-item-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-item-value a:hover { color: var(--accent); }
.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
}

/* =====================================================
   FORMULARIO
   ===================================================== */
.contact-form {
  padding: 7rem 0;
  background: var(--dark);
}
.contact-form h2 { color: var(--white); }
.contact-form .section-label { color: var(--accent); }
.form-header { text-align: center; margin-bottom: 3rem; }
.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .3s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(232,119,34,.06);
}
.form-select option { background: var(--dark-2); color: var(--white); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit { align-self: flex-start; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--dark-section);
  border-top: 1px solid rgba(232,119,34,.1);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand {}
.footer-logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-sub {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: .15rem;
}
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent-light);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: color .3s;
}
.footer-phone-link:hover { color: var(--white); }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: color .3s;
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255,255,255,.3);
  font-size: .82rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  color: rgba(255,255,255,.3);
  font-size: .82rem;
  transition: color .3s;
}
.footer-legal a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   STICKY PHONE BAR (móvil)
   ===================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: .75rem 1rem;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.1);
  align-items: center;
  gap: 1rem;
}
.sticky-cta-phone {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  justify-content: center;
}
.sticky-cta-chat {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}

/* =====================================================
   PÁGINAS INTERNAS — Servicios, Blog, etc.
   ===================================================== */

/* Hero interno */
.page-hero {
  padding: 9rem 0 5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 60%, rgba(232,119,34,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(232,119,34,.05) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb strong { color: var(--accent-light); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-lead {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.75;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.page-hero-meta-item svg { color: var(--accent); }
.page-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}

/* Layout servicio */
.service-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.service-content h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  color: var(--dark);
}
.service-content h2:first-child { margin-top: 0; }
.service-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1rem 0 1.75rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  border-left: 3px solid var(--accent);
}
.service-features li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .55rem;
}

/* Sidebar */
.service-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(232,119,34,.15);
}
.sidebar-card h3 {
  color: var(--white);
  font-size: 1.15rem;
}
.sidebar-card p { color: rgba(255,255,255,.55); font-size: .9rem; }
.sidebar-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
  text-align: center;
  margin: .25rem 0;
  letter-spacing: .02em;
  transition: color .3s;
}
.sidebar-phone:hover { color: var(--white); }
.sidebar-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
}
.sidebar-services-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.sidebar-service-pills {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.sidebar-service-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .9rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: var(--transition);
}
.sidebar-service-pill:hover {
  background: rgba(232,119,34,.1);
  border-color: rgba(232,119,34,.25);
  color: var(--accent-light);
}
.sidebar-service-pill svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 860px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* ─── Service nav pills ─── */
.service-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.service-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1.1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.service-pill:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
  color: var(--accent);
}

/* =====================================================
   BLOG
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 5rem 0;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,119,34,.25);
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.blog-card-cat {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card h3 { font-size: 1.1rem; line-height: 1.35; }
.blog-card h3 a { color: var(--dark); transition: color .3s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: .88rem; color: var(--text-muted); flex: 1; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--text-light);
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

/* Blog article */
.article-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}
.article-body h2 { font-size: 1.55rem; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; margin: 1.75rem 0 .75rem; }
.article-body p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.article-body li { margin-bottom: .5rem; line-height: 1.75; }
.article-body strong { color: var(--dark); }
.article-sidebar { position: sticky; top: 96px; }
@media (max-width: 860px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* =====================================================
   ZONA (páginas localidades)
   ===================================================== */
.zona-section {
  padding: 5rem 0;
  background: var(--bg);
}
.zona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.zona-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.zona-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,119,34,.3);
}
.zona-card h3 { margin-bottom: .5rem; }
.zona-card p { font-size: .88rem; color: var(--text-muted); }
@media (max-width: 700px) { .zona-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .zona-grid { grid-template-columns: 1fr; } }

/* =====================================================
   PRECIOS
   ===================================================== */
.pricing {
  padding: 7rem 0;
  background: var(--bg);
}
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
}
.price-card.featured {
  background: var(--dark);
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}
.price-card:hover { box-shadow: var(--shadow-lg); }
.price-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold-grad);
  padding: .3rem .8rem;
  border-radius: 100px;
  align-self: flex-start;
}
.price-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}
.price-card.featured .price-name { color: var(--white); }
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.price-amount span { font-size: 1rem; color: var(--text-muted); }
.price-card.featured .price-amount span { color: rgba(255,255,255,.5); }
.price-features {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.price-card.featured .price-features li { color: rgba(255,255,255,.65); }
.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}
.price-note {
  font-size: .8rem;
  color: var(--text-light);
  text-align: center;
}
.price-card.featured .price-note { color: rgba(255,255,255,.35); }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }

/* =====================================================
   SOBRE NOSOTROS
   ===================================================== */
.about-section {
  padding: 7rem 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 3px solid var(--accent);
  top: 16px; left: 16px;
  pointer-events: none;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-body .section-label { margin-bottom: 1rem; }
.about-body h2 { margin-bottom: 1.25rem; }
.about-body p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-value {
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}
.about-value h4 { font-size: .95rem; margin-bottom: .3rem; }
.about-value p { font-size: .85rem; color: var(--text-muted); margin: 0; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/9; }
  .about-img::after { display: none; }
}

/* =====================================================
   UTILES
   ===================================================== */
.section-header { text-align: center; margin-bottom: 4rem; }

/* ─── "Quiénes somos" home section ─── */
.quienes {
  padding: 7rem 0;
  background: var(--bg);
}
.quienes-body h2 em { color: var(--accent); font-style: normal; }
.quienes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.quienes-img-wrap {
  position: relative;
}
.quienes-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
}
.quienes-img img { width: 100%; height: 100%; object-fit: cover; }
.quienes-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  min-width: 130px;
  box-shadow: var(--shadow-gold);
}
.quienes-badge-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.quienes-badge-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .3rem;
}
.quienes-body h2 { margin-bottom: 1.25rem; }
.quienes-body p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.quienes-body .btn { margin-top: .75rem; }
@media (max-width: 860px) {
  .quienes-inner { grid-template-columns: 1fr; gap: 3rem; }
  .quienes-badge { bottom: 16px; right: 16px; }
}

/* Zona / Localidades home section */
.zonas-section {
  padding: 7rem 0;
  background: var(--dark-section);
}
.zonas-section h2 { color: var(--white); }
.zonas-section .section-label { color: var(--accent); }
.zonas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.zona-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.zona-pill:hover {
  background: rgba(232,119,34,.12);
  border-color: rgba(232,119,34,.35);
  color: var(--accent-light);
}
