/* ============================================
   RESET BÁSICO
   ============================================ */
html, body {
  margin: 0;
  padding: 0;
  line-height: 1;
}



/* ============================================
   NAVBAR
   ===========================================*/
body {
  padding-top: 95px; 
}

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white !important;
  height: 75px;
  padding: 0 2rem;
  border-bottom: 1px solid #ddd;
}

.navbar-logo img.logo {
  height: 45px;
  object-fit: contain;
}

.custom-navbar .nav-link {
  color: #000 !important;
  font-weight: 500;
  margin: 0 0.75rem;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #df9f13 !important;
  font-weight: 700;
}

.navbar-icons a {
  color: #ccc;
  transition: color 0.3s;
}
.navbar-icons a:hover {
  color: #df9f13;
}


.dropdown-menu {
  font-size: 0.9rem;
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #ffffff7e;
  color: #000000c0;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
}
.site-footer a {
  color: #ddd;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.footer-logo {
  max-width: 180px;
  margin-bottom: 1rem;
}
.footer-title {
  color: #000000f6;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.footer-col p {
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-weight: 300;
}
.footer-divider {
  border-top: 1px solid rgba(32, 32, 32, 0.769);
  margin: 1.5rem 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.footer-bottom .brand-name {
  font-weight: 700;
}
.whatsapp-icon .fa-whatsapp{
  color: #000000;
  font-size: 1.75rem;
}
.whatsapp-icon :hover{
  color: #25d366;
  font-size: 1.75rem;
}
.social-circle {
  margin-top: 1rem;
}
.social-circle a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #fff;
  color: #000000;
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: background 0.3s;
}
.social-circle a:hover {
  background: #df9f13;
  color: #fff;
}


/* ============================================
   DESTINOS
   ============================================ */

.destinos-principales .underline {
  width: 80px;
  height: 2px;
  background: #df9f13;
  margin: 0 auto;
}
.bg-gradient-dark {
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.underline-white {
  width: 40px;
  border: 1px solid #fff;
  margin: 4px 0 0;
}

/* ————— TARJETAS IGUAL TAMAÑO ————— */
.destino-card {
  height: 400px;           /* aquí defines la altura fija */
  overflow: hidden;        /* recorta el exceso */
}

.destino-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* cubre todo el contenedor recortando */
  transition: transform 0.3s ease; /* opcional: zoom al hover */
}

.destino-card:hover .card-img {
  transform: scale(1.05);
}

/* ————— ENVOLTORIO <a> A ALTURA COMPLETA ————— */
.destino-card > a {
  display: block;    /* bloque para que width:100% pase al <a> */
  height: 100%;      /* iguala la altura fija de la tarjeta (300px) */
}



/* Asegura que todas las imágenes del carrusel tengan la misma altura */
#viajesModaCarousel .card-img-top {
  height: 200px;           /* el alto que quieras para todas */
  object-fit: cover;       /* recorta y centra la imagen */
}
#viajesModaCarousel .card {
  display:               flex;
  flex-direction:        column;
  height:                350px; /* total:  imagen (200px) + body (150px) */
  overflow:              hidden;
}

#viajesModaCarousel .card-body {
  flex:                  1;     /* toma todo el espacio restante */
  overflow:              auto;  /* si el texto es muy largo, permite scroll */
}

#viajesModaCarousel {
  position: relative;
}


/* ============================================
   VIAJES DE MODA (LO MAS VENDIDO)
   ============================================ */
   /* CONTENEDOR GENERAL */
/* CONTENEDOR GENERAL */
.viajes-moda .underline {
  width: 80px;
  height: 2px;
  background: #df9f13;
  margin: 0 auto;
}
.viajes-moda .items-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 300px;
  gap: 0; /* Sin separación */
  padding: 0;
  margin: 0;
}

/* CADA TARJETA */
.paquete {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
}

/* IMAGEN AJUSTADA */
.paquete img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ETIQUETA "En oferta" */
.etiqueta-oferta {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #df9f13;
  color: white;
  padding: 6px 14px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
  border-radius: 0;
}

/* OVERLAY HOVER */
.moda-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

.paquete:hover .moda-overlay {
  opacity: 1;
}

.moda-overlay .title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.moda-overlay .price {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.moda-overlay .price del {
  color: #999;
  margin-left: 0.5rem;
}

.btn-comprar {
  background-color: #df9f13;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-comprar:hover {
  background-color: #c4880c;
}




/* ============================================
   PORQUE ELEGIR
   ============================================ */
   /* (o) separación antes de la sección siguiente */
.por-que-elegir {
  margin-top: 4rem;
}
/* Línea roja bajo los títulos de sección */
.por-que-elegir .underline {
  width: 60px;
  height: 3px;
  background-color: #df9f13;
}

/* Ajustes de texto */
.por-que-elegir h2 {
  font-size: 2rem;
  font-weight: 600;
}

.por-que-elegir h4 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}

.por-que-elegir p {
  color: #555;
  line-height: 1.6;
}


/* ============================================
   estilos yuracyacu
   ============================================ */
   :root {
    --header-height: 70px;
  }
/* Hero / Cabecera */
.hero {
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  position: relative;
  top: calc(-1 * var(--header-height));  /* lo sube justo bajo el header */
  z-index: 0;
}
/* 1) Empuja todo el contenido (incluido el .hero) justo debajo de la barra fija */
body {
  padding-top: var(--header-height);
}
/* 2) Haz transparente el fondo del navbar en esta página */
header.fixed-top {
  background-color: transparent !important;
  /* opcional: si tu navbar tiene sombra o borde, quítalo también */
  box-shadow: none !important;
}
.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.4);
}
  .hero h1 {
  transform: translateY(100%);  /* mueve el texto un 20% hacia abajo */
  position: relative;
  z-index: 1;
  }

  /* Línea roja bajo títulos */
  .section-underline {
    width: 60px;  
    border-top: 3px solid #ff0213;
    margin: .5rem auto 2rem;
  }

  /* Tarjetas de experiencia */
  .experience-card {
    border: none;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,0.075);
    transition: transform .3s;
    cursor: pointer;
  }
  .experience-card:hover {
    transform: translateY(-5px);
  }


  /* 1) Reducir gutter solo en esta fila */
.experiences-row {
  margin-left: -0.0010rem;
  margin-right: -0.0010rem;
}
.experiences-row > [class*="col-"] {
  padding-left: 0.10rem;
  padding-right: 0.10rem;
}

/* 2) Limitar ancho y centrar cada tarjeta */
.experiences-row .card {
  max-width: 230px;   /* tarjeta más estrecha */
  margin: 0 auto;     /* la centra en su columna */
}

/* ============================================
   ESTILOS TOURSYPAQUETES
   ============================================ */
/* Contenedor general */

/* estilos comunes */
.section-title {
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  margin: 3rem 0 2rem;
  font-size: 1.75rem;
}

/* colores específicos */
.title--destacado   { background-color: #4d6f5b; }
.title--areas       { background-color: #865364; }
.title--itinerario  { background-color: #96885d; }

  /* resumen, itinerario y áreas de interés usan fondo neutro */
  .summary, .itinerario, .areas-interes {
    margin-bottom: 2rem;
  }

  /* lo más destacado: grid de imágenes */
  .destacado .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 1rem;
  }
  .destacado .grid img {
    width: 100%; border-radius: 4px;
  }

  /* áreas de interés: flex de íconos */
  .areas-interes .flex {
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
  }
  .areas-interes .item {
    text-align: center; max-width: 150px;
  }
  .areas-interes .item img {
    width: 80px; height: 80px; margin-bottom: .5rem;
  }

  /* itinerario */
  .itinerario p { margin-bottom: 1.5rem; }
  .itinerario i {
    color: #00c853;
    margin-right: .5rem;
    vertical-align: middle;
  }

  /* botón consultar disponibilidad */
  #disponibilidad {
    text-align: center;
    background-color: #004d40;
    padding: 4rem 1rem;
    margin: 4rem 0;
  }
  #disponibilidad .btn {
    display: inline-block;
    background: #fff;
    color: #004d40;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    text-decoration: none;
  }
  #disponibilidad .btn i {
    margin-right: .5rem;
  }

  /* Todas las secciones arrancan ocultas */
.tour-section {
  display: none;
  /* opcional: transición suave */
  transition: opacity .3s ease;
  opacity: 0;
}

/* La sección activa se muestra */
.tour-section.active {
  display: block;
  opacity: 1;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}
/*  Título principal */
.tour-title {
  font-size: 2.5rem;      /* tamaño grande */
  font-weight: 700;       /* negrita */
  color: #1a1a1a;         /* gris oscuro */
  margin-bottom: 1.5rem;
}

/*  Bloque de datos */
.summary p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0.5rem 0;
}

/*  Destacar las etiquetas en verde */
.summary strong {
  color: #2a9255;         /* verde brillante */
  font-weight: 600;
  margin-right: 0.3rem;
}


/* ============================================
   consejos de viaje
   ============================================ */
.hero-consejos {
  position: relative;
  width: 100%;
  height: 70vh;            /* o la altura que prefieras */
  overflow: hidden;        /* para que el <img> no se desborde */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Imagen de fondo vía HTML */
.hero-consejos__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* recorta/escala la imagen */
  z-index: 0;
}

/* Overlay para oscurecer */
.hero-consejos__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Contenido encima */
.hero-consejos__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-consejos__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-consejos__subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-consejos__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}
.hero-consejos__btn:hover {
  background-color: #fff;
  color: #333;
}


/* ============================================
   Sección “Inspirate” (consejos de viaje local)
   ============================================ */
.consejo-section {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  background: #f9f9f9;  /* color de fondo opcional */
}

.consejo {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Intro centrada */
.consejo .intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Lista de consejos */
.consejo-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.consejo-list li {
  margin-bottom: 1.5rem;
}

/* Título de cada consejo */
.consejo-list h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

/* Texto de cada punto */
.consejo-list p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}





/* ==============================
   TOP-BAR: solo email + iconos en fila
   ============================== */

/* Oculta enlace de teléfono */
.top-bar a[href^="tel:"] {
  display: none !important;
}

/* Forzar que el mail y su icono estén en línea */
.top-bar a[href^="mailto:"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;      /* espacio entre icono y texto */
  white-space: nowrap !important;
}

/* Si tienes una lista de iconos (social o contacto) */
.top-bar .contact-icons,
.top-bar .social-icons,
.top-bar .contact-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* Asegura que los <i> o <svg> de iconos sean inline */
.top-bar i,
.top-bar svg {
  display: inline-block !important;
  vertical-align: middle;
}


/* ==============================
   Video
   ============================== */
/* VIDEO SLIDER */
#heroCarousel,
.carousel,
.carousel-inner {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
}
.carousel-item {
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.carousel-item video {
  display: block;
  width: 100%;
  height: 85vh;
  object-fit: cover;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}

/* CENTRAR TEXTO EN EL VIDEO */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  margin: 0;
  padding: 0;
}

.carousel-caption h1 {
  white-space: nowrap;
}

/* ELIMINAR MÁRGENES DEL BODY Y SECCIONES */
body,
section,
html {
  margin: 0 !important;
  padding: 0 !important;
}

/* AJUSTE EXPLÍCITO DE LA SECCIÓN SIGUIENTE */
.seccion-tpp {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background-color: #f3f3f3;
}

.seccion-tpp {
  margin-top: -4px; /* Ajusta según tu navegador si aún ves espacio */
  padding-top: 0;
  background-color: #f3f3f3;
}


/* ==============================
   NOSOTROS VISTA PRINCIPAL
   ============================== */
.seccion-tpp {
  background-color: #f3f3f3;
  padding: 50px 0;
}

.container-tpp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tpp-contenido {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.tpp-texto {
  flex: 1 1 50%;
  padding: 20px;
}

.titulo-tpp {
  color: #fcb900;
  font-weight: bold;
  font-size: 28px;
}

.separador-tpp {
  width: 60px;
  height: 3px;
  background-color: #fcb900;
  border: none;
  margin: 10px 0 20px;
}

.subtitulo-tpp {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.tpp-texto p {
  color: #333;
  line-height: 1.6;
}

.boton-tpp {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #fcb900;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.boton-tpp:hover {
  background-color: #e6b800;
}

.tpp-imagen {
  flex: 1 1 45%;
  padding: 20px;
  text-align: center;
}

.tpp-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ============================================
   PAQUETES ACTUALES DESDE VIAJES DE MODA (lo mas vendido)
   ============================================ */

.detalle-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;

}

.detalle-imagenes {
  flex: 1 1 60%;
  min-width: 300px;
}

.imagen-principal {
  width: 100%;
  height: 420px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.miniaturas {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  max-width: 100%;
  box-sizing: border-box;
}

.miniaturas::-webkit-scrollbar {
  height: 8px;
}

.miniatura {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.miniatura:hover {
  border-color: #f5c253;
}

.detalle-info {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 280px;
}

.boton-wsp {
  background: #f5c253;
  color: #000;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
}

.detalle-info h1 {
  font-size: 1.8rem;
  margin: 0;
}

.detalle-info h1 span {
  font-size: 1.1rem;
  color: #555;
  margin-left: 5px;
}

.precio-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}
.precio {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222;
}

.oferta-badge {
  background-color: orange;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.antes {
  font-size: 0.95rem;
  color: #666;
  margin-top: 8px; /* ⬅️ Ajusta este valor según lo separado que lo quieras */
}

.formulario-reserva label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}

.formulario-reserva input,
.formulario-reserva select {
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.acciones {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-accion {
  flex: 1;
  background: #f5c253;
  color: black;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}


/* ============================================
   INCLUYE-ITINERARIO
   ============================================ */
.contenido-paquete {
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.titulo-seccion {
  color: #f5a100;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.lista-incluye,
.lista-itinerario {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 25px;
}

.lista-incluye li,
.lista-itinerario li {
  margin-bottom: 6px;
  color: #333;
  font-size: 1rem;
}

/* Estilo especial para los títulos de días */
.dia-itinerario {
  display: inline-block;
  background-color: orange;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  margin: 15px 0 10px;
  font-size: 1rem;
  font-weight: bold;
}

/* ============================================
   CONTENIDO AJUSTADOS DE LA SECCION TOUS Y PAQUETES ACTUAL
   ============================================ */
/* CONTENEDOR GENERAL CENTRADO */
.contenedor-ajustado {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}

/* CONTENIDO GENERAL */
.detalle-container,
.contenido-paquete {
  margin-top: 30px;
}

/* SECCIÓN INCLUYE */
.titulo-seccion {
  color: #f5a100;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.lista-incluye,
.lista-itinerario {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 25px;
}

.lista-incluye li,
.lista-itinerario li {
  margin-bottom: 6px;
  color: #333;
  font-size: 1rem;
}

/* TÍTULO DE CADA DÍA */
.dia-itinerario {
  display: inline-block;
  background-color: orange;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  margin: 15px 0 10px;
  font-size: 1rem;
  font-weight: bold;
}


/* ============================================
   SECCION CYBER TUCAN 
   ============================================ */
.promo-cyber-container {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.promo-cyber-img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-cyber-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 20px;
  border: 10px solid white;
  width: 90%;
  max-width: 1000px;
}

.promo-cyber-text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.promo-cyber-text h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.promo-cyber-text p {
  font-size: 1.2rem;
}

/* WhatsApp contact style */
.whatsapp-contact {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.whatsapp-button {  
  display: inline-flex;
  align-items: center;
  gap: 1px;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}


/* ============================================
    SECCIÓN TOURS  
   ============================================ */
.seccion-tours {
  padding: 3rem 0;
  background: #fff;
}

.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.seccion-tours h2 {
  margin-top: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.seccion-tours p {
  font-size: 1.1rem;
  color: #444;
  max-width: 1160px;
}

.tours .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.75rem;  /* reduce separación entre columnas */
  row-gap: 2rem;
  justify-content: space-between;
}
.col-md-4 {
  flex: 0 0 calc(33.333% - 0.75rem);
  max-width: calc(33.333% - 0.75rem);
}

/* tarjetas, botones, badge... (ya lo tienes) */


/* Botón ORDENAR POR */
.text-muted {
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}

/* TARJETAS DE TOURS */
.card {
  border: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.card-body p small {
  color: #888;
}

.card-body h4 {
  color: #333;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* BOTÓN COMPRAR */
.btn-warning {
  background-color: #df9f13;
  border: none;
  padding: 10px 25px;
  font-weight: 300;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.btn-warning:hover {
  background-color: #c98c0f;
  color: #fff;
}

/* BADGE "EN OFERTA" */
.badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4em 0.75em;
  border-radius: 0;
  background-color: #ffc107 !important;
  color: #000;
}




/* ============================================
    DETALLES TOURS  
   ============================================ */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

.detalle-tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.galeria img {
  width: 100%;
  border-radius: 10px;
}

.miniaturas {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.miniaturas img {
  width: 60px;
  height: 60px;
  border: 1px solid #ccc;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
}

.info-tour {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

h1 {
  font-weight: 600;
  font-size: 2rem;
}

.precio {
  font-size: 1.5rem;
  font-weight: 400;
}

.precio .oferta {
  color: #ff8c00;
  font-size: 1rem;
  margin-left: 1rem;
  text-decoration: line-through;
  font-weight: 300;
}

input[type="date"],
select {
  padding: 0.5rem;
  font-size: 1rem;
  width: 60%;
}

.btn-cesta {
  background-color: #ecb931;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-cesta:hover {
  background-color: #d9a514;
}

.contenido-tour {
  grid-column: span 2;
  padding-top: 2rem;
}

.contenido-tour h2 {
  color: #f6a100;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.contenido-tour ul {
  list-style: disc;
  margin-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}



/* ============================================
    NOSOTROS  
   ============================================ */
    /* Estilos específicos para la sección Nosotros */
    .nosotros-seccion {
      background: linear-gradient(135deg, #fefefe, #f8f5f0);
      padding: 60px 20px;
      margin-top: 40px;
    }

    .container-nosotros {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      margin-top: 80px;
    }

    .nosotros-imagen img {
      width: 100%;
      max-width: 480px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      object-fit: cover;
    }

    .nosotros-texto {
      max-width: 600px;
      text-align: left;
    }

    .nosotros-texto h2 {
      font-size: 2.2rem;
      margin-bottom: 10px;
      color: #222;
    }

    .nosotros-texto p {
      font-size: 1.1rem;
      color: #333;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .btn-nosotros {
      display: inline-block;
      background-color: #eba000;
      color: #000;
      font-weight: bold;
      padding: 12px 24px;
      font-size: 1rem;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .btn-nosotros:hover {
      background-color: #e3ae3f;
    }




/* ============================================
   SECCIÓN PAQUETES (basado en TOURS)
   ============================================ */
.paquetes-grid {
  padding: 3rem 0;
  background: #fff;
}

.contenedor-paquetes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.contenedor-paquetes h2 {
  margin-top: 130px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contenedor-paquetes p {
  font-size: 1.1rem;
  color: #444;
  max-width: 1160px;
}

/* Distribución de columnas */
.fila-paquetes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0.75rem;
  justify-content: space-between;
}

.columna-paquete {
  flex: 0 0 calc(33.333% - 0.75rem);
  max-width: calc(33.333% - 0.75rem);
}

/* Tarjeta del paquete */
.paquete-card {
  position: relative;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  background: #fff;
}

.paquete-card:hover {
  transform: translateY(-5px);
}

.paquete-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.paquete-info {
  padding: 15px;
}

.paquete-titulo {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.paquete-info p small {
  color: #888;
}

.paquete-precio {
  color: #333;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Botón comprar */
.btn-comprar {
  background-color: #df9f13;
  border: none;
  padding: 10px 25px;
  font-weight: 300;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: #000;
  display: inline-block;
}

.btn-comprar:hover {
  background-color: #c98c0f;
  color: #fff;
}

/* Badge */
.paquete-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4em 0.75em;
  background-color: #ffc107;
  color: #000;
  border-radius: 0;
  z-index: 1;
}


.scroll-down-fancy {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  padding: 15px 30px;
  background: radial-gradient(circle, #ffd52c, #fca118);
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(255, 175, 27, 0.8);
  text-decoration: none;
  animation: pulse-glow 2s infinite;
  z-index: 10;
}

.scroll-down-fancy span {
  font-size: 20px;
  color: white;
  font-weight: bold;
  animation: bounce-down 2s infinite;
  display: inline-block;
}

@keyframes bounce-down {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 20px rgba(255, 165, 0, 0.7); }
  50% { box-shadow: 0 0 30px rgba(255, 140, 0, 1); }
  100% { box-shadow: 0 0 20px rgba(255, 165, 0, 0.7); }
}

/* Contenedor de logos en el footer */
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;  /* los centra horizontalmente */
  align-items: center;
  margin-top: 0.5rem;
}

.footer-logos img {
  max-height: 200px;       /* ajusta según el tamaño de tus logos */
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logos img:hover {
  transform: scale(1.1);
}

/* Responsivo: una sola columna en móviles */
@media (max-width: 576px) {
  .footer-logos {
    justify-content:center;
  }
  .footer-logos img {
    max-height: 200px;
  }
}
/* --- Botón CTA --- */
.btn-cta-hero{
  position:absolute;
  left:50%;
  bottom:8vh;                   /* mueve verticalmente el botón */
  transform:translateX(-50%);
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:14px 30px;
  border-radius:999px;
  background:#3f8d3e;           /* verde estilo captura */
  color:#fff;
  font-weight:600;
  font-size:clamp(14px, 2.2vw, 20px);
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-cta-hero:hover{
  background:#46a346;
  transform:translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.btn-cta-hero:focus{
  outline: 3px solid rgba(70,163,70,.5);
  outline-offset: 3px;
}

/* Responsivo */
@media (max-width: 576px){
  #heroCarousel .carousel-item { height: 70vh; }
  .btn-cta-hero{ bottom: 6vh; padding: 12px 24px; }
}

/* ================================
   SMARTPHONES (≤576px)
   ================================ */
/* Puedes aumentar el padding-top para hacer más alto el box en pantallas muy estrechas */
  .promo-cyber-container::before {
    padding-top: 80%;  /* más alto para que el texto no se empotre */
  }
  .promo-cyber-text {
    padding: 0.75rem;
    border-width: 3px;
  }
  .promo-cyber-text h3 {
    font-size: 1rem;
  }
  .promo-cyber-text h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .promo-cyber-text p {
    font-size: 0.9rem;
  }

@media (max-width: 576px) {
  .hero h1 {
    transform: translateY(190%); /* mueve el texto un 20% desde su posición normal */
  }

  /* — Navbar fijo, columna y full-width — */
  .custom-navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;               /* deja que crezca según contenido */
    padding: 0.5rem 1rem;
  }

  /* Apilar enlaces */
  .custom-navbar .nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
    background: #fff;            /* para que no quede transparente */
  }
  .custom-navbar .nav-item {
    width: 100%;
  }
  .custom-navbar .nav-link {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    border-top: 1px solid #eee;
    color: #000 !important;
  }
  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link.active {
    background: #f9f1e5;
    color: #df9f13 !important;
  }

  /* Dropdown a ancho completo */
  .custom-navbar .dropdown-menu {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    margin: 0;
  }
  .custom-navbar .dropdown-item {
    padding-left: 1.5rem;
  }

  /* Ocultar iconos sociales para ganar espacio */
  .navbar-icons {
    display: none;
  }

  /* Footer: columnas apiladas centradas */
  .site-footer .footer-bottom,
  .site-footer .footer-col {
    flex-direction: column;
    width: 100%;
    margin: 0 0 1.5rem;
    text-align: center;
  }

  /* Todas las grillas y tarjetas a 1 columna */
  .destinos-principales .underline,
  .viajes-moda .items-wrapper,
  .experiences-row > [class*="col-"],
  .col-md-4,
  .columna-paquete {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Detalle de paquete: apilar imagen y datos */
  .detalle-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .detalle-imagenes,
  .detalle-info {
    flex: 1 1 100%;
    width: 100%;
  }
}
