
body {
  margin: 0;
  background-color: #1e1e1e;
  font-family: 'Raleway', sans-serif;
}

/* Barra de navegación */
.barra-navegacion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  background-color: #9c426f;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Logotipo */
.logo {
  height: 100px;
  max-height: 100%;
}

/* Menú principal */
.menu-principal ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu-principal a {
  color: white;
  text-decoration: none;
  font-weight: normal;
  font-size: 25px; /* ← Aumentamos el tamaño del texto */
  line-height: 120px; /* ← Alineado vertical con la barra si mide 80px */
  transition: color 0.3s ease;
}

/* Ícono de menú (solo visible en móviles) */
.icono-menu {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* === Selector de idioma === */
.selector-idioma {
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  gap: 5px;
  align-items: center;
  z-index: 30; /* se asegura de estar por encima del logo o menú */
}













/* Responsive */
@media (max-width: 768px) {
  .barra-navegacion {
    justify-content: center;
    position: relative;
    height: 80px;
  }

  .contenedor-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

.menu-principal {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #d8217e;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none; /* evita clics cuando está oculto */
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

/* Cuando se activa el menú */
.menu-principal.mostrar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* activa clics cuando se muestra */
}


 .selector-idioma {
    position: absolute;
    left: 10px; /* margen izquierdo más pequeño */
    top: 28px; /* alineado con el logo */
    font-size: 16px;
    z-index: 30;
    background: none;
  }


  .menu-principal ul {
  flex-direction: column;
  gap: 2px; /* ← reduce el espacio entre opciones */
  margin: 0;
  padding: 0;
  text-align: center; /* ← centra el texto */
}

/* --- CÓDIGO CORREGIDO Y MEJORADO --- */
.menu-principal li {
  width: 100%; /* Hacemos que cada elemento de la lista ocupe todo el ancho */
}

.menu-principal a {
  display: block; /* Convertimos el enlace en un bloque */
  padding: 15px 0; /* Añadimos un buen espacio para poder tocarlo fácilmente */
  line-height: normal; /* ¡Esta es la corrección clave! Resetea la altura de línea.*/
  font-size: 18px;   /* Un poco más grande para mejor legibilidad */
  font-weight: 500;
  color: white;
  text-decoration: none;
  width: 100%;
}


  .icono-menu {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 28px;
    cursor: pointer;
  }
.logo {
  height: 70px; /* o incluso 35px si quieres más compacto */
}



  .menu-principal.mostrar {
    display: flex;
  }
}

@media (min-width: 769px){
.selector-idioma {
    position: absolute;
    left: 850px;
    top: 50px;
    z-index: 20;
  }
}


/* Opcional: resalta idioma seleccionado */
.idioma:hover {
  text-decoration: underline;
}




























/* === Carrusel === */
.carrusel {
  position: relative;
  width: 100%;
  height: 80vh; /* altura estándar adaptable */
  overflow: hidden;
}

.carrusel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 10s ease;
}

.carrusel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
}

.carrusel-item.activo {
  opacity: 1;
  z-index: 1;
}

.carrusel-item.activo img {
  transform: scale(1.1); /* efecto de acercamiento */
}

/* Texto sobre la imagen */
.carrusel-texto {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.carrusel-texto h2 {
  margin: 0;
  font-size: 2rem;
}

.carrusel-texto p {
  margin-top: 8px;
  font-size: 1rem;
}

/* Flechas de navegación */
.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.carrusel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carrusel-btn.prev {
  left: 15px;
}

.carrusel-btn.next {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .carrusel {
    height: 60vh;
  }

  .carrusel-texto h2 {
    font-size: 1.5rem;
  }

  .carrusel-texto p {
    font-size: 0.9rem;
  }
}

















/* ======== SECCIÓN DESTINOS ======== */
.destinos {
  background-color: #1e1e1e;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.titulo-destinos {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Cuadrícula de imágenes */
.grid-destinos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cada destino */
.destino {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.destino img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Efecto de acercamiento suave */
.destino:hover img {
  transform: scale(1.05);
}

/* Información sobre la imagen */
.info-destino {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  text-align: left;
}

.info-destino h3 {
  margin: 0;
  font-size: 22px;
}

.info-destino p {
  margin: 8px 0;
  font-size: 16px;
}

.boton-destino {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.boton-destino:hover {
  background: white;
  color: #1e1e1e;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .grid-destinos {
    grid-template-columns: 1fr;
  }

  .titulo-destinos {
    font-size: 26px;
  }

  .info-destino {
    background: rgba(0, 0, 0, 0.6);
  }
}














/* SECCIÓN DE PAQUETES */
.paquetes {
  background-color: #ff8c42; /* naranja elegante */
  padding: 60px 20px;
  text-align: center;
}

.titulo-paquetes {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.grid-paquetes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.paquete {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.paquete:hover {
  transform: translateY(-5px);
}

.paquete img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-paquete {
  padding: 15px;
  text-align: left;
}

.info-paquete h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.info-paquete p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.info-paquete span {
  color: #777;
  font-size: 0.9rem;
}

















/* === FOOTER === */
.footer {
  background-color: #9c426f;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 400px;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto;
}

.footer-redes {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.footer-redes a {
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-redes a:hover {
  color: #ffd1ec;
  transform: scale(1.2);
}

.footer-copy {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.8;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-contenedor {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }

  .footer-logo {
    flex: 1;
  }

  .footer-redes {
    flex: 1;
    justify-content: center;
  }

  .footer-copy {
    flex: 1;
    text-align: right;
  }
}
