/*=============================================
=            Variables de Colores             =
=============================================*/
:root {
  --color-primary:    #1A5AA2;
  --color-secondary:  #D31265;
  --color-tertiary:   #007F5F;
  --color-accent:     #F28EB2;
  --bg-light:         #FFF7E8;
  --bg-alt:           #F5F5F5;
  --footer-bg:        #0F3460;
  --text-dark:        #1A5AA2;
  --text-muted:       rgba(26,90,162,0.6);
}

/*=============================================
=               Reset & Base                  =
=============================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.5;
  scroll-behavior: smooth;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/*=============================================
=             Tipografía                      =
=============================================*/
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
}
h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.75rem;
}
.subtitulo {
  font-weight: 300;
}
.section-pretitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 0.5rem;
}

/*=============================================
=                Header                      =
=============================================*/
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo__img {
  width: 40px;
  height: auto;
  margin-right: 0.5rem;
}
.logo__text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.nav {
  display: flex;
  gap: 1.5rem;
}
.nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s;
}
.nav a:hover::after {
  width: 100%;
}
.header__cta {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.header__cta:hover {
  background: #b80f56;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
  }
  .nav--open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
}
/* ─── Forzar el nav siempre visible en desktop ───────────────── */
@media (min-width: 769px) {
  .nav {
    /* Deshacemos cualquier max-height/opacity que viniera de móvil */
    max-height: none !important;
    opacity: 1       !important;
    overflow: visible!important;
    /* Nos aseguramos de que siga usando flex */
    display: flex    !important;
    transition: none !important;
  }
}

/* ─── Transición más suave en los nav links ─────────────────── */
.nav a {
  transition: color 0.3s ease;
}
.nav a::after {
  transition: width 0.5s ease;  /* de 0.3s → 0.5s */
}


/*=============================================
=             Botones                        =
=============================================*/
.btn-primario,
.btn-secundario,
.btn-principal {
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primario {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
}
.btn-primario:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.btn-secundario {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
}
.btn-secundario:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  background: var(--color-secondary);
  color: #fff;
}
.btn-principal {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
.btn-principal:hover {
  background: #b80f56;
}

/*=============================================
=           Preventa (Banner CTA)            =
=============================================*/

.preventa-cta__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.preventa-cta__text {
  font-size: 1.1rem;
  line-height: 1.4;
}
.preventa-cta__text strong {
  font-weight: 700;
}
.preventa-cta__btn {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.preventa-cta__btn:hover {
  background: #b80f56;
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .preventa-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

/*=============================================
=                 Hero                       =
=============================================*/

.hero__img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  top: 50%;
  left: 5%;                   /* pegado al 5% del lateral izquierdo */
  transform: translateY(-50%); /* solo verticalmente */
  width: 45%;                 /* ocupa aproximadamente la mitad izquierda */
  max-width: 500px;           /* evita que sea demasiado ancho en pantallas grandes */
  background: rgba(0,0,0,0.7);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  color: #fff;
  text-align: left;           /* alinea el texto a la izquierda */
  z-index: 10;
}
.hero__overlay h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.hero__overlay h1 span {
  display: block;
  color: var(--color-secondary);
  font-size: 3.5rem;
  margin-top: 0.2rem;
}
.hero__overlay .hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}
.hero__overlay .hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.hero__overlay .hero__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  text-align: left;
}
.hero__overlay .hero__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-size: 1.2rem;
}
.hero__overlay .hero__btn {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.hero__overlay .hero__btn:hover {
  background: #b80f56;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero__overlay {
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2rem 1rem;
  }
}

  .hero__overlay h1 {
    font-size: 2rem;
  }
  .hero__overlay h1 span {
    font-size: 2.25rem;
  }
  .hero__overlay .hero__subtitle {
    font-size: 1rem;
  }
  .hero__overlay .hero__list li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
  }
  .hero__overlay .hero__btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }
}

/* Animación fadeIn */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*=============================================
=      Secciones & Fondos Alternados         =
=============================================*/
section:not(.hero):not(.preventa-cta) {
  padding: 6rem 0;
  background: #fff;
}
section:nth-of-type(odd):not(.hero):not(.preventa-cta) {
  background: var(--bg-alt);
}

/* =========================================
   Sección “¿QUÉ HACEMOS?” – Estilo pulido
   ========================================= */
.que-hacemos {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.que-hacemos .section-pretitle {
  text-align: center;
}
.que-hacemos .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 0.5rem 0 1rem;
  color: var(--text-dark);
}
.que-hacemos .section-copy {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
}
.features-list li i {
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-top: 0.2rem;
}

/* En desktop, dos columnas */
@media (min-width: 768px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*=============================================
=              Destinos                       =
=============================================*/
.grid-destinos {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .grid-destinos {
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  }
}
.card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin: 1rem;
}
.card ul {
  list-style: none;
  padding-left: 1.25rem;
  margin: 0 1rem;
}
.card ul li {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.price {
  font-weight: 600;
  color: var(--color-primary);
  margin: 1rem;
}
.card .btn-secundario {
  margin: 0 1rem 1rem;
}

/*=============================================
=              Confianza / Badges             =
=============================================*/
.confianza .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}
.badge i {
  color: var(--color-secondary);
}

/*=============================================
=              Servicios                      =
=============================================*/
.services-category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  flex: 1 1 260px;
}
.service-card .service-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}
.service-card h4 {
  font-family: 'DM Serif Display', serif;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/*=============================================
=              Miniweek                       =
=============================================*/
.miniweek {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  background: url('img/miniweek-bg.jpg') no-repeat center 20%/cover;
}
.miniweek::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}
.miniweek__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.miniweek h2 {
  margin-bottom: 1rem;
}
.miniweek-copy {
  margin-bottom: 1.5rem;
}

/*=============================================
=              Testimonios                    =
=============================================*/
.grid-testimonios {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .grid-testimonios {
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  }
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}
.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-card h4 {
  font-weight: 600;
}

/*=============================================
=                FAQ                          =
=============================================*/
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0.5rem 0 1rem 0.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/*=============================================
=              Galería                         =
=============================================*/
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  margin-top: 2rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 0.75rem;
}
.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.05);
}

/*=============================================
=               Contacto                      =
=============================================*/
.contacto-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-info {
  flex: 1;
  min-width: 280px;
}
.contact-info h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.contact-form {
  flex: 1;
  min-width: 280px;
  display: grid;
  gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: inherit;
}
.contact-form button {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #b80f56;
}

/*=============================================
=             CTA Sticky                      =
=============================================*/
.cta-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/*=============================================
=                 Footer                      =
=============================================*/
.footer {
  background: var(--color-primary);
  color: #fff;
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}
.footer__heading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.footer__links {
  list-style: none;
  padding: 0;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__links a:hover {
  opacity: 0.8;
}
.footer__address p {
  margin-bottom: 0.5rem;
}
.footer__address a {
  color: #fff;
  text-decoration: none;
}
.footer__social a {
  margin-right: 1rem;
  font-size: 1.25rem;
  color: #fff;
  transition: color 0.3s;
}
.footer__social a:hover {
  color: var(--color-secondary);
}
.footer__bottom {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 2rem;
  padding: 1rem 0;
  text-align: center;
}
.footer__bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}
.footer__bottom a:hover {
  opacity: 0.8;
}
#que-hacemos {
  /* Reduce el padding vertical */
  padding: 2.5rem 0 !important;
  /* Un ligero acento de fondo usando el terciario */
  background: rgba(0,127,95,0.05); /* var(--color-tertiary) al 5% */
}

/* Titular sin tanto margin */
#que-hacemos .section-pretitle {
  margin-bottom: 0.25rem;
}

#que-hacemos .section-title {
  margin: 0 0 0.5rem;  /* menos espacio arriba y abajo */
  font-size: 2.2rem;
  color: var(--color-primary);
  position: relative;
}
/* Línea de acento bajo el título */
#que-hacemos .section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--color-secondary);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Texto descriptivo más pegado */
#que-hacemos .section-copy {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

/* Lista de features: dos columnas en desktop */
.features-list {
  margin: 0 auto;
  max-width: 800px;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
  }
}

/* Iconos uniformes en terciario para no recargar */
.features-list li i {
  color: var(--color-tertiary) !important;
  min-width: 1.5rem;
  text-align: center;
  margin-right: 0.75rem;
}
/* ===================================
   Sección Destinos – Diseño pulido
   =================================== */
.destinos {
  padding: 4rem 0;
}
.destinos .section-pretitle {
  text-align: center;
}
.destinos .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin: 0.5rem 0 0.5rem;
}
.destinos .section-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Grid de cards */
.destinos-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .destinos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.destino-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.destino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.destino-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 4px solid var(--color-secondary);
}
.destino-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.destino-card__body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.destino-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 0;
}

/* Lista de características */
.destino-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.destino-card__list li {
  display: flex;
  align-items: start;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.destino-card__list li i {
  font-size: 1.25rem;
  margin-right: 0.75rem;
  color: var(--color-secondary);
  width: 1.25rem;
  text-align: center;
}

/* CTA final */
.destinos-cta {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.destinos-cta .btn-primario {
  padding: 0.75rem 1.5rem;
}
.destinos-cta .btn-secundario {
  padding: 0.6rem 1.25rem;
}

/* Responsive */
@media (max-width: 767px) {
  .destinos .section-title {
    font-size: 2rem;
  }
  .destinos-grid {
    grid-template-columns: 1fr;
  }
  .destinos-cta {
    flex-direction: column;
  }
  .destinos-cta .btn-secundario {
    margin-top: 0.75rem;
  }
}
/* -----------------------------------
   Sección Confianza – “Con onda”
   ----------------------------------- */
.confianza--vibes {
  /* Degradado suave usando tus colores secundarios y terciarios */
  background: linear-gradient(90deg, rgba(211,49,101,0.1), rgba(0,127,95,0.1));
  padding: 3rem 0;
}
.confianza__tagline {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.confianza__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

/* Badges con fondo blanco, sombra y elevación al hover */
.confianza--vibes .badge {
  background: #fff;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.confianza--vibes .badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.confianza--vibes .badge i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}
.confianza--vibes .badge span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Responsive: centrar contenido en móvil */
@media (max-width: 600px) {
  .confianza__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .confianza__tagline {
    font-size: 1.1rem;
  }
}
/* ===== Trust Section v2 ===== */
.trust-section {
  background: var(--bg-alt);
  padding: 4rem 0;
}
.trust-section__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media(min-width:768px) {
  .trust-section__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* 1. Estadísticas */
.trust-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.2s;
}
.stat:nth-child(2) { animation-delay: 0.4s; }
.stat:nth-child(3) { animation-delay: 0.6s; }
.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.stat__icon {
  margin-left: 0.5rem;
  color: var(--color-secondary);
}
.stat__label {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-dark);
  font-size: 1rem;
}

/* 2. Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.badge {
  background: #fff;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.badge i {
  color: var(--color-primary);
  font-size: 1.25rem;
}
.badge span {
  color: var(--text-dark);
  font-weight: 500;
}

/* 3. Logos */
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-logos img {
  max-height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.trust-logos img:hover {
  opacity: 1;
}

/* Animación fadeInUp */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive ajustes */
@media(max-width:767px) {
  .trust-section__inner {
    grid-template-columns: 1fr;
  }
  .stat {
    margin: 0 auto;
  }
}
/* ===================================
   Trust Section – Enhanced Design
   =================================== */
.trust-section--enhanced {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background: var(--bg-light);
}
/* Fondo gráfico (SVG montañas) */
.trust-bg-graphic {
  position: absolute;
  top: 0; left: 50%;
  width: 120%; height: 100%;
  transform: translateX(-50%);
  opacity: 0.15;
  pointer-events: none;
}
.trust-bg-graphic img {
  width: 100%;
  height: auto;
}

/* Contenedor centrado */
.trust-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Título principal */
.trust-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.75rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.trust-title span {
  display: block;
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Grid de tarjetas: 4 en desktop, flexible en móvil */
.trust-cards {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px;
}

/* Card base */
.trust-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Icono / Logo */
.trust-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.25rem;
}
.trust-logo {
  max-width: 100%;
  max-height: 100%;
  display: block;
  background: none;
}

/* Badges versus stats */
.trust-card--stat {
  flex-direction: column;
  text-align: center;
}
.trust-card--stat .trust-card__icon {
  background: none;
}
.trust-card--stat .trust-card__info {
  margin-top: 0.5rem;
}
.trust-card--stat .trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
}
.trust-card--stat p {
  margin-top: 0.25rem;
  color: var(--text-dark);
  font-size: 1rem;
}

/* Badges */
.trust-card--badge p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 500;
}

/* Colores de icono alternativos */
.bg-primary { background: var(--color-primary) !important; }
.bg-secondary { background: var(--color-secondary) !important; }
.bg-tertiary { background: var(--color-tertiary) !important; }

/* Responsive Adjustments */
@media (max-width: 767px) {
  .trust-title {
    font-size: 2rem;
  }
}
/* Subtítulo para beneficios */
.trust-benefits-title {
  margin: 3rem 0 1.5rem;
  font-size: 1.75rem;
  color: var(--color-primary);
  font-family: 'DM Serif Display', serif;
  text-align: center;
}

/* Grid específico de badges: comprimido un poco */
.trust-cards--badges {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Ajuste de párrafo de badge para no desbordar */
.trust-card--badge p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
}
/* ===================================
   Servicios en los parques & opcionales
   =================================== */
.park-services-section {
  background: var(--bg-alt);
  padding: 4rem 0;
}
.section--alt {
  background: var(--bg-alt);
}

/* Título rosa para esta sección */
.section-title--pink {
  color: var(--color-secondary);
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Grid común para ambas filas */
.services-park-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .services-park-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

/* Tarjeta de servicio */
.service-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

/* Icono en color secundario */
.service-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

/* Título de tarjeta */
.service-card h4 {
  font-family: 'DM Serif Display', serif;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Descripción */
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}
/* ======================================
   Sección “Nuestros servicios” Mejorada
   ====================================== */
.improved-services-section {
  background: var(--bg-alt);
  padding: 5rem 0;
  position: relative;
}
.improved-services-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('img/snow-pattern.svg') center/cover no-repeat;
  opacity: 0.03;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Grid */
.services-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tarjeta */
.service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Icono principal */
.icon-container {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

/* Título y descripción */
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive ajustes */
@media (max-width: 767px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}
/* ==============================
   Sección Miniweek Highlight
   ============================== */

.miniweek-highlight {
  position: relative;
  background-image: url('img/miniweek-bg.jpg');
  background-size: cover;           /* Siempre cubra todo */
  background-position: center 40%;  /* Centra en vertical un poco más arriba */
  background-repeat: no-repeat;
  padding: 8rem 0;                   /* Ajusta el alto mediante padding */
  border-radius: 1rem;
  overflow: hidden;
}

/* Overlay suave para contraste */
.miniweek__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

/* Contenido centrado */
.miniweek__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

/* Tipografía */
.miniweek__title {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.miniweek__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  line-height: 1.4;
}

/* Botón CTA */
.miniweek__btn {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.miniweek__btn:hover {
  background: #b80f56;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .miniweek-highlight {
    padding: 6rem 0;
  }
  .miniweek__title {
    font-size: 2.25rem;
  }
  .miniweek__subtitle {
    font-size: 1rem;
  }
}

/* ----------------------------------
   Sección Miniweek con background
   ---------------------------------- */
.miniweek-highlight {
  position: relative;
  background-image: url('img/miniweek-bg.jpg');
  background-size: cover;           /* Cubre todo el contenedor */
  background-position: center 40%;  /* Centra y sube un poco la imagen */
  background-repeat: no-repeat;
  padding: 8rem 0;                   /* Define la altura con padding */
  border-radius: 1rem;
  overflow: hidden;
}

/* Overlay suave para contraste */
.miniweek__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

/* Contenido centrado */
.miniweek__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

/* ...el resto de tus estilos de título y botón aquí... */
/* ===================================
   Sección Testimonios
   =================================== */
#testimonios {
  padding: 6rem 0;
  background: #fff;
}
.section-title {
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

/* Grid responsivo */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Tarjeta individual */
.testimonial-card {
  background: var(--bg-alt);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Foto circular */
.testimonial-photo {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-secondary);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto del testimonio */
.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Autor */
.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Link a la fuente */
.testimonial-source {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.testimonial-source:hover {
  color: var(--color-primary);
}
/* ===================================
   FAQ Landing (3–5 preguntas clave)
   =================================== */
#faq-landing {
  padding: 4rem 0;
  background: #fff;
}
#faq-landing .section-title {
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
#faq-landing .faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}
#faq-landing .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  position: relative;
  cursor: pointer;
  color: var(--text-dark);
}
#faq-landing .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
#faq-landing .faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
#faq-landing .faq-answer {
  padding: 0.5rem 0 1rem 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.4;
}

/* Contenedor del botón */
.faq-more-btn {
  text-align: center;
  margin-top: 2.5rem;
}
.faq-more-btn .btn-secundario {
  padding: 0.6rem 1.2rem;
}
/* ─── Sección “Somos Vempra” Mejorada ────────────────────────────────────── */

.sobre {
  background: var(--bg-alt);
  padding: 4rem 0;
  position: relative;
}

/* Grid invertido: imagen a la izquierda */
.sobre__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

/* Decoración de fondo junto a la imagen */
.sobre__image {
  position: relative;
}
.sobre__image::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 120%;
  height: 80%;
  background: var(--color-primary);
  opacity: 0.08;
  border-radius: 2rem;
  z-index: 0;
}
.sobre__image img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  display: block;
  z-index: 1;
}

/* Texto */
.sobre__text {
  position: relative;
  z-index: 1;
}
.sobre__text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.75rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  position: relative;
}
.sobre__text h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  background: var(--color-tertiary);
  margin-top: 0.5rem;
  border-radius: 2px;
}
.sobre__text p {
  color: var(--text-dark);
  opacity: 0.85;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1rem;
}

/* Responsive: apilar en móvil */
@media (max-width: 768px) {
  .sobre__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sobre__image::before {
    display: none;
  }
}
/* ─── Sección “Somos Vempra” con CTA ────────────────────────────────────── */
.sobre {
  background: var(--bg-alt);
  padding: 4rem 0;
}
.sobre__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

/* Imagen con fondo abstracto */
.sobre__image {
  position: relative;
}
.sobre__image::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 120%;
  height: 80%;
  background: var(--color-primary);
  opacity: 0.08;
  border-radius: 2rem;
  z-index: 0;
}
.sobre__image img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  z-index: 1;
}

/* Texto */
.sobre__text {
  position: relative;
  z-index: 1;
}
.sobre__text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.75rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  position: relative;
}
.sobre__text h2 span {
  color: var(--color-primary);
}
.sobre__text h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  background: var(--color-tertiary);
  margin: 0.5rem 0 1rem;
  border-radius: 2px;
}
.sobre__text p {
  color: var(--text-dark);
  opacity: 0.85;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Botón de llamada a la acción */
.btn-sobre {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.btn-sobre:hover {
  background: #b80f56;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .sobre__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sobre__image::before {
    display: none;
  }
  .sobre__text h2 {
    font-size: 2.25rem;
  }
  .btn-sobre {
    width: 100%;
    text-align: center;
  }
}
/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  z-index: 999;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: #fff;
  margin-top: 0.75rem;
  font-size: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}
/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  z-index: 999;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-img {
  max-width: 90%; max-height: 80%;
  border-radius: .5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  margin: 1rem 0;
}
.lightbox-caption {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  margin-top: .5rem;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 2rem;
  color: #fff;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.4);
}
/* Footer */
.footer {
  background: var(--color-primary);
  color: #fff;
  position: relative;
  padding-top: 3rem;
  overflow: hidden;
}
.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 2rem;
  padding: 0 0 2rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
}
.footer__heading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #FFF;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 0.75rem;
}
.footer__links a {
  color: #E0E7FF;
  text-decoration: none;
  transition: color .3s;
}
.footer__links a:hover {
  color: var(--color-accent);
}
.footer__address p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}
.footer__address i {
  margin-right: 0.5rem;
  color: var(--color-accent);
}
.footer__address a {
  color: #E0E7FF;
  text-decoration: none;
}
.footer__address a:hover {
  text-decoration: underline;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  font-size: 1.5rem;
  color: #E0E7FF;
  transition: color .3s;
}
.footer__social a:hover {
  color: var(--color-accent);
}
/* Iconos Google/Tripadvisor */
.footer__icon-small {
  width: 20px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Sticky CTA */
.footer__cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--color-secondary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform .2s;
  z-index: 200;
}
.footer__cta:hover {
  transform: scale(1.05);
}

/* Línea de cierre */
.footer__bottom {
  background: var(--footer-bg);
  text-align: center;
  padding: 1rem 0;
}
.footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #E0E7FF;
}
.footer__bottom a {
  color: #fff;
  text-decoration: underline;
  transition: opacity .3s;
}
.footer__bottom a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
  .footer__cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
  }
}

.nav {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease-out,
    opacity    0.5s ease-out;
}

.nav--open {
  max-height: 500px;  /* ajusta según tu número de enlaces */
  opacity: 1;
}
/* ─── Ajustes para móvil ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Márgenes laterales en todo el contenedor */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Un poco de padding en overlays y secciones de texto */
  .hero__overlay,
  .sobre__text,
  .section-header,
  .section-copy,
  .testimonial-text,
  .testimonials-grid,
  .faq-landing {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Imágenes 100% ancho, altura automática */
  img,
  .hero__img,
  .destino-card__img,
  .sobre__image img,
  .gallery-item img,
  .testimonial-photo img {
    max-width: 100%;
    height: auto !important;
  }

  /* Ajusta altura fija de thumbs de galería */
  .gallery-item img {
    height: auto;
  }

  /* Reduce márgenes de títulos en móvil */
  h1, h2, h3 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
/* ─── Ajustes Header y Nav para móvil ───────────────────────────────────────── */
@media (max-width: 768px) {
  .header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }

  .logo {
    flex: 1 1 auto;
  }

  .menu-btn {
    order: 2;
    flex: 0 0 auto;
  }

  .header__cta {
    order: 3;
    flex: 1 1 100%;
    margin: 0.5rem 1rem;
    text-align: center;
    white-space: nowrap;      /* evita saltos de línea */
    overflow: hidden;
  }

  /* Móvil: oculta nav por defecto y transición suave */
  .nav {
    order: 4;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
  }
  .nav--open {
    max-height: 500px;      /* suficiente para varias líneas */
    opacity: 1;
  }
  .nav a {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
  }
}
/* ─── 1) Empujamos el hero hacia abajo según altura de header + banner ─────────────────── */


/* ─── 2) Contenido móvil: márgenes y fotos fluidas ───────────────────────────────── */
@media (max-width: 768px) {
  /* un poco de espacio a los containers en móvil */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* todas las imágenes nunca saldrán del ancho de su padre */
  img {
    max-width: 100%;
    height: auto !important;
    display: block;
  }
}

/* ================================
   1) Banner sticky bajo el header
   ================================ */
:root {
  --header-h: 4rem; /* ajusta si tu header cambia de altura */
}


/* ================================
   2) Hero en flujo normal
   ================================

/* ==========================================
   3) Imágenes y contenedores fluidos en móvil
   ========================================== */
@media (max-width: 768px) {
  /* Padding lateral general */
  .container {
    padding: 0 1rem;
  }

  /* Fotos siempre 100% ancho, auto alto */
  img,
  .hero__img,
  .destino-card__img,
  .sobre__image img,
  .gallery-item img,
  .testimonial-photo img {
    width: 100%;
    height: auto !important;
    display: block;
  }
}
:root {
  --header-height: 4rem;  /* ajusta si tu header cambia de alto */
  --banner-height: 4rem;  /* altura real de tu banner de preventa */
}

/* 1) El banner queda “sticky” justo bajo el header */

/* 2) Empujamos todo el hero hacia abajo (header + banner) */

/* 3) Aseguramos que el overlay quede por encima de todo */


/* 4) En móvil, fotos y contenedores fluidos */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  img,
  .hero__img,
  .destino-card__img,
  .sobre__image img,
  .gallery-item img,
  .testimonial-photo img {
    width: 100%;
    height: auto !important;
    display: block;
  }
}
/* --------------------------------------------------
   1) Sólo el header permanece sticky arriba
-------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* --------------------------------------------------
   2) El banner se comporta en flujo normal
      (quita cualquier position:sticky o z-index alto
       que le hayas puesto antes)
-------------------------------------------------- */

/* --------------------------------------------------
   3) Empuja el hero justo debajo del banner
      (header≈4rem + banner≈3.5rem = 7.5rem en total)
-------------------------------------------------- */


/* --------------------------------------------------
   4) Asegura que tu overlay / H1 flote por encima
-------------------------------------------------- */


/* --------------------------------------------------
   5) Ajusta la altura de la imagen para no desbordar
-------------------------------------------------- */


/* --------------------------------------------------
   6) Móvil: imágenes y contenedores fluidos
-------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  img,
  .hero__img,
  .destino-card__img,
  .sobre__image img,
  .gallery-item img,
  .testimonial-photo img {
    max-width: 100%;
    height: auto !important;
    display: block;
  }
}

:root {
  --header-height: 4rem;   /* altura real de tu header */
  --banner-height: 3.5rem; /* altura real de tu banner de preventa */
}

/* 1) Header sticky normal */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}



/* 6) Móvil: imágenes fluidas y padding lateral */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  img,
  .hero__img,
  .destino-card__img,
  .sobre__image img,
  .gallery-item img,
  .testimonial-photo img {
    width: 100%;
    height: auto !important;
    display: block;
  }
}
:root {
  --header-height: 4rem;   /* altura real de tu header */
  --banner-height: 2em; /* altura real de tu banner de preventa */
}

/* 1) Header sticky normal */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 2) Banner en flujo (no sticky) */
.preventa-cta {
  position: static !important;
  z-index: auto !important;
}

/* 3) Empuja el hero justo debajo de header + banner */
.hero {
  margin-top: calc(var(--header-height) + var(--banner-height)) !important;
}

/* 4) Overlay siempre encima */
.hero__overlay {
  z-index: 1001 !important;
}

/* 5) Ajuste de la imagen para no desbordar */
.hero__img {
  height: calc(90vh - (var(--header-height) + var(--banner-height))) !important;
}

/* 6) Móvil: imágenes fluidas y padding lateral */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  img,
  .hero__img,
  .destino-card__img,
  .sobre__image img,
  .gallery-item img,
  .testimonial-photo img {
    width: 100%;
    height: auto !important;
    display: block;
  }
}
:root {
  --header-h: 4rem; /* sustituye por la altura real de tu header */
}

/* 1) Header sticky normal */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 2) Banner de preventa sticky justo bajo el header */
.preventa-cta {
  position: sticky;
  top: var(--header-h);
  z-index: 900; /* tiene que quedar encima del hero y debajo del header */
}

/* 3) Hero en flujo normal (sin margin hacks) */
.hero {
  position: relative;
  margin-top: 0 !important;
}

/* 4) Overlay sobre la imagen pero bajo el banner */
.hero__overlay {
  position: absolute;
  /* tu posicionamiento ya está bien; sólo le aseguramos un z-index bajo */
  z-index: 100; 
}

/* 5) Imágenes siempre fluidas en móvil */
@media (max-width: 768px) {
  img,
  .hero__img {
    width: 100%;
    height: auto !important;
    display: block;
  }
}
/* ———————————————————————————————————————————
   Ajustes definitivos para header, banner y hero
   ——————————————————————————————————————————— */

/* 1) Define aquí el alto real de tu header y de tu banner */
:root {
  --hdr-h: 70px;  /* <-- sustituye 70px por la altura real de tu header */
  --bnr-h: 50px;  /* <-- sustituye 50px por la altura real de tu banner */
}

/* 2) Header siempre sticky arriba */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 3) Banner justo debajo del header */
.preventa-cta {
  position: sticky;
  top: var(--hdr-h);
  z-index: 900;
  background: var(--bg-light);
}

/* 4) Ajusta la imagen del hero para que ocupe el viewport restante */
.hero__img {
  width: 100%;
  /* resto de la pantalla menos header y banner */
  height: calc(100vh - var(--hdr-h) - var(--bnr-h)) !important;
  object-fit: cover;
}

/* 5) Contenedor hero en flujo normal */
.hero {
  position: relative;
  margin: 0;
  z-index: 1;
}

/* 6) Overlay encima de la img, pero **por debajo** del banner */
.hero__overlay {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 100; /* < 900 */
}

/* ———————————————————————————————————————————
   Comportamiento en móvil (<768px)
   ——————————————————————————————————————————— */
@media (max-width: 768px) {
  /* Banner vuelve al flujo normal */
  .preventa-cta {
    position: static !important;
    margin-bottom: 1rem;
  }

  /* Hero img crece de forma natural */
  .hero__img {
    height: auto !important;
    max-height: 90vh;
  }

  /* Overlay dentro del flujo */
  .hero__overlay {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 1rem !important;
    width: auto !important;
    max-width: 90% !important;
  }

  /* Todas las imágenes fluidas */
  img,
  .hero__img {
    width: 100%;
    height: auto !important;
    display: block;
  }
}





