/* ==========================================================
   VARIABLES — paleta extraída del isologo de Abra Ancha
=========================================================== */
:root {
  --azul: #1B2464;        /* azul del wordmark del logo */
  --azul-2: #2A3690;       /* variante más clara para hover/gradientes */
  --azul-osc: #10163F;     /* azul casi negro, para fondos oscuros/footer */
  --verde: #7CAC3C;        /* verde del ícono de la balsa en el logo */
  --verde-2: #5F8A2B;      /* variante oscura del verde, para contraste de texto */
  --verde-osc: #21403A;    /* verde-bosque de la franja superior del logo */
  --crema: #F4F1E7;        /* fondo neutro cálido (reemplaza el celeste frío) */
  --blanco: #fff;
  --texto: #202230;
  --texto-suave: #55575f;
  --sombra: 0 4px 16px rgba(16, 22, 63, .14);
  --sombra-fuerte: 0 10px 28px rgba(16, 22, 63, .22);
  --radio: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu;
  color: var(--texto);
  background: var(--crema);
  line-height: 1.65;
}

h1, h2, h3, .logo-text {
  font-family: 'Baloo 2', 'Poppins', system-ui, sans-serif;
  letter-spacing: .2px;
}

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

/* ==========================================================
   LOADER
=========================================================== */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--azul-osc);
  z-index: 2000;
  opacity: 1;
  transition: opacity .3s ease, visibility .3s ease;
}

body.loaded #loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==========================================================
   LOGO FIJO
=========================================================== */
.logo-fixed {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: top .45s cubic-bezier(.2, .8, .2, 1), left .45s cubic-bezier(.2, .8, .2, 1), transform .45s cubic-bezier(.2, .8, .2, 1), opacity .35s ease;
}

.logo-fixed img {
  width: clamp(82px, 9.5vw, 110px);
  height: auto;
  max-height: 72px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: 0 8px 20px rgba(16, 22, 63, 0.16);
  border: 1px solid rgba(27, 36, 100, 0.08);
  transition: width .45s cubic-bezier(.2, .8, .2, 1), transform .35s ease, box-shadow .35s ease;
}

.logo-fixed img:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 24px rgba(16, 22, 63, 0.2);
}

.logo-fixed.is-fixed {
  top: 12px;
  left: 12px;
}

.logo-fixed.is-fixed img {
  width: clamp(58px, 6.5vw, 74px);
  max-height: 58px;
}

@media (max-width: 700px) {
  .logo-fixed {
    top: 10px;
    left: 10px;
  }

  .logo-fixed img {
    width: clamp(66px, 11vw, 84px);
    padding: 6px;
  }

  .logo-fixed.is-fixed img {
    width: clamp(50px, 9vw, 64px);
  }
}

/* ==========================================================
   HERO
=========================================================== */
.hero {
  background-image: url('https://res.cloudinary.com/dph6jbszd/image/upload/f_auto,q_auto,w_1600/v1787421152/393D549D-E655-40BA-806B-D4810A7D6577_2_jqbeks.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--azul-osc);
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
  position: relative;
  isolation: isolate;
  transition: background-image 1s ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,22,63,.35), rgba(16,22,63,.75)),
              linear-gradient(120deg, rgba(124,172,60,.28), transparent 55%);
  z-index: -1;
}

.hero .overlay {
  padding: 40px 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,.55);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--blanco);
}

.hero p {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #EDEFE0;
}

/* Ola decorativa al pie del hero, tomada del ícono del logo */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ==========================================================
   NAVBAR
=========================================================== */
.navbar {
  background: var(--azul);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(16,22,63,.18);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.navbar a {
  color: var(--blanco);
  font-weight: 500;
  text-decoration: none;
  transition: .25s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.navbar a:hover {
  color: var(--verde);
  border-bottom-color: var(--verde);
}

.navbar #link-contacto {
  background: var(--verde);
  color: var(--azul-osc);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  border-bottom: none !important;
}

.navbar #link-contacto:hover {
  background: #8fc24a;
  color: var(--azul-osc);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  height: 3px;
  width: 26px;
  background: var(--blanco);
  border-radius: 2px;
}

/* ==========================================================
   SECCIONES
=========================================================== */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: 90px;
}

.section h2 {
  color: var(--azul);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 6px;
}

.section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--verde);
  border-radius: 4px;
  margin: 12px auto 20px;
}

.subtitulo {
  color: var(--texto-suave);
  max-width: 600px;
  margin: 0 auto 20px;
}

.bg-light {
  background: linear-gradient(180deg, var(--blanco), #EAF1E6);
  position: relative;
}

/* Divisor tipo río entre bloques de sección */
.river-divider {
  line-height: 0;
}

.river-divider svg {
  width: 100%;
  height: 46px;
  display: block;
}

/* ==========================================================
   LISTA INCLUYE
=========================================================== */
.lista-incluye {
  text-align: left;
  padding-left: 20px;
  margin-top: 10px;
}

.lista-incluye li {
  margin-bottom: 6px;
}

.card-content h4 {
  text-align: center;
  color: var(--azul);
  font-family: 'Baloo 2', sans-serif;
  margin-top: 28px;
  margin-bottom: 12px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content .lista-incluye {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

/* ==========================================================
   CARDS
=========================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.cards .card {
  background: var(--blanco);
  border-radius: var(--radio);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sombra);
  transition: .25s;
  border: 1px solid rgba(16,22,63,.06);
  text-align: left;
}

.cards .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-fuerte);
}

.card-content {
  padding: 18px 20px 24px;
}

.card-content h3 {
  color: var(--azul);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.cards-gallery .card {
  box-shadow: none !important;
  border: none !important;
  padding: 0;
}

.activity-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 24px;
}

.activity-tab {
  border: 1px solid rgba(27, 36, 100, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--azul);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 2px 8px rgba(16,22,63,0.06);
}

.activity-tab:hover,
.activity-tab.active {
  background: linear-gradient(135deg, var(--azul), var(--azul-2));
  color: var(--blanco);
  box-shadow: 0 12px 22px rgba(27, 36, 100, 0.18);
  transform: translateY(-2px);
}

.activity-panels {
  position: relative;
}

.activity-panel {
  display: none;
}

.activity-panel.active {
  display: block;
}

.cards-actividades {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.cards-actividades .card {
  background: linear-gradient(180deg, #ffffff, #f5f7f1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16,22,63,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 760px) {
  .cards-actividades {
    grid-template-columns: 1fr;
  }

  .cards-actividades .card .card-content {
    min-height: unset;
  }
}

.cards-actividades .card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--verde), var(--azul), var(--verde));
  opacity: 0.9;
}

.cards-actividades .card .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 620px;
}

.cards-actividades .card .card-content .lista-incluye {
  margin-bottom: auto;
  flex: 1;
}

.activity-card .card-content > p:last-of-type {
  min-height: 98px;
  margin-bottom: 0;
}

.activity-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(1.05);
}

.activity-tag {
  display: inline-block;
  background: rgba(124, 172, 60, 0.12);
  color: var(--verde-2);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
  margin: 0 0 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--verde);
  color: var(--azul-osc);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(124, 172, 60, 0.16);
  transition: .25s ease;
}

.btn-whatsapp:hover {
  background: #8fc24a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(124, 172, 60, 0.2);
}

.activity-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(234,241,230,0.82));
  border: 1px solid rgba(27,36,100,0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(16,22,63,0.08);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--sombra);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px 8px;
}

.feature-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--azul);
  margin: 12px 0 10px;
  line-height: 1.1;
}

.feature-copy p {
  color: var(--texto-suave);
}

.feature-copy .btn-whatsapp {
  margin-top: auto;
}

.compact-list {
  margin-top: 16px;
  margin-bottom: 8px;
}

.activity-placeholder {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 22px 24px;
  background: linear-gradient(135deg, #f4f1e7 0%, #ebf1e7 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(27, 36, 100, 0.07);
  border-radius: var(--radio);
}

.badge {
  display: inline-block;
  width: fit-content;
  background: rgba(27, 36, 100, 0.1);
  color: var(--azul);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.activity-placeholder h3 {
  margin: 16px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--azul);
}

.activity-placeholder p {
  color: var(--texto-suave);
  margin: 0 0 18px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(55px, 1fr));
  gap: 10px;
  margin: 10px 0 18px;
}

.time-box {
  background: var(--blanco);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(16,22,63,0.08);
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1.2;
}

.time-box small {
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
}

.placeholder-note {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--azul);
}

@media (max-width: 760px) {
  .activity-feature {
    grid-template-columns: 1fr;
  }

  .feature-image img {
    min-height: 260px;
  }
}

/* ==========================================================
   MEDIDOR DE INTENSIDAD (elemento distintivo)
   Escala real de clases de rápidos I–V; cada circuito
   resalta el tramo que efectivamente navega.
=========================================================== */
.gauge {
  margin: 14px 0 4px;
}

.gauge-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: 600;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.gauge-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  height: 10px;
}

.gauge-track span {
  background: #E3E1D5;
  border-radius: 4px;
}

.gauge-track span.activo {
  background: linear-gradient(90deg, var(--verde), var(--azul));
}

.gauge-clases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 4px;
  font-size: .72rem;
  color: var(--texto-suave);
  text-align: center;
}

.gauge-clases span.activo {
  color: var(--azul);
  font-weight: 700;
}

/* ==========================================================
   GALERÍA
=========================================================== */
.cards-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.cards-gallery img {
  height: 220px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  cursor: zoom-in;
  transition: .3s;
}

.cards-gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--sombra-fuerte);
}

/* Galería apilada con aparición en scroll — solo mobile */
@media (max-width: 700px) {
  .cards-gallery {
    display: block;
  }

  .cards-gallery .card {
    position: sticky;
    top: 88px;
    height: 62vh;
    margin-bottom: 28px;
    border-radius: var(--radio);
    overflow: hidden;
    background: var(--blanco);
    box-shadow: var(--sombra-fuerte) !important;
    opacity: 0;
    transform: translateY(50px) scale(.96);
    transition: opacity .5s ease, transform .5s ease;
  }

  .cards-gallery .card:last-child {
    margin-bottom: 0;
  }

  .cards-gallery .card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .cards-gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: var(--radio);
  }
}

/* ==========================================================
   LIGHTBOX
=========================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16,22,63,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  z-index: 3000;
}

.lightbox.hidden {
  display: none;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radio);
  box-shadow: 0 0 20px rgba(255,255,255,0.25);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 42px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: .3s;
}

.lightbox-close:hover {
  transform: scale(1.15);
  color: var(--verde);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: .3s;
}

#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }

.lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.15);
  color: var(--verde);
}

/* ==========================================================
   VIDEO
=========================================================== */
.video-presentacion {
  width: min(90vw, 480px);
  aspect-ratio: 4/5;
  margin: 25px auto 0;
  border-radius: var(--radio);
  box-shadow: var(--sombra-fuerte);
  border: 4px solid var(--blanco);
}

/* ==========================================================
   OPINIONES
=========================================================== */
.opiniones-container {
  width: 100%;
  overflow-x: auto;
}

.opiniones-track {
  display: flex;
  gap: 20px;
  padding: 10px;
}

.op-card {
  flex: 0 0 280px;
  height: 280px;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid rgba(16,22,63,.06);
}

.op-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================
   UBICACIÓN
=========================================================== */
#ubicacion .btn-map {
  display: inline-block;
  margin: 15px 0 25px;
  padding: 12px 24px;
  background: var(--verde);
  color: var(--azul-osc);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: .25s;
}

#ubicacion .btn-map:hover {
  background: #8fc24a;
  transform: translateY(-2px);
}

.mapa-circuito iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}

/* ==========================================================
   BOTONERA FLOTANTE
=========================================================== */
.social-toggle {
  position: relative;
  z-index: 1200;
}

#toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 0;
  background: var(--verde);
  color: var(--azul-osc);
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--sombra);
  transition: bottom .35s ease, right .35s ease, transform .25s ease, background .25s ease;
}

#toggle-btn:hover {
  background: #8fc24a;
  transform: scale(1.08);
}

.contact-label {
  position: fixed;
  bottom: 20px;
  right: 95px;
  background: rgba(16,22,63,.75);
  color: var(--blanco);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  backdrop-filter: blur(4px);
  transition: bottom .35s ease, right .35s ease, opacity .5s ease;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.contact-label.visible {
  opacity: 1;
}

.contact-label.is-idle {
  opacity: .4;
}

.social-toggle:hover .contact-label,
.social-toggle:focus-within .contact-label {
  opacity: 1;
}

.social-floating {
  position: fixed;
  bottom: 85px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: bottom .35s ease, right .35s ease;
}

.social-floating[hidden] {
  display: none;
}

.social-floating a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blanco);
  font-size: 20px;
  text-decoration: none;
  box-shadow: var(--sombra);
  transition: .2s;
}

.social-floating a:hover {
  transform: scale(1.08);
  opacity: .92;
}

.wp { background: #25D366; }
.ig { background: #E1306C; }
.em { background: #444; }
.ph { background: var(--azul); }
.fb { background: #1877F2; }

/* ==========================================================
   BOTÓN SCROLL UP
=========================================================== */
#btnUp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--blanco);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  box-shadow: var(--sombra-fuerte);
}

#btnUp.show {
  opacity: 1;
  visibility: visible;
}

#btnUp:hover {
  background: var(--verde);
  color: var(--azul-osc);
}

/* ==========================================================
   FOOTER
=========================================================== */
footer {
  background: var(--azul-osc);
  color: var(--blanco);
  text-align: center;
  padding: 22px 0;
}

footer .footer-ig {
  color: var(--verde);
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  transition: .3s;
}

footer .footer-ig:hover {
  color: #8fc24a;
  transform: scale(1.05);
}

/* ==========================================================
   RESPONSIVE
=========================================================== */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 16px;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--azul);
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
    display: none;
  }

  .navbar ul.show {
    display: flex;
    gap: 6px;
  }

  .navbar ul a {
    display: inline-block;
    padding: 12px 22px;
  }

  .navbar #link-contacto {
    margin-top: 6px;
  }

  .logo-fixed {
    top: 12px;
    transform: scale(.9);
  }
}

@media (max-width: 600px) {
  .hero { min-height: 80vh; }
  .hero .overlay { padding: 32px 22px; }
  .mapa-circuito iframe { min-height: 300px; }
  .gauge-clases { font-size: .64rem; }

  .section {
    padding: 56px 22px;
  }

  .section h2 {
    margin-bottom: 10px;
  }

  .card-content {
    padding: 20px 22px 26px;
  }

  .activity-tabs {
    gap: 10px;
  }

  .activity-tab {
    padding: 11px 18px;
  }

  .lista-incluye li {
    margin-bottom: 9px;
  }

  .cards-actividades,
  .cards-gallery {
    gap: 18px;
  }

  .btn-whatsapp {
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .lightbox-arrow { font-size: 40px; }

  .section {
    padding: 48px 18px;
  }
}



/* ==========================================================
   PANEL KAYAK — hereda el lenguaje visual de las tarjetas
=========================================================== */
.feature-copy .activity-tag { margin: 0 0 12px; }

.feature-copy .gauge { margin: 4px 0 20px; }

.feature-copy p { margin: 0 0 10px; }

.feature-copy p strong { color: var(--azul); }

.feature-copy .nota-requisito {
  color: var(--azul);
  font-weight: 600;
  margin: 14px 0 0;
}

.feature-copy h4 {
  text-align: center;
  color: var(--azul);
  font-family: 'Baloo 2', sans-serif;
  margin: 26px 0 12px;
}

.feature-copy .lista-incluye {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0 0 22px;
}