/* =============================================================
   SaltosdelLaja.com — style.css  (ARCHIVO ÚNICO UNIFICADO)
   Incluye: Menú + Barra scroll + Estilos globales + Footer expandido
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   1. RESET & VARIABLES GLOBALES
───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --celeste:          #00AEEF;
  --celeste-oscuro:   #0090C8;
  --celeste-dark:     #006B9E;
  --celeste-pale:     #E6F7FD;
  --celeste-mid:      #B3E5F9;

  --blanco:           #ffffff;
  --gris-fondo:       #F7FAFB;
  --gris-borde:       #E2EEF3;
  --gris-suave:       #6B8A96;
  --texto:            #1A2E35;
  --texto-medio:      #3D5A65;

  --rojo-telf:        #E63946;
  --rojo-dark:        #C1121F;
  --verde-wa:         #25D366;
  --verde-wa-dark:    #1DA851;

  --inactivo-bg:      #F0F4F5;
  --inactivo-txt:     #A8BEC5;

  --radius:           14px;
  --radius-sm:        8px;
  --shadow:           0 2px 16px rgba(0, 174, 239, .10);
  --shadow-hover:     0 8px 32px rgba(0, 174, 239, .22);

  --nav-bg:           #1a1a1a;
  --nav-active:       #333;
  --nav-hover:        #2d2d2d;
  --bar2-bg:          #f4f7fa;
  --bar2-border:      #dce4ed;
  --bar2-text:        #3a82c4;
  --bar2-hover:       #2a6fad;
  --dropdown-bg:      #ffffff;
  --dropdown-shadow:  0 4px 16px rgba(0, 0, 0, .18);

  --font-sans:        'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:       'Playfair Display', Georgia, serif;
  --font-nav:         'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--blanco);
  color: var(--texto);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}


/* ─────────────────────────────────────────────────────────────
   2. MENÚ PRINCIPAL — NAVBAR
───────────────────────────────────────────────────────────── */
#navbar {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  height: 52px;
}

.nav-brand {
  color: var(--blanco);
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
  gap: 0;
}

.nav-links > li {
  position: relative;
  height: 100%;
}

.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0 14px;
  color: var(--blanco);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 400;
  font-family: var(--font-nav);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .01em;
  transition: background .18s;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  background: var(--nav-hover);
}

.nav-links > li.active > a,
.nav-links > li.active > button {
  background: var(--nav-active);
}

.nav-links > li > a svg,
.nav-links > li > button svg {
  width: 10px;
  height: 10px;
  fill: var(--blanco);
  opacity: .75;
  transition: transform .2s;
}

.nav-links > li.open > a svg,
.nav-links > li.open > button svg {
  transform: rotate(180deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dropdown-bg);
  box-shadow: var(--dropdown-shadow);
  min-width: 160px;
  border-top: 2px solid var(--celeste);
  z-index: 200;
}

.nav-links > li.open .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  color: #222;
  text-decoration: none;
  font-size: .87rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s, color .15s;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: #f0f6fb;
  color: var(--celeste);
}


/* ─────────────────────────────────────────────────────────────
   3. HAMBURGER (MÓVIL)
───────────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  cursor: pointer;
  gap: 5px;
  transition: background .2s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, .15);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: all .3s;
}


/* ─────────────────────────────────────────────────────────────
   4. MENÚ MÓVIL
───────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nav-bg);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease;
}

.mobile-menu.open {
  display: block;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 8px 0;
}

.mobile-menu ul li a,
.mobile-menu ul li button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px;
  color: var(--blanco);
  text-decoration: none;
  font-size: .95rem;
  font-family: var(--font-nav);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  cursor: pointer;
  text-align: left;
}

.mobile-menu ul li a:active,
.mobile-menu ul li button:active {
  background: rgba(255, 255, 255, .07);
}

.mobile-menu .mobile-sub {
  display: none;
  background: #111;
}

.mobile-menu .mobile-sub.open {
  display: block;
}

.mobile-menu .mobile-sub a {
  padding-left: 38px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .04);
}

.mobile-menu .mobile-sub a::before {
  content: '– ';
  opacity: .5;
}

.chevron-icon {
  width: 12px;
  height: 12px;
  fill: rgba(255, 255, 255, .6);
  transition: transform .25s;
  flex-shrink: 0;
}

.mobile-menu li.open .chevron-icon {
  transform: rotate(180deg);
}


/* ─────────────────────────────────────────────────────────────
   5. BARRA DE SCROLL HORIZONTAL
───────────────────────────────────────────────────────────── */
#scrollbar {
  background: var(--bar2-bg);
  border-bottom: 1px solid var(--bar2-border);
  position: sticky;
  top: 52px;
  z-index: 900;
  overflow: hidden;
}

.scrollbar-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.scrollbar-inner::-webkit-scrollbar {
  display: none;
}

.scrollbar-inner a {
  display: inline-block;
  white-space: nowrap;
  padding: 10px 16px;
  color: var(--bar2-text);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .18s;
  position: relative;
  flex-shrink: 0;
}

.scrollbar-inner a::after {
  content: '/';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #bcd0e0;
  font-size: .8rem;
  pointer-events: none;
}

.scrollbar-inner a:last-child::after {
  display: none;
}

.scrollbar-inner a:hover {
  color: var(--bar2-hover);
}

.scrollbar-inner a.active {
  color: var(--bar2-hover);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#scrollbar::before,
#scrollbar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  z-index: 1;
  pointer-events: none;
}

#scrollbar::before {
  left: 0;
  background: linear-gradient(to right, var(--bar2-bg), transparent);
}

#scrollbar::after {
  right: 0;
  background: linear-gradient(to left, var(--bar2-bg), transparent);
}


/* ─────────────────────────────────────────────────────────────
   6. BREADCRUMB
───────────────────────────────────────────────────────────── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 12px;
  color: var(--gris-suave);
}

.breadcrumb a {
  color: var(--celeste);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
  opacity: .5;
}


/* ─────────────────────────────────────────────────────────────
   7. HERO
───────────────────────────────────────────────────────────── */
.hero-1 {
  background-image: url('../img/saltos-del-laja-hero.webp');
  background-size: cover;
  background-position: center;
  background-color: var(--celeste);
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-1 {

  background-color: var(--celeste);
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .40);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .80);
  margin-bottom: 14px;
}

.hero-1 h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .60);
}

.hero-1 p {
  font-size: 15px;
  color: rgba(255, 255, 255, .80);
  max-width: 480px;
  margin: 0 auto;
}

.hero-1 .hero-subtitle {
  color: #ffd166;
}

.hero-1.hero-desc {
  text-shadow: 0 1px 8px rgba(0, 0, 0, .60);
}


/* ─────────────────────────────────────────────────────────────
   #. HERO
───────────────────────────────────────────────────────────── */
.hero {
  background: var(--celeste);
  padding: 60px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 107, 158, .3)    0%, transparent 55%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .80);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, .80);
  max-width: 480px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────────────────────────
   8. BANNER DE SERVICIOS
───────────────────────────────────────────────────────────── */
.servicios-banner {
  background: var(--blanco);
  border-bottom: 1.5px solid var(--gris-borde);
}

.servicios-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--texto-medio);
  white-space: nowrap;
}

.svc-item svg {
  width: 18px;
  height: 18px;
  color: var(--celeste);
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────────────
   9. SECCIÓN CONTENIDO
───────────────────────────────────────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.section-head {
  margin-bottom: 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--celeste);
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--texto);
}


/* ─────────────────────────────────────────────────────────────
   10. GRIDS DE TARJETAS
───────────────────────────────────────────────────────────── */
.hoteles-grid,
.cabanas-grid,
.camping-grid,
.restaurantes-grid,
.actividades-grid,
.hostales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .hoteles-grid,
  .cabanas-grid,
  .camping-grid,
  .restaurantes-grid,
  .actividades-grid,
  .hostales-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .hoteles-grid,
  .cabanas-grid,
  .camping-grid,
  .restaurantes-grid,
  .actividades-grid,
  .hostales-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section {
    padding: 28px 14px 52px;
  }
}


/* ─────────────────────────────────────────────────────────────
   11. TARJETA
───────────────────────────────────────────────────────────── */
.hotel-card {
  background: var(--blanco);
  border-radius: var(--radius);
  border: 1.5px solid var(--gris-borde);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  contain: layout style;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s;
}

.hotel-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--celeste-mid);
  transform: translateY(-3px);
}

.hotel-img {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: var(--celeste-pale);
  flex-shrink: 0;
}

.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
}

.hotel-img a {
  display: block;
  height: 100%;
}

@media (max-width: 640px) {
  .hotel-img {
    height: 110px;
  }
}

.hotel-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--celeste);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}

.hotel-body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 640px) {
  .hotel-body {
    padding: 12px 12px 14px;
    gap: 9px;
  }
}

.hotel-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--texto);
  line-height: 1.2;
}

.hotel-name a {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}

.hotel-name a:hover {
  color: var(--celeste-dark);
}

@media (max-width: 640px) {
  .hotel-name {
    font-size: .92rem;
  }
}

.hotel-desc {
  font-size: 12px;
  color: var(--gris-suave);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.6em * 3);
}


/* ─────────────────────────────────────────────────────────────
   12. CHIPS DE SERVICIOS
───────────────────────────────────────────────────────────── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}

.chip svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.chip.on {
  background: var(--celeste-pale);
  color: var(--celeste-dark);
  border: 1px solid var(--celeste-mid);
}

.chip.off {
  background: var(--inactivo-bg);
  color: var(--inactivo-txt);
  border: 1px solid #DDE5E8;
  text-decoration: line-through;
}


/* ─────────────────────────────────────────────────────────────
   13. DIVISOR
───────────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--gris-borde);
  margin: 0 -16px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .divider {
    margin: 0 -12px;
  }
}


/* ─────────────────────────────────────────────────────────────
   14. BOTONES DE CONTACTO
───────────────────────────────────────────────────────────── */
.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.icon-btns {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.icon-btns .btn-contact,
.icon-btns .btn-llegar {
  flex: 1;
  width: auto;
  height: 38px;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  transition: background .18s ease, transform .12s;
}

.btn-contact:hover {
  transform: translateY(-1px);
}

.btn-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-tel {
  background: var(--rojo-telf);
  color: #fff;
}
.btn-tel:hover {
  background: var(--rojo-dark);
}

.btn-wa {
  background: var(--verde-wa);
  color: #fff;
}
.btn-wa:hover {
  background: var(--verde-wa-dark);
}

.btn-llegar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--celeste-pale);
  color: var(--celeste-dark);
  border: 1.5px solid var(--celeste-mid);
  border-radius: var(--radius-sm);
  text-decoration: none;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  transition: background .18s, border-color .18s, transform .12s;
}

.btn-llegar:hover {
  background: var(--celeste-mid);
  border-color: var(--celeste);
  transform: translateY(-1px);
}

.btn-llegar svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-hotel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  height: 38px;
  width: 100%;
  background: var(--celeste);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: background .18s, transform .12s;
}

.btn-hotel:hover {
  background: var(--celeste-oscuro);
  transform: translateY(-1px);
}

.btn-hotel svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────────────
   15. TARJETA PLACEHOLDER
───────────────────────────────────────────────────────────── */
.card-placeholder {
  border-style: dashed !important;
  border-color: var(--celeste-mid) !important;
  box-shadow: none !important;
  background: var(--gris-fondo) !important;
}

.card-placeholder:hover {
  transform: none !important;
}

.placeholder-img {
  height: 150px;
  background: var(--celeste-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .placeholder-img {
    height: 110px;
  }
}

.placeholder-body {
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
}

.placeholder-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--celeste-dark);
}

.placeholder-desc {
  font-size: 11.5px;
  color: var(--gris-suave);
  line-height: 1.5;
}

.btn-placeholder {
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--celeste);
  text-decoration: none;
  border: 1.5px solid var(--celeste-mid);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
}

.btn-placeholder:hover {
  background: var(--celeste-pale);
}


/* ─────────────────────────────────────────────────────────────
   16. NOTA INFORMATIVA
───────────────────────────────────────────────────────────── */
.nota {
  background: var(--celeste-pale);
  border-left: 3px solid var(--celeste);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--celeste-dark);
  margin-top: 10px;
}


/* ─────────────────────────────────────────────────────────────
   17. FAQ
───────────────────────────────────────────────────────────── */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.faq-intro {
  font-size: 14px;
  color: var(--gris-suave);
  margin-bottom: 28px;
}

.faq-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

details {
  border-bottom: 1px solid var(--gris-borde);
  padding: 0;
}

summary {
  padding: 16px 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--texto-medio);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--celeste);
  flex-shrink: 0;
  transition: transform .2s;
}

details[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 4px 16px;
  font-size: 13.5px;
  color: var(--gris-suave);
  line-height: 1.7;
}

/* FAQ con button/hidden en vez de details */
.faq-item {
  border-bottom: 1px solid var(--gris-borde);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--texto-medio);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-family: var(--font-sans);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--celeste);
  transition: transform .25s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer:not([hidden]) {
  padding: 0 4px 16px;
  font-size: 13.5px;
  color: var(--gris-suave);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────────────────────
   18. SECCIÓN MAPA
───────────────────────────────────────────────────────────── */
.mapa-section {
  background: var(--gris-fondo);
  border-top: 1.5px solid var(--gris-borde);
  padding: 56px 0 64px;
}

.mapa-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mapa-head {
  margin-bottom: 28px;
}

.mapa-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 8px;
}

.mapa-desc {
  font-size: 14px;
  color: var(--gris-suave);
  margin-top: 8px;
  max-width: 600px;
  line-height: 1.6;
}

.mapa-pins {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.mapa-pin {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--texto);
  transition: border-color .18s, box-shadow .18s;
}

.mapa-pin:hover {
  border-color: var(--celeste);
  box-shadow: var(--shadow);
}

.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
}

.pin-rojo    { background: var(--rojo-telf); }
.pin-celeste { background: var(--celeste); }

.pin-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pin-info strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--texto);
}

.pin-info span {
  font-size: 11px;
  color: var(--celeste);
}

.mapa-frame-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--gris-borde);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.mapa-accesos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.btn-mapa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--celeste);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .18s, transform .12s;
}

.btn-mapa:hover {
  background: var(--celeste-oscuro);
  transform: translateY(-1px);
}

.btn-mapa svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-mapa-waze {
  background: #33ccff;
  color: #1a2e35;
}

.btn-mapa-waze:hover {
  background: #00b8e6;
}

.mapa-coords {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gris-suave);
  margin-left: 4px;
}

.mapa-coords svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .mapa-section {
    padding: 40px 0 48px;
  }

  .mapa-frame-wrap iframe {
    height: 300px;
  }

  .mapa-pins {
    flex-direction: column;
  }
}


/* ─────────────────────────────────────────────────────────────
   19. FOOTER EXPANDIDO
───────────────────────────────────────────────────────────── */
.footer {
  background: var(--texto);
  color: rgba(255, 255, 255, .65);
  padding: 56px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}

.footer-col p {
  margin-bottom: 6px;
  font-size: 13px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13px;
  transition: color .18s;
}

.footer-col ul li a:hover {
  color: var(--celeste);
}

.footer-col a {
  color: var(--celeste);
  text-decoration: none;
  transition: color .18s;
}

.footer-col a:hover {
  color: #5ed3f8;
}

/* Sección de enlaces de interés */
.footer-links-section {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 0;
}

.footer-links-section h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}

.footer-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
}

.footer-link-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
}

.footer-link-tag:hover {
  background: rgba(0,174,239,.18);
  border-color: rgba(0,174,239,.4);
  color: var(--celeste);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

.footer-bottom a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .18s;
}

.footer-bottom a:hover {
  color: var(--celeste);
}


/* ─────────────────────────────────────────────────────────────
   20. RESPONSIVE — MENÚ
───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }

  .hamburger {
    display: none !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   21. PÁGINA INDEX — SECCIONES ESPECÍFICAS
───────────────────────────────────────────────────────────── */
.main-content {
  padding-top: 0;
}

.main-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Sección intro */
.intro-section {
  padding: 52px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--texto);
  margin-bottom: 16px;
}

.intro-text p {
  font-size: 14px;
  color: var(--gris-suave);
  line-height: 1.75;
  margin-bottom: 12px;
}

.intro-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  width: 100%;
}

/* Postal turística */
.postal-section {
  background: var(--celeste-pale);
  border-top: 1.5px solid var(--celeste-mid);
  border-bottom: 1.5px solid var(--celeste-mid);
  padding: 36px 24px;
  text-align: center;
  max-width: 100%;
}

.postal-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--celeste-dark);
  margin-bottom: 12px;
}

.postal-section p {
  font-size: 14px;
  color: var(--texto-medio);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Parque Natural La Cantera */
.cantera-section {
  padding: 52px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cantera-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .cantera-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.cantera-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  width: 100%;
}

.cantera-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--texto);
  margin-bottom: 8px;
}

.cantera-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--celeste-dark);
  margin-bottom: 16px;
}

.cantera-content p {
  font-size: 14px;
  color: var(--gris-suave);
  line-height: 1.75;
  margin-bottom: 12px;
}

.horarios-box {
  background: var(--gris-fondo);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 20px;
}

.horarios-box h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--celeste-dark);
  margin-bottom: 10px;
}

.horarios-box p {
  font-size: 13px;
  color: var(--texto-medio);
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Botón Cómo llegar - Parque Cantera */
.btn-cantera-llegar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 9px 18px;
  background: var(--celeste);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .12s;
}

.btn-cantera-llegar:hover {
  background: var(--celeste-oscuro);
  transform: translateY(-1px);
}

.btn-cantera-llegar svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Información Útil */
.info-section {
  background: var(--gris-fondo);
  border-top: 1.5px solid var(--gris-borde);
  padding: 52px 24px 60px;
}

.info-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--texto);
  margin-bottom: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--texto);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--celeste-pale);
}

.info-card p {
  font-size: 13.5px;
  color: var(--texto-medio);
  margin-bottom: 6px;
  line-height: 1.6;
}

.info-card .coords {
  font-size: 12px;
  color: var(--gris-suave);
  margin-top: 8px;
  font-family: monospace;
}

.info-card .highlight {
  font-weight: 700;
  color: var(--celeste-dark);
  font-size: 15px;
}

/* Entrada gratis — color azul en vez de verde */
.info-card .entrada-gratis {
  display: inline-block;
  margin-top: 10px;
  background: var(--celeste-pale);
  color: var(--celeste-dark);
  border: 1.5px solid var(--celeste-mid);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
}

.map-buttons {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--gris-fondo);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radius-sm);
  color: var(--texto-medio);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .18s, background .18s;
}

.map-btn:hover {
  border-color: var(--celeste);
  background: var(--celeste-pale);
  color: var(--celeste-dark);
}

.map-btn svg {
  width: 16px;
  height: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gris-fondo);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radius-sm);
  color: var(--texto-medio);
  font-size: 13px;
  text-decoration: none;
  margin-top: 10px;
  transition: border-color .18s, background .18s;
}

.contact-link:hover {
  border-color: var(--celeste);
  background: var(--celeste-pale);
  color: var(--celeste-dark);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────────────
   22. PÁGINAS INFORMATIVAS (historia, fotografias, como-llegar)
───────────────────────────────────────────────────────────── */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--texto);
  margin: 36px 0 14px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--celeste-dark);
  margin: 24px 0 8px;
}

.page-content p {
  font-size: 14px;
  color: var(--gris-suave);
  line-height: 1.8;
  margin-bottom: 14px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content ul li {
  font-size: 14px;
  color: var(--gris-suave);
  line-height: 1.75;
  margin-bottom: 6px;
}

.page-content strong {
  color: var(--texto-medio);
}

/* Galería fotografías */
.fotos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

@media (max-width: 640px) {
  .fotos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.foto-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--celeste-pale);
  border: 1.5px solid var(--gris-borde);
}

.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.foto-item:hover img {
  transform: scale(1.04);
}

/* Cómo llegar — opciones de transporte */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 640px) {
  .transport-grid {
    grid-template-columns: 1fr;
  }
}

.transport-card {
  background: var(--blanco);
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  box-shadow: var(--shadow);
}

.transport-card .tc-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.transport-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--texto);
  margin: 0 0 8px;
}

.transport-card p {
  font-size: 13px;
  color: var(--gris-suave);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Línea de tiempo historia */
.historia-timeline {
  position: relative;
  padding-left: 28px;
  margin: 28px 0;
}

.historia-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--celeste-mid);
}

.ht-item {
  position: relative;
  margin-bottom: 28px;
}

.ht-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--celeste);
  border: 3px solid var(--blanco);
  box-shadow: 0 0 0 2px var(--celeste-mid);
}

.ht-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--celeste);
  margin-bottom: 4px;
}

.ht-item h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--texto);
  margin: 0 0 6px;
}

.ht-item p {
  font-size: 13.5px;
  color: var(--gris-suave);
  line-height: 1.7;
  margin-bottom: 0;
}


/* Accesibilidad: sustituye h4 en footer preservando estilo visual sin romper jerarquía de headings */
.footer-brand {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}