/* ============================================================
   H2UR.CSS — Estilos globales para h2ur.com
   Requiere Bootstrap 5 + Font Awesome 6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@300;400;600&display=swap');

/* ── VARIABLES ── */
:root {
  --rojo:        #E93735;
  --rojo-oscuro: #c42f2d;
  --negro:       #1a1a1a;
  --gris-oscuro: #333;
  --gris-medio:  #666;
  --gris-claro:  #f4f4f4;
  --blanco:      #fff;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gris-medio);
  overflow-x: hidden;
  background: #fff;
}

a {
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--rojo); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--negro);
  margin-top: 0;
}

h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.25; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); line-height: 1.3; }
h3 { font-size: 1.2rem; line-height: 1.4; }
h4 { font-size: 1rem; }

p {
  color: var(--gris-medio);
  margin-top: 0;
  margin-bottom: 1rem;
}

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

ul { list-style: none; padding: 0; margin: 0; }

/* ── UTILIDADES ── */
.accent            { color: var(--rojo); }
.text-rojo         { color: var(--rojo) !important; }
.bg-rojo           { background: var(--rojo) !important; }
.divider-red       { width: 50px; height: 3px; background: var(--rojo); margin: 14px 0 22px; }
.divider-red.center { margin-left: auto; margin-right: auto; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2  { margin-bottom: 12px; }
.section-title p   { color: var(--gris-medio); max-width: 600px; margin: 0 auto; }

/* ── BOTONES ── */
.btn-h2ur {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  padding: 13px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: all .3s;
  cursor: pointer;
}
.btn-h2ur:hover { background: var(--rojo-oscuro); color: #fff; }

.btn-h2ur-outline {
  display: inline-block;
  background: transparent;
  color: var(--rojo);
  padding: 13px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--rojo);
  transition: all .3s;
}
.btn-h2ur-outline:hover { background: var(--rojo); color: #fff; }

.btn-h2ur-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,.7);
  transition: all .3s;
}
.btn-h2ur-white:hover { background: rgba(255,255,255,.15); color: #fff; }

.btn-wa {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 13px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background .2s;
}
.btn-wa:hover { background: #1fb558; color: #fff; }

/* Botones hero (slider) */
.btn-hero {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: all .3s;
}
.btn-hero:hover { background: transparent; border-color: #fff; color: #fff; }

.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s;
  margin-left: 12px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Botón CTA genérico */
.btn-cta {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  padding: 14px 40px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: background .2s;
}
.btn-cta:hover { background: var(--rojo-oscuro); color: #fff; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--negro);
  padding: 8px 0;
  font-size: 12px;
}
.top-bar a { color: #bbb; }
.top-bar a:hover { color: var(--rojo); }
.top-bar .fa,
.top-bar .fab { color: var(--rojo); margin-right: 4px; }
.top-bar .contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0; margin: 0;
}
.top-bar .social-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0; margin: 0;
  justify-content: flex-end;
}
.top-bar .social-list a { font-size: 15px; }

/* ── NAVBAR ── */
.navbar-h2ur {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  padding: 0;
}
/* Se activa via JS cuando el nav llega al top de la ventana */
.navbar-h2ur.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  animation: slideDown .3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.navbar-h2ur .navbar-brand img { height: 48px; }
.navbar-h2ur .nav-link {
  color: var(--gris-oscuro) !important;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 22px 14px !important;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.navbar-h2ur .nav-link:hover,
.navbar-h2ur .nav-link.active {
  color: var(--rojo) !important;
  border-bottom-color: var(--rojo);
}

/* Hover en desktop — abre al pasar el cursor */
@media (min-width: 992px) {
  .navbar-h2ur .nav-item.dropdown:hover > .dropdown-menu { display: block; }
}

/* Dropdown estándar (Grupos, etc.) */
.navbar-h2ur .dropdown-menu {
  border: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.13);
  padding: 12px 0;
  min-width: 230px;
  margin-top: 0 !important;
}
.navbar-h2ur .dropdown-item {
  font-size: 13px;
  padding: 8px 20px;
  color: var(--gris-oscuro);
  font-weight: 500;
}
.navbar-h2ur .dropdown-item:hover { color: var(--rojo); background: #fff5f5; }

/* ── MEGAMENÚ ── */
.navbar-h2ur .megamenu {
  width: 720px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  border-radius: 0 0 10px 10px;
}
.megamenu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.megamenu-col {
  padding: 24px 20px;
  border-right: 1px solid #f0f0f0;
}
.megamenu-col:last-child { border-right: none; }
.megamenu-col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rojo);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--rojo);
  display: block;
}
.megamenu-col ul { list-style: none; padding: 0; margin: 0; }
.megamenu-col ul li { margin-bottom: 2px; }
.megamenu-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--gris-oscuro);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.megamenu-col ul li a:hover { background: #fff5f5; color: var(--rojo); }
.megamenu-col ul li a i { color: var(--rojo); width: 16px; font-size: 12px; flex-shrink: 0; }

.navbar-h2ur .btn-reserva {
  background: var(--rojo) !important;
  color: #fff !important;
  border-radius: 4px;
  padding: 10px 18px !important;
  margin: 12px 0 12px 10px;
  border-bottom: none !important;
}
.navbar-h2ur .btn-reserva:hover { background: var(--rojo-oscuro) !important; color: #fff !important; }

/* ── HERO PÁGINAS INTERIORES ── */
.page-hero {
  min-height: 520px;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  color: #fff;
  width: 100%;
}
.page-hero-content h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 10px; }
.page-hero-content .subtitle { color: rgba(255,255,255,.88); font-size: 1.05rem; font-weight: 300; }

/* ── HERO CAROUSEL ── */
.hero-slide {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.58) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-content .badge-top {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
}
.carousel-indicators .active { background: var(--rojo); }

/* ── PAGE HERO (páginas interiores) ── */
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-hero-content h1 { color: #fff; margin-bottom: 10px; }
.page-hero-content .breadcrumb-item,
.page-hero-content .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: 13px; }
.page-hero-content .breadcrumb-item.active { color: #fff; }
.page-hero-content .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── SECCIÓN INTRO ── */
.section-intro { padding: 70px 0 50px; background: #fff; }
.section-intro .lead-text { font-size: 15px; line-height: 1.8; }

/* ── STATS BAR ── */
.stats-bar { background: var(--rojo); padding: 30px 0; }
.stat-item  { text-align: center; color: #fff; }
.stat-item .num   { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.stat-item .label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: .85; margin-top: 4px; }

/* ── TARJETAS DE ACTIVIDAD ── */
.actividad-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4/3;
  display: block;
  margin-bottom: 24px;
}
.actividad-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.actividad-card:hover img { transform: scale(1.08); }
.actividad-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%);
  transition: background .3s;
}
.actividad-card:hover .overlay {
  background: linear-gradient(to top, rgba(233,55,53,.85) 0%, rgba(0,0,0,.2) 70%);
}
.actividad-card .info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  color: #fff;
}
.actividad-card .info h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.actividad-card .info p { font-size: 12px; color: rgba(255,255,255,.8); margin: 0; }
.actividad-card .arrow {
  position: absolute;
  right: 20px; bottom: 20px;
  background: var(--rojo);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity .3s;
}
.actividad-card:hover .arrow { opacity: 1; }

/* ── TARJETAS DE GRUPO ── */
.grupo-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: block;
  margin-bottom: 24px;
}
.grupo-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .4s;
}
.grupo-card:hover img { transform: scale(1.05); }
.grupo-card .label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
  padding: 30px 20px 18px;
  color: #fff;
}
.grupo-card .label h3  { color: #fff; font-size: 16px; margin-bottom: 4px; }
.grupo-card .label p   { color: rgba(255,255,255,.8); font-size: 13px; margin: 0; }

/* ── TARJETA GENÉRICA ── */
.card-h2ur {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: box-shadow .3s, transform .3s;
  height: 100%;
}
.card-h2ur:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.13);
  transform: translateY(-4px);
}
.card-h2ur .card-img-top { aspect-ratio: 16/10; object-fit: cover; }
.card-h2ur .card-body    { padding: 22px; }
.card-h2ur .card-title   { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.card-h2ur .card-text    { font-size: 13px; color: var(--gris-medio); }

/* ── ICON BOX ── */
.icon-box {
  background: var(--gris-claro);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: box-shadow .3s;
}
.icon-box:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.icon-box i    { font-size: 2.2rem; color: var(--rojo); margin-bottom: 14px; display: block; }
.icon-box h4   { font-size: 14px; margin-bottom: 6px; }
.icon-box p    { font-size: 12px; margin: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--negro) 0%, #2a2a2a 100%);
  padding: 70px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 30px; }

/* ── PREMIOS ── */
.section-premios {
  background: var(--gris-claro);
  padding: 40px 0;
  text-align: center;
}
.section-premios img {
  height: 80px;
  margin: 0 12px;
  display: inline-block;
  filter: grayscale(30%);
  transition: filter .3s;
  vertical-align: middle;
}
.section-premios img:hover { filter: none; }

/* ── LEADER BANNER ── */
.leader-banner {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.leader-banner .logos img {
  height: 58px;
  margin: 8px 12px;
  display: inline-block;
  filter: grayscale(40%);
  vertical-align: middle;
  transition: filter .3s;
}
.leader-banner .logos img:hover { filter: none; }

/* ── PÁGINA DE ACTIVIDAD (detalle) ── */
.actividad-detail { padding: 60px 0; }
.actividad-detail .info-box {
  background: var(--gris-claro);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}
.actividad-detail .info-box h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rojo);
  margin-bottom: 10px;
}
.precio-box {
  background: var(--rojo);
  color: #fff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}
.precio-box .precio-num { font-size: 3rem; font-weight: 900; line-height: 1; }
.precio-box .precio-label { font-size: 13px; opacity: .85; margin-top: 4px; }

/* ── FORMULARIO RESERVA SIDEBAR (compacto) ── */
.reserva-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0,0,0,.1);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.reserva-card .reserva-head {
  background: var(--rojo);
  padding: 12px 20px;
  text-align: center;
  color: #fff;
}
.reserva-card .reserva-head .reserva-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .9;
  margin-bottom: 4px;
}
.reserva-card .reserva-head .precio-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.reserva-card .reserva-head .desde {
  font-size: 11px;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.reserva-card .reserva-head .precio {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.reserva-card .reserva-head .por-persona {
  font-size: 11px;
  opacity: .85;
}
.reserva-card .reserva-body {
  padding: 16px 18px;
  background: #fff;
}
.reserva-card .pasos-compact {
  font-size: 11px;
  color: #666;
  margin-bottom: 12px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 10px;
}
.reserva-card .pasos-compact div {
  padding: 3px 0;
  display: flex;
  gap: 7px;
  align-items: flex-start;
  line-height: 1.3;
}
.reserva-card .pasos-compact i {
  color: var(--rojo);
  margin-top: 2px;
  flex-shrink: 0;
}
.reserva-card .aviso-normativa {
  background: #fff5f5;
  border: 1px solid #ffd9d9;
  color: var(--rojo);
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.35;
}
.reserva-card .aviso-normativa i { margin-top: 2px; flex-shrink: 0; }
.reserva-card .form-control,
.reserva-card .form-select {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
}
.reserva-card .form-control:focus,
.reserva-card .form-select:focus {
  border-color: var(--rojo);
  box-shadow: 0 0 0 3px rgba(233,55,53,.1);
}
.reserva-card label {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  margin-bottom: 2px;
  display: block;
}
.reserva-card .msg-toggle {
  font-size: 12px;
  color: var(--rojo);
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  display: inline-block;
}
.reserva-card .msg-toggle:hover { opacity: .8; }
.reserva-card .trust-line {
  text-align: center;
  font-size: 10px;
  color: #999;
  margin-top: 8px;
}

/* ── CONTACTO ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
  padding: 40px;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color .2s;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--rojo);
  box-shadow: 0 0 0 3px rgba(233,55,53,.12);
}

/* ── MAPA ── */
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.map-wrapper iframe { display: block; width: 100%; border: none; }

/* ── BREADCRUMB ── */
.breadcrumb-h2ur,
.breadcrumb-bar {
  background: var(--gris-claro);
  padding: 12px 0;
  font-size: 12px;
  border-bottom: 1px solid #e8e8e8;
}
.breadcrumb-h2ur .breadcrumb,
.breadcrumb-bar .breadcrumb { margin: 0; background: none; padding: 0; }
.breadcrumb-h2ur .breadcrumb-item a,
.breadcrumb-bar .breadcrumb-item a { color: var(--gris-medio); }
.breadcrumb-h2ur .breadcrumb-item.active,
.breadcrumb-bar .breadcrumb-item.active { color: var(--rojo); font-weight: 600; }
.breadcrumb-h2ur .breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: #aaa; }

/* ── SIDEBAR ── */
.sidebar-widget {
  background: var(--gris-claro);
  border-radius: 8px;
  padding: 26px;
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rojo);
  display: inline-block;
}
.sidebar-widget ul li {
  padding: 7px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li::before { content: '→ '; color: var(--rojo); font-size: 11px; }
.sidebar-widget ul li a { color: var(--gris-oscuro); }
.sidebar-widget ul li a:hover { color: var(--rojo); }

/* ── FOOTER ── */
footer {
  background: #111;
  color: #aaa;
  padding: 60px 0 0;
  font-size: 13px;
}
footer p { color: #aaa; }
footer a { color: #aaa; }
footer a:hover { color: var(--rojo); }

/* Títulos de columna con línea decorativa */
footer h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 0;
}
footer h4 .head-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--rojo);
  margin-top: 8px;
}

/* Lista de links con línea separadora entre cada item */
.widget-categories ul { list-style: none; padding: 0; margin: 0; }
.widget-categories ul li {
  padding: 8px 0;
  border-bottom: 1px solid #222;
  font-size: 13px;
}
.widget-categories ul li:last-child { border-bottom: none; }
.widget-categories ul li a { color: #aaa; }
.widget-categories ul li a:hover { color: var(--rojo); }

/* Botón newsletter */
.btn-footer-sub {
  display: inline-block;
  background: var(--rojo);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background .2s;
  margin-top: 8px;
  text-decoration: none;
}
.btn-footer-sub:hover { background: var(--rojo-oscuro); color: #fff !important; }

/* Iconos sociales en línea horizontal */
footer .social-icons {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px;
}
footer .social-icons li { display: inline-block; }
footer .social-icons li a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #222; color: #aaa; font-size: 15px;
  transition: background .2s, color .2s;
}
footer .social-icons li a:hover { background: var(--rojo); color: #fff; }

/* Contacto en footer */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #222;
  font-size: 13px;
}
.footer-contact li:last-child { border-bottom: none; }
.footer-contact li i { color: var(--rojo); width: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: #aaa; }
.footer-contact li a:hover { color: var(--rojo); }

/* Copyright */
.copyright-section {
  border-top: 1px solid #222;
  padding: 20px 0;
  margin-top: 20px;
  color: #555;
  font-size: 12px;
}
.copyright-section p { color: #555; margin: 0; }
.footer-nav {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: row; flex-wrap: nowrap; gap: 14px;
  justify-content: flex-end; align-items: center;
}
.footer-nav li { display: inline-block; }
.footer-nav li a { color: #555; font-size: 12px; white-space: nowrap; }
.footer-nav li a:hover { color: var(--rojo); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 24px;
  background: var(--rojo);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { color: #fff; background: var(--rojo-oscuro); }

/* ── HERO CAROUSEL (index) ── */
.hero-carousel { position: relative; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-content .badge-top {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,.45);
}
.carousel-indicators .active { background: var(--rojo); }

/* ── SECCIÓN INTRO ── */
.section-intro { background: #fff; padding: 70px 0 50px; }
.section-intro h2 { font-size: 1.6rem; line-height: 1.4; margin-bottom: 16px; }
.section-intro .lead-text { font-size: 15px; line-height: 1.8; }

/* ── STATS BAR ── */
.stats-bar { background: var(--rojo); padding: 30px 0; }
.stat-item { text-align: center; color: #fff; }
.stat-item .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.stat-item .label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: .85; margin-top: 4px; }

/* ── ACTIVIDADES GRID ── */
.section-actividades { background: var(--gris-claro); padding: 70px 0; }

.actividad-card {
  position: relative; overflow: hidden; border-radius: 8px;
  cursor: pointer; aspect-ratio: 4/3; display: block; margin-bottom: 24px;
}
.actividad-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.actividad-card:hover img { transform: scale(1.08); }
.actividad-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%);
  transition: background .3s;
}
.actividad-card:hover .overlay { background: linear-gradient(to top, rgba(233,55,53,.85) 0%, rgba(0,0,0,.2) 70%); }
.actividad-card .info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; color: #fff; }
.actividad-card .info h3 { color: #fff; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.actividad-card .info p { font-size: 12px; color: rgba(255,255,255,.8); margin: 0; }
.actividad-card .arrow {
  position: absolute; right: 20px; bottom: 20px;
  background: var(--rojo); color: #fff; width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; opacity: 0; transition: opacity .3s;
}
.actividad-card:hover .arrow { opacity: 1; }

/* ── GRUPOS ── */
.section-grupos { background: #fff; padding: 70px 0; }
.grupo-card { border-radius: 8px; overflow: hidden; position: relative; display: block; margin-bottom: 24px; }
.grupo-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .4s; }
.grupo-card:hover img { transform: scale(1.05); }
.grupo-card .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
  padding: 30px 20px 18px; color: #fff;
}
.grupo-card .label h3 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.grupo-card .label p { color: rgba(255,255,255,.8); font-size: 13px; margin: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--negro) 0%, #2a2a2a 100%);
  padding: 70px 0; text-align: center; color: #fff;
}
.cta-banner h2 { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 30px; }

/* ── PREMIOS TRIPADVISOR ── */
.section-premios { background: var(--gris-claro); padding: 40px 0; text-align: center; }
.section-premios img { height: 80px; margin: 0 12px; filter: grayscale(30%); display: inline-block; vertical-align: middle; }
.section-premios img:hover { filter: none; }

/* ── CTA CONTACTO (¿Alguna pregunta?) ── */
.cta-pregunta {
  background: var(--negro);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cta-pregunta .cta-texto { flex: 1; min-width: 200px; }
.cta-pregunta .cta-texto h3 { font-size: 1rem; margin-bottom: 4px; color: #fff; }
.cta-pregunta .cta-texto p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }
.cta-pregunta .contacto-links { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-pregunta .contacto-links a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 4px;
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s; white-space: nowrap; text-decoration: none;
}
.cta-pregunta .contacto-links a:hover { background: var(--rojo); border-color: var(--rojo); color: #fff; }
.cta-pregunta .contacto-links a i { font-size: 14px; }

/* ── CAROUSEL ACTIVIDADES RELACIONADAS ── */
.rel-slider-wrap { overflow: hidden; position: relative; }
.rel-slider {
  display: flex;
  gap: 16px;
  transition: transform .4s ease;
  will-change: transform;
}
.rel-slide {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  text-decoration: none;
}
.rel-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.rel-slide:hover img { transform: scale(1.06); }
.rel-slide .rel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.1));
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
}
.rel-slide h4 { color: #fff; font-size: 14px; margin-bottom: 2px; }
.rel-slide span { color: rgba(255,255,255,.7); font-size: 12px; }
.rel-slide .rel-btn {
  display: inline-block; margin-top: 10px;
  background: transparent; border: 1px solid rgba(255,255,255,.6);
  color: #fff; padding: 6px 14px; border-radius: 3px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .5px;
  transition: background .2s; width: fit-content;
}
.rel-slide:hover .rel-btn { background: var(--rojo); border-color: var(--rojo); }
.rel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: var(--rojo); color: #fff;
  border: none; width: 40px; height: 40px;
  border-radius: 50%; font-size: 24px; line-height: 1;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.rel-arrow:hover { background: var(--rojo-oscuro); }
.rel-prev { left: -8px; }
.rel-next { right: -8px; }
.rel-arrow:disabled { opacity: .35; cursor: default; }

@media (max-width: 991px) {
  .navbar-h2ur .nav-link { padding: 12px 16px !important; border-bottom: none; }
  .navbar-h2ur .megamenu { width: 100%; left: 0; transform: none; }
  .megamenu-inner { grid-template-columns: 1fr; }
  .megamenu-col { border-right: none; border-bottom: 1px solid #f0f0f0; padding: 16px; }
  .hero-slide { min-height: 60vh; }
  .hero-content h1 { font-size: 1.8rem; }
  .stat-item { margin-bottom: 20px; }
  .page-hero { min-height: 240px; }
  .rel-slide { flex: 0 0 calc(33.33% - 11px); }
}
@media (max-width: 767px) {
  .top-bar { display: none; }
  .rel-slide { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 480px) {
  .rel-slide { flex: 0 0 90%; }
}
/* MD: top bar en una línea, sin dirección ni redes */
@media (min-width: 768px) and (max-width: 991px) {
  .top-bar { font-size: 11px; }
  .top-bar .contact-list { gap: 10px; flex-wrap: nowrap; white-space: nowrap; }
  .top-bar .contact-list li:first-child { display: none; }
  .top-bar .social-list { display: none; }
}
@media (max-width: 767px) {
  .section-intro,
  .section-actividades,
  .section-grupos,
  .actividad-detail { padding: 50px 0; }
  .cta-banner { padding: 50px 0; }
  .footer-bottom .footer-nav { justify-content: flex-start; margin-top: 10px; }
  .section-premios img { height: 55px; margin: 6px 8px; }
}
