/* FWL — plantilla visual MASTER (layout + componentes) */

:root {
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 22px 48px -15px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-accent, #c9a227); transition: var(--transition-smooth); }
a:hover { opacity: 0.85; }

h1, h2, h3 { line-height: 1.25; margin-top: 0; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.2rem; }

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--muted {
  background: color-mix(in srgb, var(--color-primary) 4%, var(--color-bg));
}

/* Centrar textos de las cabeceras de sección con elegancia (Landing / Home) */
.section--intro,
.section:has(#home-servicios-heading),
.section:has(#benefits-heading),
.section:has(#process-heading),
.section:has(#faq-heading),
.section:has(.zones-grid) {
  text-align: center;
}

.section--intro h2,
#home-servicios-heading,
#benefits-heading,
#process-heading,
#faq-heading,
.section:has(.zones-grid) h2:first-of-type,
.section:has(.zones-grid--chips) h2:first-of-type {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
  max-width: 48rem;
  margin-inline: auto;
}

.section--intro h2::after,
#home-servicios-heading::after,
#benefits-heading::after,
#process-heading::after,
#faq-heading::after,
.section:has(.zones-grid) h2:first-of-type::after,
.section:has(.zones-grid--chips) h2:first-of-type::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* Centrar textos descriptivos de sección cuando corresponda */
.section--intro .lead,
.section-intro {
  text-align: center;
  margin-inline: auto;
  max-width: 42rem;
  margin-bottom: 3rem;
}



.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Top bar —— */
.top-bar {
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.875rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.top-bar__info { opacity: 0.95; }

/* —— Header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
  flex-wrap: wrap;
}
.header__logo {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__logo img {
  max-height: 44px;
  width: auto;
  transition: transform 0.3s ease;
}
.header__logo:hover img {
  transform: scale(1.05);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
}
.header__nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.2rem;
  position: relative;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}
.header__nav a:hover {
  color: var(--color-primary);
}
.header__nav a:hover::after,
.header__nav a[aria-current="page"]::after {
  width: 100%;
}
.header__nav a[aria-current="page"] {
  color: var(--color-primary);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__phone {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  font-size: 1rem;
  transition: var(--transition-smooth);
}
.header__phone:hover {
  color: var(--color-accent);
  transform: scale(1.02);
}
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--color-primary);
  line-height: 1;
  transition: var(--transition-smooth);
}
.menu-toggle:hover {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .header__phone { display: none; }
  .header__nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }
  .header__nav a {
    padding-block: 0.5rem;
  }
  .header__nav a::after {
    bottom: 2px;
  }
  .header__nav.is-open { display: flex; }
  .header > .container { position: relative; }
  body.nav-open { overflow: hidden; }
}

/* —— Botones —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  min-height: 46px;
  z-index: 1;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:active {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--color-accent) 30%, transparent);
}
.btn-primary:hover {
  box-shadow: 0 12px 28px color-mix(in srgb, var(--color-accent) 45%, transparent);
}
/* Efecto de brillo shimmer continuo para la conversión */
.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shimmer 4.5s infinite linear;
  z-index: -1;
}
@keyframes shimmer {
  0% { left: -60%; }
  15% { left: 130%; }
  100% { left: 130%; }
}
.btn-gold {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--color-secondary) 20%, transparent);
}
.btn-gold:hover {
  box-shadow: 0 12px 28px color-mix(in srgb, var(--color-secondary) 35%, transparent);
}
.btn-sm { padding: 0.5rem 1.15rem; font-size: 0.875rem; min-height: 38px; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }


/* —— Hero —— */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  color: #fff;
  background: radial-gradient(
    circle at top right,
    color-mix(in srgb, var(--color-secondary) 82%, var(--color-accent)) 0%,
    var(--color-primary) 100%
  );
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.04) 0%, transparent 45%);
  pointer-events: none;
}
.hero p {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  max-width: 44rem;
  opacity: 0.95;
  margin-bottom: 0;
}
.hero-trust {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  max-width: 38rem;
}
.hero-trust li { margin: 0.5rem 0; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero .btn-gold {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}
.hero .btn-gold:hover {
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
}


/* —— Página 404 —— */
.error-page {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}
.error-page__code {
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 0.5rem;
  color: var(--color-primary);
  opacity: 0.25;
}
.error-page h1 {
  margin-bottom: 0.75rem;
}
.error-page .lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.75rem 0 2rem;
}
.error-page__nav {
  text-align: left;
  max-width: 28rem;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border, #e0e0e0);
}
.error-page__nav h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* —— Page header + breadcrumbs —— */
.page-header {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  background: var(--color-primary);
  color: #fff;
}
.page-header h1 { margin-bottom: 0.5rem; }
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.6;
}
.breadcrumbs {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: underline;
}
.breadcrumbs span { opacity: 0.85; }
.hub-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: inherit;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* —— Resumen rápido —— */
.page-summary {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, #ddd);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.page-summary dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-secondary);
  margin: 0;
}
.page-summary dd {
  margin: 0.15rem 0 0;
  font-weight: 600;
  font-size: 0.95rem;
}

/* —— Cards —— */
.services-grid,
.zones-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.service-card,
.zone-card {
  display: block;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-card:hover,
.zone-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 60%, transparent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}
.service-card:hover .service-card__icon {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.service-card h3 { margin-bottom: 0.65rem; color: var(--color-primary); font-size: 1.3rem; }
.service-card p,
.zone-card p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-text) 72%, #555);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--color-text) 90%, #444);
}
.service-points {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}
.service-points li { margin: 0.35rem 0; }

/* —— FAQ —— */
details {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-bottom: 0.65rem;
  padding: 0.75rem 1rem;
  background: #fff;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
}
details[open] summary { margin-bottom: 0.5rem; }
details p { margin: 0; font-size: 0.95rem; }

/* —— Interlinking —— */
.related-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.related-block h2 { font-size: 1.15rem; }
.related-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.related-block a { font-weight: 500; }

/* —— Footer —— */
.footer {
  background: var(--color-primary);
  color: #fff;
  padding: 2.5rem 0 1.25rem;
  margin-top: 2rem;
}
.footer a { color: inherit; }
.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.footer__col-title {
  font-weight: 700;
  margin: 0 0 0.75rem;
  font-size: 1rem;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li { margin: 0.35rem 0; }
.footer__contact-item { margin: 0.35rem 0; }
.footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  opacity: 0.9;
}
.text-sm { font-size: 0.875rem; opacity: 0.9; }
.cookie-footer-link {
  background: none;
  border: none;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* —— Sticky CTA móvil —— */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.65rem 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
}
.sticky-cta .container {
  display: flex;
  gap: 0.75rem;
}
.sticky-cta .btn {
  flex: 1;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: none;
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 5rem; }
  .header__cta .btn-sm { display: none; }
}

/* —— Formularios —— */
form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}
form input,
form textarea {
  width: 100%;
  max-width: 28rem;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font: inherit;
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: #fff;
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  animation: cookieSlideUp 0.35s ease-out;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
}
.cookie-banner__title { margin: 0 0 0.5rem; font-size: 1.1rem; }
.cookie-banner__text { margin: 0 0 1rem; font-size: 0.9rem; opacity: 0.95; }
.cookie-banner__text a { color: var(--color-accent); }
.cookie-banner__settings {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.cookie-banner__settings[hidden] { display: none; }
.cookie-banner__fieldset { border: none; padding: 0; margin: 0; }
.cookie-banner__option {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-banner__option--disabled { opacity: 0.7; cursor: default; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.cookie-banner__btn {
  padding: 0.65rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  font-size: 0.9rem;
}
.cookie-banner__btn--accept,
.cookie-banner__btn--save {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner__btn--reject {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.cookie-banner__btn--config {
  background: transparent;
  color: #fff;
  text-decoration: underline;
}
.cookie-banner__btn--save[hidden] { display: none; }

/* —— Hero split + badge —— */
.hero--split { padding: clamp(3rem, 7vw, 5rem) 0; }
.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
/* Punto pulsante verde para urgencia / disponibilidad */
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}
.hero__lead { font-size: clamp(1.15rem, 2.2vw, 1.4rem); font-weight: 650; }
.hero__intro { opacity: 0.92; max-width: 40rem; line-height: 1.7; }
.hero__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}
.hero__img:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.hero-chip {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}
.trust-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.trust-stat:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.trust-stat strong { display: block; font-size: 1.25rem; margin-bottom: 0.15rem; }
.trust-stat span { font-size: 0.78rem; opacity: 0.85; font-weight: 500; }


.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.hero .btn-outline { color: #fff; }

.header__logo-img { max-height: 44px; width: auto; }
.header__brand { font-weight: 800; }
@media (min-width: 901px) {
  .header__logo-img + .header__brand { display: none; }
}
@media (max-width: 900px) {
  .header__logo-img { display: none; }
}

.entity-summary {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--color-accent) 8%, #fff);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 10px 10px 0;
  font-size: 0.98rem;
}
.entity-summary p { margin: 0; }

.content-narrow { max-width: 800px; margin-inline: auto; }
.section-intro { max-width: 42rem; color: color-mix(in srgb, var(--color-text) 75%, #666); }
.section-cta { margin-top: 1.25rem; }
.link-arrow { font-weight: 700; color: var(--color-primary); text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }
.text-accent { color: var(--color-accent); }
.page-header__lead { opacity: 0.9; margin: 0; }
.page-header__icon { margin-right: 0.35rem; }

.service-card--rich {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.service-card__img {
  width: calc(100% + 3.5rem);
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: 0 -1.75rem 1.25rem -1.75rem;
  max-width: none;
  display: block;
}
.service-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.9rem;
}
.service-card--static {
  display: block;
  text-decoration: none;
  color: inherit;
}
.services-grid--compact { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.benefits-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-top: 1.5rem;
}
.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--color-primary) 10%, #e8e8e8);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.benefit-card__icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.benefit-card h3 { margin-bottom: 0.35rem; font-size: 1.05rem; color: var(--color-primary); }
.benefit-card p { margin: 0; font-size: 0.92rem; color: color-mix(in srgb, var(--color-text) 80%, #555); }

.process-steps,
ol.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1.25rem;
}
.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e8e8e8;
  position: relative;
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.process-step p { margin: 0; font-size: 0.9rem; }

.zone-card__pin { font-size: 1.1rem; }
.zone-card__name { display: block; font-weight: 700; color: var(--color-primary); }
.zone-card__tag {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.75;
}
.zones-grid--chips .zone-card { text-align: center; }

.check-list {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
}
.check-list li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0.75rem 0 1rem;
}
.related-links a {
  background: color-mix(in srgb, var(--color-primary) 8%, #fff);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--color-primary);
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, #ddd);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 0.5rem; }
.cta-section p { opacity: 0.95; max-width: 36rem; margin: 0 auto 1.25rem; }
.cta-section .cta-buttons { justify-content: center; }

.inline-cta { margin-top: 2rem; text-align: center; }

.faq-list details { margin-bottom: 0.65rem; }

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem;
}
.contact-line { margin: 0.5rem 0; }

/* Formulario de contacto accesible */
.contact-form .form-field { margin-bottom: 1rem; }
.contact-form label { display: block; margin-bottom: 0.35rem; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font: inherit;
  background: #fff;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.contact-form [aria-invalid="true"] { border-color: #c0392b; }
.field-error { display: block; min-height: 1em; margin-top: 0.25rem; color: #c0392b; font-size: 0.85rem; }
.form-status:empty { display: none; }
.form-status { margin-bottom: 0.75rem; font-weight: 600; }

/* Datos factuales (GEO §7) */
.facts-block { margin: 1.25rem 0; padding: 1rem 1.25rem; background: color-mix(in srgb, var(--color-primary) 6%, #fff); border-left: 3px solid var(--color-accent); border-radius: 8px; }
.facts-list { margin: 0; padding-left: 1.1rem; }
.facts-list li { margin: 0.25rem 0; }

/* Tablas resumen (GEO §5) */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.summary-table, .page-summary { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.summary-table caption, .page-summary caption { text-align: left; font-weight: 600; margin-bottom: 0.5rem; }
.summary-table th, .summary-table td,
.page-summary th, .page-summary td { padding: 0.55rem 0.75rem; border: 1px solid #e3e3e3; text-align: left; vertical-align: top; }
.summary-table thead th { background: color-mix(in srgb, var(--color-primary) 10%, #fff); }
.summary-table tbody th, .page-summary th { background: #fafafa; }

/* Figuras (equipo / cobertura) */
.about-figure, .zones-figure { margin: 1.5rem 0; }
.about-figure img, .zones-figure img { width: 100%; height: auto; border-radius: 12px; }

/* ==========================================================================
   ESTILOS PREMIUM FWL (NUEVAS SECCIONES Y DETALLES DE DISEÑO)
   ========================================================================== */

/* —— Barra de confianza (Trust Bar) —— */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}
.trust-bar__list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-bar__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}
.trust-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background: color-mix(in srgb, var(--color-accent) 15%, transparent);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 0.85rem 0;
  }
  .trust-bar__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    justify-items: start;
    padding-inline: 0.5rem;
  }
  .trust-bar__list li {
    font-size: 0.85rem;
  }
}

/* —— Grid de Problemas —— */
.problems-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  margin-top: 1.5rem;
}
.problem-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
}
.problem-card__icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.06));
}
.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.problem-card p {
  font-size: 0.92rem;
  margin: 0;
  color: color-mix(in srgb, var(--color-text) 75%, #555);
  line-height: 1.6;
}
.problems-cta {
  margin-top: 3rem;
  text-align: center;
}
.problems-cta .lead {
  max-width: 38rem;
  margin-inline: auto;
}
.cta-buttons--center {
  justify-content: center;
}

/* —— Caja de Servicio Destacado (Featured Box) —— */
.section--featured {
  background: color-mix(in srgb, var(--color-primary) 3%, var(--color-bg));
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}
.featured-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.featured-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.featured-box__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.featured-box h2 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
  color: #fff;
}
.featured-box__desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.9;
  max-width: 44rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.featured-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.featured-box .btn-gold {
  background: #fff;
  color: var(--color-primary);
}
.featured-box .btn-gold:hover {
  background: color-mix(in srgb, var(--color-accent) 10%, #fff);
}
.featured-box .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
}
.featured-box .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* —— Testimonios / Reseñas (Reviews) —— */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1.5rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 0, 0.08);
}
.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.review-card__author {
  font-weight: 800;
  color: var(--color-primary);
  font-size: 0.95rem;
}
.review-card__stars {
  color: #f1c40f;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.review-card__comment {
  font-size: 0.92rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--color-text) 82%, #333);
  font-style: italic;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
}
.review-card__date {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--color-text) 50%, #777);
  display: block;
}
.reviews-footer {
  margin-top: 2rem;
  text-align: center;
}
.reviews-summary {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--color-text) 75%, #666);
}
.reviews-summary strong {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* —— Mejoras globales de tarjetas y elementos interactivos —— */
.service-card, .zone-card, .benefit-card, .process-step {
  transition: var(--transition-smooth);
}
.service-card:hover, .zone-card:hover {
  transform: translateY(-5px) scale(1.01);
}
.benefit-card:hover, .process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.08);
}
.faq-item {
  transition: var(--transition-smooth);
}
.faq-item:hover {
  border-color: color-mix(in srgb, var(--color-primary) 30%, #ddd);
  box-shadow: var(--shadow-sm);
}

/* —— Ajustes estéticos adicionales —— */
.top-bar {
  letter-spacing: 0.02em;
}
.footer__grid {
  gap: 2.5rem 2rem;
}
.footer__col-title {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
