/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4BACCC;
    --secondary-color: #326880;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero con imagen de fondo */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("img/MabuExterior.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Capa de color más neutra para resaltar el logo */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* opaco oscuro */
  z-index: 1;
}




/* Centrado del logo */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo más grande y con sombra para que destaque */
.hero-logo {
  width: 800px; /* puedes ajustar este valor */
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s ease;
}

.hero-logo:hover {
  transform: scale(1.05); /* efecto sutil al pasar el mouse */
}



/* Sobre Nosotros / Reservar */
.reservar {
    position: relative;
    padding: 100px 0;
 
    overflow: hidden; /* por si acaso, asegura que la capa no sobresalga */
}

/* Capa oscura encima de la imagen */
.reservar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* oscurece la imagen sin quitarla */
    z-index: 0; /* detrás del contenido */
}

/* Asegura que el contenido quede por encima de la capa */
.reservar .container {
    position: relative;
    z-index: 1;
}
    



.reservar .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reservar .about-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.reservar h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4BACCC; 
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.reservar .about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}


 .navidad-simple {
  background: linear-gradient(to right, #f2fcff, #f1fcff);
  text-align: center;
  padding: 60px 20px;
  border-radius: 0px;
  border: 1px solid #4BACCC; /* rojo navideño */
  margin: 40px 0;
}

.navidad-simple h2 {
  color: #4BACCC;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.navidad-simple p {
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.navidad-simple strong {
  color: #4BACCC;
}
/* 🖼️ Estilos para las imágenes */
.navidad-imagenes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.navidad-imagenes img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.navidad-imagenes img:hover {
  transform: scale(1.05);
}



/* Reseñas */
.reviews {
    background: linear-gradient(135deg, #f5f9fa 0%, #e8f4f8 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.reviews h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 30px;
}

.reviews h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4BACCC; 
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.reviews-summary {
  margin-bottom: 2rem;
}

.stars {
  color: #4BACCC;
  font-size: 1.6rem;
  margin: 0.5rem 0;
}

.reviews-summary p {
  color: #555;
  margin: 0.2rem 0;
}

.trip-logo {
  width: 70px;
  margin-top: 0.5rem;
}

/* Carrusel de tarjetas */
.reviews-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
  justify-content: center;
}

/* Tarjeta */
.review-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  text-align: left;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

/* Cabecera */
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.review-header div {
  flex-grow: 1;
}

.review-header h4 {
  margin: 0;
  color: var(--azul-oscuro);
  font-weight: 600;
}

.date {
  font-size: 0.85rem;
  color: #888;
}

.trip-icon {
  width: 20px;
  height: 20px;
}

/* Estrellas */
.stars i,
.review-rating i {
  color: #f4b400; /* Amarillo dorado profesional */
  margin-right: 1px;
  font-size: 1.2rem;
}

.reviews-summary .stars i {
  font-size: 1.5rem; /* Un poco más grandes en el resumen */
}

.review-rating {
  margin-top: 5px;
}

.review-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .review-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    background-color: #fff;
    border: 2px solid #4BACCC;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .review-btn img {
    height: 24px;
  }
  
  .review-btn:hover {
    background-color: #f0d7b5;
    color: #fff;
  }
  
  .review-btn.google:hover {
    background-color: #7da7ec;
  }
  
  .review-btn.tripadvisor:hover {
    background-color: #5bcca3;
  }


@media (max-width: 768px) {
  .reviews-container {
    flex-direction: column;
    align-items: center;
  }
  .review-card {
    width: 90%;
    max-width: 400px;
  }
}




/* Centrar widget de reservas */
.reservar-widget {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ajuste para móviles */
@media (max-width: 991px) {
    .reservar .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .reservar .about-text h2 {
        text-align: center;
    }
    .reservar .about-text p {
        text-align: center;
    }
    .reservar-widget iframe {
        height: 550px;
    }
}


/* SEO TEXT */
.seo-text {
  background-color: #fafafa;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;;
}

.seo-text .about-text {
  max-width: 800px; 
  margin: 0 auto;
}

.seo-text h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.seo-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 0 auto;
}

.seo-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4BACCC; 
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* Iconos redes sociales */
.social-icons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons a {
  color: var(--secondary-color);
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: var(--azul-oscuro);
  transform: scale(1.15);
}


@media (max-width: 768px) {
  .seo-text {
    padding: 40px 15px;
  }

  .seo-text h2 {
    font-size: 2rem;
  }

  .seo-text p {
    font-size: 1rem;
  }
}


/* Galería */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f9fa 0%, #e8f4f8 100%);
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.gallery h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4BACCC; 
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Cada item cuadrado */
.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

    width: 100%;

    
    background-color: #ffffff; /* fondo blanco para los bordes */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mantiene toda la imagen visible */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* efecto zoom sutil */
}


.gallery-item:hover img {
    transform: scale(1.05); /* pequeño zoom sin recortar */
}


/* Trabaja con nosotros */
.careers {
    padding: 100px 0;
    background-color: var(--white);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.careers-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.careers-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Botón de enviar currículum */
.btn-careers {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-careers:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.careers-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Adaptable a móviles */
@media (max-width: 991px) {
    .careers-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .careers-image img {
        height: 300px;
    }

    .btn-careers {
        margin-top: 10px;
    }
}


/* Contacto */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f9fa 0%, #e8f4f8 100%);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 60px;
    position: relative;
    font-weight: 600;
    color: var(--secondary-color);
}

.contact h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Contenedor principal */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Grid de info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Cada tarjeta */
.info-item {
    text-align: center;
    padding: 35px 25px;
    background-color: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto hover */
.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Iconos decorativos */
.info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Títulos */
.info-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}

/* Texto */
.info-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Links dentro de p */
.info-item a {
    color: var(--white);
    font-weight: 500;
    text-decoration: underline;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .info-item {
        padding: 25px 20px;
    }
}

/* FAQ Section */
.faq {
  background-color: #fafafa;
  padding: 80px 20px;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--secondary-color);
  position: relative;
}

.faq h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* Estilo de los desplegables */
.faq-container details {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-container details:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* El resumen (pregunta) */
.faq-container summary {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--primary-color);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Icono de desplegable */
.faq-container summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-container details[open] summary::after {
  transform: rotate(45deg);
}

/* Texto dentro del desplegable */
.faq-container p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 60px 15px;
  }

  .faq h2 {
    font-size: 2rem;
  }
}



/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}