/* =====================================================================
   Enertysur Fotovoltaica — Solar Design System
   Colores: ámbar solar + azul marino profundo + verde eco
   ===================================================================== */

/* ── Variables ──────────────────────────────────────────────────────── */
:root {
  /* Solar palette */
  --solar:       #F59E0B;
  --solar-d:     #D97706;
  --solar-ll:    #FEF3C7;
  --solar-glow:  rgba(245,158,11,.18);

  /* Dark/Navy */
  --ink:         #0D1B2A;
  --ink-2:       #1B2A3B;
  --ink-3:       #2C3E50;
  --ink-4:       #3D5166;

  /* Eco green */
  --eco:         #059669;
  --eco-d:       #047857;
  --eco-lt:      #D1FAE5;

  /* Neutrals */
  --white:       #FFFFFF;
  --warm:        #FFFBEB;
  --slate-50:    #F8FAFC;
  --slate-100:   #F1F5F9;
  --slate-200:   #E2E8F0;
  --slate-400:   #94A3B8;
  --slate-500:   #64748B;
  --slate-600:   #475569;
  --slate-800:   #1E293B;

  /* Typography */
  --font-base:   'Poppins', sans-serif;
  --text-dark:   #0D1B2A;
  --text-body:   #475569;

  /* Spacing & shape */
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 12px rgba(13,27,42,.07);
  --shadow:      0 6px 32px rgba(13,27,42,.11);
  --shadow-lg:   0 16px 64px rgba(13,27,42,.16);
  --trans:       .22s cubic-bezier(.4,0,.2,1);
  --max-w:       1200px;
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html  { scroll-behavior: smooth; font-size: 16px }
body  { font-family: var(--font-base); line-height: 1.7; color: var(--text-body); background: var(--white) }
img   { max-width: 100%; height: auto; display: block }
a     { color: inherit; text-decoration: none }
ul    { list-style: none }
p     { margin-bottom: .85em }
p:last-child { margin-bottom: 0 }
h1,h2,h3,h4,h5 { font-weight: 700; color: var(--text-dark); line-height: 1.25 }

/* ── Layout ─────────────────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px }
.section     { padding: 96px 0 }
.section--alt { background: var(--slate-50) }
.section--dark { background: var(--ink); color: var(--white) }
.section--solar { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%) }

/* ── Section head ───────────────────────────────────────────────────── */
.section__head { text-align: center; max-width: 680px; margin: 0 auto 60px }
.section__head h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__head p { font-size: 1.05rem; color: var(--text-body) }
.section--dark .section__head h2,
.section--solar .section__head h2 { color: var(--white) }
.section--dark .section__head p,
.section--solar .section__head p  { color: rgba(255,255,255,.65) }

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--solar-ll);
  color: var(--solar-d);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section--dark .section__tag,
.section--solar .section__tag {
  background: rgba(245,158,11,.15);
  color: var(--solar);
}

.hl-solar  { color: var(--solar) }
.hl-eco    { color: var(--eco) }
.hl-white  { color: var(--white) }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .93rem;
  transition: var(--trans);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--solar   { background: var(--solar); color: var(--white); border-color: var(--solar) }
.btn--solar:hover { background: var(--solar-d); border-color: var(--solar-d); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,.4) }
.btn--eco     { background: var(--eco); color: var(--white); border-color: var(--eco) }
.btn--eco:hover { background: var(--eco-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(5,150,105,.35) }
.btn--outline { border-color: var(--solar); color: var(--solar); background: transparent }
.btn--outline:hover { background: var(--solar); color: var(--ink) }
.btn--ghost   { border-color: rgba(255,255,255,.3); color: var(--white); background: transparent }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1) }
.btn--dark    { background: var(--white); color: var(--ink); border-color: var(--white) }
.btn--dark:hover { background: var(--slate-100); transform: translateY(-2px) }
.btn--wa      { background: #25D366; color: var(--white); border-color: #25D366 }
.btn--wa:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45) }
.btn--sm      { padding: 9px 18px; font-size: .83rem }

/* ── WA Icon helper ─────────────────────────────────────────────────── */
.wa-icon { flex-shrink: 0 }

/* ── Top bar ────────────────────────────────────────────────────────── */
.topbar { background: var(--ink); padding: 8px 0; font-size: .78rem }
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.65);
}
.topbar__left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap }
.topbar__item { display: flex; align-items: center; gap: 6px }
.topbar__item svg { color: var(--solar) }
.topbar__item--link { color: inherit; text-decoration: none; transition: color .2s }
.topbar__item--link:hover { color: var(--solar) }
.topbar__btn {
  background: var(--solar);
  color: var(--ink);
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: .76rem;
  transition: var(--trans);
  white-space: nowrap;
}
.topbar__btn:hover { background: var(--solar-d) }
.topbar__btn--wa {
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
}
.topbar__btn--wa:hover { background: #1ebe5d; color: var(--white) }
/* Language switcher */
.topbar__langs { display: flex; align-items: center; gap: 0 }
.topbar__lang {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 2px 5px;
  border-radius: 3px;
  transition: color .15s, background .15s;
}
.topbar__lang:hover { color: var(--white); background: rgba(255,255,255,.1) }
.topbar__lang--active { color: var(--solar); font-weight: 700 }
.topbar__lang + .topbar__lang::before {
  content: '|';
  margin: 0 1px;
  color: rgba(255,255,255,.2);
  pointer-events: none;
}

/* ── Sticky wrapper (topbar + site-header) ───────────────────────────── */
.site-top {
  position: sticky;
  top: 0;
  z-index: 200;
}

/* ── Site header ────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow) }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}
.header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0 }
.header__logo img { height: 69px; width: auto }
.logo-text { display: flex; flex-direction: column; line-height: 1.2 }
.logo-text strong { font-size: 1.3rem; font-weight: 800; color: var(--ink) }
.logo-text strong span { color: var(--solar) }
.logo-text em { font-style: normal; font-size: .65rem; color: var(--slate-500); font-weight: 500; letter-spacing: .04em; text-transform: uppercase }

/* ── Main nav ───────────────────────────────────────────────────────── */
.nav { display: flex; align-items: center }
.nav__list { display: flex; align-items: center; gap: 4px }
.nav__list > li { position: relative }
.nav__list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-3);
  border-radius: var(--radius);
  transition: var(--trans);
}
.nav__list > li > a:hover,
.nav__list > li > a.active { color: var(--solar-d); background: var(--solar-ll) }
.nav__list > li > a .arrow { font-size: .75rem; transition: transform var(--trans) }
.nav__list > li.open > a .arrow,
.nav__list > li:hover > a .arrow { transform: rotate(180deg) }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--trans);
  z-index: 300;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--trans);
}
.dropdown li a:hover { background: var(--solar-ll); color: var(--solar-d) }
.dropdown li a .dd-icon {
  width: 28px; height: 28px;
  background: var(--solar-ll);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--solar-d);
}
.nav__cta {
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Hamburger ──────────────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-toggle.open span:nth-child(2) { opacity: 0 }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, #0A2540 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,158,11,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(5,150,105,.08) 0%, transparent 60%);
  pointer-events: none;
}
/* Video hero */
.hero--video { background: var(--ink) }
.hero--video::before { display: none }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.75) 0%, rgba(13,27,42,.55) 60%, rgba(13,27,42,.35) 100%);
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 100px 0 80px;
}
.hero__grid--centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 0 100px;
}
.hero__grid--centered .hero__cta   { justify-content: center }
.hero__grid--centered .hero__trust { justify-content: center }
.hero__grid--centered .hero__desc  { margin-left: auto; margin-right: auto }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.25);
  color: var(--solar);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--solar);
  border-radius: 50%;
  animation: pulse-anim 1.6s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%,100% { opacity:1; transform:scale(1) }
  50%      { opacity:.5; transform:scale(1.4) }
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero__desc { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px }
.hero__cta  { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.65);
  font-size: .83rem;
  font-weight: 500;
}
.trust-check {
  width: 18px; height: 18px;
  background: var(--eco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .65rem;
  color: var(--white);
}

/* Hero visual */
.hero__visual { position: relative }
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(245,158,11,.15);
}
.hero__img-wrap img { width: 100%; height: 420px; object-fit: cover }
.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--solar);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero__badge strong { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1 }
.hero__badge span   { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em }
.hero__cert {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cert-icon {
  width: 36px; height: 36px;
  background: var(--eco-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--eco);
}
.cert-text strong { display: block; font-size: .82rem; color: var(--text-dark); font-weight: 700 }
.cert-text span   { font-size: .72rem; color: var(--slate-500) }

/* ── Stats bar ──────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--solar);
  padding: 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(13,27,42,.1);
}
.stat-item:last-child { border-right: none }
.stat-item__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item__label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(13,27,42,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Services grid ──────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services-grid--2col { grid-template-columns: repeat(2, 1fr) }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--solar);
  transform: scaleX(0);
  transition: var(--trans);
}
.service-card:hover { border-color: var(--solar); box-shadow: var(--shadow); transform: translateY(-4px) }
.service-card:hover::after { transform: scaleX(1) }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--solar-ll);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--solar-d);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; color: var(--text-dark) }
.service-card p  { font-size: .92rem; line-height: 1.65; color: var(--text-body); margin-bottom: 20px }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--solar-d);
  font-weight: 700;
  font-size: .88rem;
  transition: var(--trans);
}
.service-card__link:hover { gap: 10px }

/* ── Why us ─────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}
.why__visual { position: relative; border-radius: var(--radius-xl); overflow: hidden }
.why__visual img { width: 100%; height: auto; object-fit: cover }
.why__chip {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(13,27,42,.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.why__chip-icon {
  width: 40px; height: 40px;
  background: var(--solar);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.why__chip strong { display: block; font-size: .9rem; font-weight: 700 }
.why__chip span   { font-size: .78rem; color: rgba(255,255,255,.65) }

.why__list { display: flex; flex-direction: column; gap: 24px }
.why__item { display: flex; gap: 16px; align-items: flex-start }
.why__item-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: var(--solar-ll);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--solar-d);
}
.why__item-text h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px }
.why__item-text p  { font-size: .9rem; line-height: 1.6; margin: 0 }

/* ── Process steps ──────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--solar), var(--eco));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1 }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--solar);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--solar-ll);
}
.process-step h4 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px }
.process-step p  { font-size: .85rem; line-height: 1.6; color: var(--text-body) }

/* ── Testimonials / Google reviews carousel ─────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.google-badge {
  display: flex; align-items: center; gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  width: fit-content;
  margin: 0 auto 40px;
}
.google-badge__info { display: flex; flex-direction: column; gap: 3px }
.google-badge__score { font-size: 2rem; font-weight: 800; color: var(--text-dark); line-height: 1 }
.google-badge__stars { color: var(--solar); font-size: 1rem; letter-spacing: 2px }
.google-badge__count { font-size: .78rem; color: var(--slate-500) }
.reviews-wrap {
  display: flex; align-items: center; gap: 12px;
}
.reviews-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
  flex: 1;
}
.reviews-track::-webkit-scrollbar { display: none }
.reviews-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.reviews-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.reviews-card__header .stars { margin-bottom: 0 }
.reviews-nav {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1.5px solid var(--slate-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--text-dark);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.reviews-nav:hover { border-color: var(--solar); color: var(--solar) }
.reviews-nav:disabled { opacity: .3; cursor: default; pointer-events: none }
.reviews-cta { text-align: center; margin-top: 36px }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--trans);
}
.testimonial-card:hover { border-color: var(--solar); box-shadow: var(--shadow) }
.stars { color: var(--solar); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px }
.testimonial-card p { font-size: .93rem; line-height: 1.7; color: var(--text-body); margin-bottom: 20px; font-style: italic }
.reviewer { display: flex; align-items: center; gap: 12px }
.reviewer__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--solar-ll);
  display: flex; align-items: center; justify-content: center;
  color: var(--solar-d);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .88rem; color: var(--text-dark); font-weight: 700 }
.reviewer span   { font-size: .78rem; color: var(--slate-500) }

/* ── Service detail (inner pages) ──────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: 80px 0;
}
.service-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.service-hero__content .hero__eyebrow { margin-bottom: 20px }
.service-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.service-hero__desc { color: rgba(255,255,255,.7); margin-bottom: 32px }
.service-hero__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-hero__visual img { width: 100%; height: 380px; object-fit: cover }

/* Benefits list */
.benefits-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: var(--trans);
}
.benefit-item:hover { border-color: var(--solar); background: var(--solar-ll) }
.benefit-icon {
  width: 42px; height: 42px;
  background: var(--solar-ll);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--solar-d);
  flex-shrink: 0;
}
.benefit-item:hover .benefit-icon { background: var(--solar); color: var(--ink) }
.benefit-item h4 { font-size: .92rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px }
.benefit-item p  { font-size: .83rem; line-height: 1.55; margin: 0; color: var(--text-body) }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto }
.faq-item {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--trans);
}
.faq-item.open { border-color: var(--solar) }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-base);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--trans);
}
.faq-question:hover { color: var(--solar-d) }
.faq-question .faq-icon {
  width: 24px; height: 24px;
  background: var(--solar-ll);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--solar-d);
  flex-shrink: 0;
  font-size: .9rem;
  transition: var(--trans);
}
.faq-item.open .faq-icon { background: var(--solar); color: var(--ink); transform: rotate(45deg) }
.faq-answer { display: none; padding: 0 24px 20px; font-size: .92rem; color: var(--text-body); line-height: 1.7 }
.faq-item.open .faq-answer { display: block }

/* ── Province / municipio pages ─────────────────────────────────────── */
.muni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.muni-grid a {
  display: block;
  padding: 10px 14px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--trans);
  text-align: center;
}
.muni-grid a:hover {
  background: var(--solar-ll);
  border-color: var(--solar);
  color: var(--solar-d);
  transform: translateY(-2px);
}

/* ── CTA banner ─────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, #103050 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,158,11,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--white); margin-bottom: 10px }
.cta-banner p  { color: rgba(255,255,255,.65); margin: 0 }
.cta-banner__btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0 }

/* ── Breadcrumb ─────────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 12px 0;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--slate-500);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--slate-500); transition: var(--trans) }
.breadcrumb a:hover { color: var(--solar-d) }
.breadcrumb .sep { color: var(--slate-400) }
.breadcrumb span[aria-current="page"] { color: var(--text-dark); font-weight: 600 }

/* ── Floating WhatsApp ──────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: var(--trans);
  color: var(--white);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.55) }
.wa-float svg { width: 32px; height: 32px; fill: var(--white) }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7) }

.footer__top { padding: 72px 0 48px }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand p { font-size: .9rem; line-height: 1.7; margin: 16px 0 20px }
.footer__brand .logo-text strong { color: var(--white) }
.footer__social { display: flex; gap: 10px }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: var(--trans);
}
.footer__social a:hover { background: var(--solar); color: var(--ink) }

.footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px }
.footer__col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--trans);
}
.footer__col ul li a:hover { color: var(--solar); padding-left: 4px }

/* Footer provinces accordion */
.footer__provinces { border-top: 1px solid rgba(255,255,255,.08); padding: 32px 0 }
.provinces-toggle {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: rgba(255,255,255,.75);
  font-family: var(--font-base);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--trans);
  margin-bottom: 0;
}
.provinces-toggle:hover { border-color: var(--solar); color: var(--solar) }
.provinces-toggle .toggle-icon {
  width: 24px; height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transition: var(--trans);
}
.provinces-toggle.open { border-color: var(--solar); color: var(--solar) }
.provinces-toggle.open .toggle-icon { transform: rotate(45deg) }

.provinces-panel {
  display: none;
  padding: 24px 0 0;
}
.provinces-panel.open { display: block }
.provinces-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.provinces-all-grid a {
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  transition: var(--trans);
}
.provinces-all-grid a:hover { background: rgba(245,158,11,.1); border-color: var(--solar); color: var(--solar) }

/* ── Footer locator ─────────────────────────────────────────────────── */
.footer__locator {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer__locator-title {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
}
.footer__locator-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__locator-select {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
  padding: 10px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .88rem;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color .2s;
}
.footer__locator-select:disabled { opacity: .4; cursor: default }
.footer__locator-select:focus { outline: none; border-color: var(--solar) }
.footer__locator-select option { background: var(--ink); color: var(--white) }
.footer__locator-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--solar);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .88rem;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.footer__locator-btn:disabled { opacity: .4; cursor: default }
.footer__locator-btn:not(:disabled):hover { background: var(--solar-d); transform: translateY(-1px) }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom nav { display: flex; gap: 16px }
.footer__bottom nav a { transition: var(--trans) }
.footer__bottom nav a:hover { color: var(--solar) }

/* ── Legal pages ────────────────────────────────────────────────────── */
.page-hero--simple {
  background: var(--ink);
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.page-hero--simple h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--solar); text-decoration: none }
.breadcrumb a:hover { text-decoration: underline }
.legal-content {
  max-width: 820px;
  padding-top: 48px;
  padding-bottom: 64px;
}
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--ink);
  margin: 2.5em 0 .75em;
  padding-bottom: .4em;
  border-bottom: 2px solid var(--solar);
  display: inline-block;
}
.legal-content h2:first-of-type { margin-top: 0 }
.legal-content p, .legal-content li { line-height: 1.8; color: var(--slate-600) }
.legal-content ul { padding-left: 1.5em; margin: .75em 0 }
.legal-content li { margin-bottom: .4em }
.legal-content a { color: var(--solar-d); text-decoration: underline }
.legal-updated { margin-top: 3em; padding-top: 1.5em; border-top: 1px solid var(--slate-100); color: var(--slate-400); font-size: .85rem }
.cookies-table { width: 100%; border-collapse: collapse; margin: 1em 0 1.5em; font-size: .9rem }
.cookies-table th { background: var(--ink); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600 }
.cookies-table td { padding: 10px 14px; border-bottom: 1px solid var(--slate-100); color: var(--slate-600) }
.cookies-table tr:nth-child(even) td { background: var(--slate-50) }
.cookies-table code { background: var(--slate-100); padding: 2px 6px; border-radius: 4px; font-size: .85rem }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center }
  .hero__desc { margin-left: auto; margin-right: auto }
  .hero__cta, .hero__trust { justify-content: center }
  .hero__visual { display: none }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr) }
  .services-grid { grid-template-columns: repeat(2, 1fr) }
  .why-grid { grid-template-columns: 1fr }
  .why__visual { display: none }
  .process-grid { grid-template-columns: repeat(2, 1fr) }
  .process-grid::before { display: none }
  .testimonials-grid { grid-template-columns: 1fr }
  .reviews-card { flex: 0 0 calc(50% - 12px) }
  .google-badge { padding: 14px 20px }
  .footer__grid { grid-template-columns: 1fr 1fr }
  .service-hero__grid { grid-template-columns: 1fr }
  .service-hero__visual { display: none }
}
@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 500; padding: 80px 24px 32px; overflow-y: auto; flex-direction: column; align-items: flex-start }
  .nav.open { display: flex }
  .nav__list { flex-direction: column; width: 100%; gap: 0 }
  .nav__list > li > a { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--slate-100); border-radius: 0 }
  .dropdown { position: static; box-shadow: none; border: none; background: var(--slate-50); border-radius: var(--radius); opacity: 1; visibility: visible; transform: none; display: none }
  .has-dropdown.open .dropdown { display: block }
  .nav__cta { margin-left: 0; margin-top: 20px; flex-direction: column; width: 100% }
  .nav__cta .btn { width: 100%; justify-content: center }
  .nav-toggle { display: flex }
  .topbar__left { display: none }
  .services-grid { grid-template-columns: 1fr }
  .process-grid  { grid-template-columns: 1fr }
  .cta-banner__inner { flex-direction: column; text-align: center }
  .benefits-list { grid-template-columns: 1fr }
  .footer__grid  { grid-template-columns: 1fr }
  .footer__bottom-inner { flex-direction: column; text-align: center }
}
@media (max-width: 768px) {
  .footer__locator-select { max-width: 100%; min-width: 140px }
  .footer__locator-form { flex-direction: column; align-items: stretch }
  .footer__locator-btn { justify-content: center }
}
@media (max-width: 480px) {
  .hero__grid { padding: 60px 0 48px }
  .hero__grid--centered { padding: 80px 0 60px }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr) }
  .stat-item { padding: 20px 12px }
  .stat-item__num { font-size: 1.7rem }
  .reviews-card { flex: 0 0 88% }
  .reviews-nav { display: none }
  .google-badge { flex-direction: column; text-align: center; padding: 16px }
}
