body {
  background: linear-gradient(to right, #ff5722, #ff7e5f, #ff9800, #ff5722);
  background-size: cover;
  height: 100vh;
  margin: 0;
}


/* Animación opcional para un efecto más dinámico */
@keyframes gradientAnimation {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Sección General */
/* Sección General */
.unique-night-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: #f2f2f2;
  color: #070606;
  text-align: center;
  gap: 30px;
}
/* Contenedor de Texto */
.unique-text-container {
  flex: 1;
  max-width: 550px;
  padding: 20px;
}

.unique-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.unique-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Botones */
.unique-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.unique-button {
  background: linear-gradient(45deg, #C627F2, #4741F2);
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: transform 0.3s ease-in-out, opacity 0.3s;
}

.unique-button:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* Contenedor de Imágenes */
.image-stack {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* Estilos generales para las imágenes */
.stacked-image {
  position: absolute;
  width: 60%;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Nueva disposición más limpia */
.image1 {
  transform: rotate(-6deg) translate(-20px, -20px);
  z-index: 4;
}

.image2 {
  transform: rotate(4deg) translate(10px, 10px);
  z-index: 3;
}

.image3 {
  transform: rotate(-3deg) translate(-15px, 30px);
  z-index: 2;
}

.image4 {
  transform: rotate(5deg) translate(15px, 50px);
  z-index: 1;
}

/* Efecto al pasar el mouse */
.stacked-image:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* ========================= */
/*         RESPONSIVE        */
/* ========================= */

/* 📱 Dispositivos Pequeños (menos de 480px - teléfonos compactos) */
@media (max-width: 480px) {
  .unique-night-section {
    flex-direction: column;
    padding: 30px 10px;
    gap: 20px;
  }
  .unique-title {
    font-size: 1.8rem;
  }

  .unique-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .unique-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .unique-button {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .image-stack {
    height: auto;
  }

  .stacked-image {
    width: 85%;
    position: relative;
  }

  .image1, .image2, .image3, .image4 {
    transform: none;
    position: relative;
    margin-bottom: 10px;
  }
}

/* 📲 Dispositivos Medianos (480px a 768px - teléfonos grandes y tablets pequeñas) */
@media (max-width: 768px) {
  .unique-night-section {
    flex-direction: column;
    text-align: center;
  }

  .unique-text-container {
    max-width: 100%;
  }

  .unique-buttons {
    flex-direction: column;
  }

  .image-stack {
    max-width: 100%;
    height: auto;
  }

  .stacked-image {
    width: 75%;
  }
}

/* 💻 Tablets Grandes (768px a 1024px) */
@media (max-width: 1024px) {
  .unique-night-section {
    padding: 40px 15px;
  }
  .unique-title {
    font-size: 2rem;
  }

  .unique-description {
    font-size: 1.05rem;
  }

  .unique-buttons {
    flex-wrap: wrap;
  }

  .stacked-image {
    width: 65%;
  }
}


  
/* Logo responsivo */
.navbar-brand img {
  max-height: 7rem; /* El logo ocupará toda la altura disponible del navbar */
  height: auto; /* Mantiene la proporción del logo */
  display: inline-block;
  vertical-align: middle; /* Alineación vertical */
}

/* Navbar base */
nav.navbar {
    padding: 20px 30px; /* Más espacio para el grosor */   
    border-bottom: 2px solid #ddd; /* Línea separadora sutil */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra más pronunciada */
    background: linear-gradient(to bottom right,#f2f2f2 ,#ffcc80, #ff9800, #ff5722);
    max-height: 7rem;
    position: relative;
    z-index: 1000; 

}

/* Navbar links */
.navbar-light .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff5722; /* Cambia el color al hover */
    transform: scale(1.05); /* Efecto suave */
}

/* Ítem activo */
.navbar-light .navbar-nav .nav-link.active {
    color: #ff5722;
    font-weight: 700;
    border-bottom: 2px solid #ff5722; /* Indicador de activo */
}

/* Ajustes para escritorio */
@media (min-width: 992px) {
    .navbar-nav {
        text-align: center;
    }
    .navbar-nav .nav-item {
        margin: 0 15px;
    }
}

/* Ajustes para tablets y móviles */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 15px;
    }

    .navbar-brand {
        margin-bottom: 10px;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 15px;
        padding: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin: 5px 0;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 10px;
        background: #f9f9f9;
        border-radius: 5px;
        margin: 2px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link:hover {
        background: #ff5722;
        color: #fff;
        transform: scale(1.05);
    }
}

/* Optimización adicional para pantallas pequeñas */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 8px;
    }
}




/* Estilos Base para el Footer */
.footer {
  background: linear-gradient(to bottom right, #ff9800, #ff5722);
  color: white;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-description {
  font-family: 'Roboto', sans-serif; /* Fuente moderna y legible */
  font-size: 1.1rem; /* Un tamaño de fuente ligeramente mayor */
  line-height: 1.8; /* Mayor espaciado entre líneas para mejor legibilidad */
  margin-top: 0.5rem;
  text-align: center;
  color: #cf130d; /* Color oscuro para buen contraste */
  font-weight: 400; /* Peso de fuente normal */
  letter-spacing: 0.5px; /* Espaciado entre letras para mayor claridad */
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid white;
  padding-bottom: 10px;
  color: #fd3d02; /* Naranja más fuerte */
  transition: color 0.3s ease; /* Transición suave para el hover */
}

.footer-heading:hover {
  color: #c01c10; /* Naranja más claro al pasar el ratón */
}

.footer-link, .footer-social-link {
  font-size: 1rem;
  color:  #fd3d02;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover, .footer-social-link:hover {
  color: #f31414; /* Naranja claro al pasar el ratón */
}


.footer-links,
.legal-links {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra los elementos dentro de cada columna */
}

.footer-links li,
.legal-links li {
  list-style: none;
  margin-bottom: 0.5rem;
}

.footer-link {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffe0b2; /* Color claro al pasar el mouse */
}

/* Estilo para los íconos sociales */
.footer-social-link {
  font-size: 2rem;
  color: white;
  transition: color 0.3s ease;
  margin-right: 15px; /* Espacio entre los íconos */
}

.footer-social-link:hover {
  color: #ffe0b2; /* Color claro al pasar el mouse */
}

.social-links {
  display: flex;
  justify-content: center; /* Centra los íconos en la parte derecha */
  padding: 0;
  margin: 0;
}

.social-links li {
  list-style: none;
  margin: 0 10px; /* Añadir margen entre los íconos */
}

/* Copyright en fondo negro (fuera de la estructura del container) */
.footer-copyright {
  background-color: #212121; /* Fondo negro */
  font-size: 0.9rem;
  font-weight: 300;
  padding: 10px 0;
}

.footer-copyright p {
  margin-bottom: 0;
  color: white;
}

/* Responsividad */
@media (max-width: 768px) {
  .footer-logo {
    max-width: 180px; /* Reducir el logo en dispositivos móviles */
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-links,
  .legal-links,
  .social-links {
    text-align: center;
  }

  .footer-links li,
  .legal-links li {
    margin-bottom: 1rem;
  }

  .footer-heading {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    max-width: 130px; /* Ajuste extra para pantallas muy pequeñas */
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 1rem;
  }
}


/*Icono whatsapp*/
  
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
}

.whatsapp-icon a {
  background-color: #f2f2f2; /* Fondo verde de WhatsApp */
  padding: 12px; /* Ajusta el padding para un buen espacio alrededor del ícono */
  border-radius: 50%; /* Asegura que el borde sea circular */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Sombra más suave */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px; /* Tamaño fijo del icono */
  height: 60px;
  border: 4px solid #25d366; /* Borde blanco alrededor del ícono */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Transición suave */
}

.whatsapp-icon a:hover {
  background-color: #f2f2f2; /* Color verde más oscuro al pasar el mouse */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada al pasar el mouse */
  transform: translateY(-5px); /* Efecto de aumento al pasar el mouse */
}

.whatsapp-icon i {
  color: white; /* El ícono ahora será blanco */
  font-size: 28px; /* Aumento el tamaño del ícono para que se vea bien */
  transition: transform 0.3s ease; /* Transición para el ícono */
}

.whatsapp-icon a:hover i {
  transform: scale(1.1); /* Aumentar el tamaño del ícono al hacer hover */
}

.imageStackDos {
  width: 150%; /* O ajusta un tamaño específico */
  display: flex;
  justify-content: center;
}

.enlargedImage {
  width: 100%; /* Ajusta el tamaño según necesites */
  max-width: 800px; /* Controla el tamaño máximo */
  height: auto; /* Mantiene la proporción */
}
t {
    flex-direction: column;
  }

  .night-experience-section {
    padding: 30px;
    background-color: white;
    border-radius: 15px; /* Borde redondeado para el card */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil para dar efecto de card */
    text-align: center;
  }
  
  .night-experience-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .night-experience-description {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .night-experience-content {
    display: flex;
    flex-direction: row;
    align-items: stretch; /* Asegura que el texto y la imagen tengan la misma altura */
    justify-content: space-between;
    width: 100%;
  }
  
  .night-experience-text {
    flex: 1; /* El texto ocupa el mismo espacio que la imagen */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .night-experience-image-container {
    flex: 1; /* La imagen ocupa el mismo espacio que el texto */
    border-radius: 10px; /* Bordes redondeados */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .night-experience-image {
    width: 100%;
    max-width: 400px; /* Ajusta el tamaño máximo si es necesario */
    height: 100%; /* La imagen se ajusta a la altura de su contenedor */
    object-fit: cover; /* Asegura que la imagen mantenga proporciones sin distorsionarse */
    border-radius: 10px;
  }
  
  /* ✅ Mantiene la misma estética en 1024px */
  @media (max-width: 1024px) and (min-width: 600px) {
    .night-experience-content {
      display: flex;
      flex-direction: row;
      align-items: stretch; /* Texto e imagen con misma altura */
      justify-content: space-between;
      width: 100%;
      align-items: stretch;
    }
  
    .night-experience-title {
      font-size: 36px !important;
      text-align: center;
    }
  
    .night-experience-description {
      font-size: 18px !important;
    }
  
    .night-experience-image-container {
      flex: 1;
      height: auto;
    }
  
    .night-experience-image {
      width: 100%;
      height: 100%; /* ✅ Imagen mantiene la misma altura que el texto */
    }
  }
  
  /* Ajustes para móviles */
  @media (max-width: 600px) {
    .night-experience-title {
      font-size: 28px;
    }
  
    .night-experience-description {
      font-size: 16px;
    }
  
    .night-experience-content {
      flex-direction: column;
    }
  
    .night-experience-image-container {
      width: 100%;
      height: 300px; /* Ajuste para móviles */
    }
  }
  

   /* Sección donde estará el video */
   .video-section {
    width: 100%;
    max-width: 1200px; /* Puedes ajustar el tamaño */
    margin: auto;
    padding: 20px;
    text-align: center;
  }

/* Contenedor del video */
.video-container {
width: 100vw; /* Ocupar todo el ancho de la pantalla */
max-width: 100%; /* Asegurar que no tenga límites de ancho */
height: auto;
position: relative;
background: black;
border-radius: 0; /* Sin bordes redondeados para pantalla completa */
overflow: hidden;
}

/* Video responsivo */
.responsive-video {
width: 100%;
height: auto;
display: block;
border-radius: 0; /* Sin bordes redondeados */
}

  /* Quitar Picture-in-Picture */
  video::-webkit-media-controls-picture-in-picture-button {
    display: none;
  }
  
  video::-webkit-media-controls-fullscreen-button {
    display: none;
  }

  /* Controles personalizados */
  .controls {
    margin-top: 10px;
  }

  button {
    padding: 10px 15px;
    font-size: 16px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }

  button:hover {
    background: #0056b3;
  }


  