* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  scroll-behavior: smooth;
}

/* --- BARRA DE NAVEGACIÓN --- */
.secciones {
  position: relative;
  background-color: #2c3e50;
  color: #ffffff;
  min-height: 13vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}

.grupo-izquierda, .grupo-derecha {
  display: flex;
  gap: 30px;
  width: 45%;
  align-items: center;
}

.grupo-derecha {
  justify-content: center;
}

.secciones a {
  background-color: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  color: #ffffff; 
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.secciones a.link-ubicacion {
    font-size: 1.3rem;
    margin-right: 25px;
    font-weight: 800;
}

.secciones a.link-ubicacion i {
    font-size: 1.4rem; 
}

.secciones::after {
  content: "";          
  position: absolute;    
  left: 50%;            
  transform: translateX(-50%); 
  top: 0%;             
  bottom: 0%;          
  width: 3px;           
  background-color: #ffffff;
}

.icono-nav {
    font-size: 1.2rem;
}

/* --- HERO (PORTADA) --- */
.foto_ezeiza {
    position: relative;
    width: 100vw;
    height: 87vh;
    overflow: hidden;
    background-color: #ffffff;
}

.foto_ezeiza img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.texto-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1000px;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.9);
}

.texto-hero h1 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.texto-hero p {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* --- SERVICIOS --- */
.info {
    text-align: center;
    padding: 60px 20px 40px 20px;
}

.info h1 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
}

.texto-destacado {
    color: #0e5b82;
    font-weight: 800;
}

.subtitulo-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.contenedor-servicios {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.tarjeta-servicio {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.tarjeta-servicio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icono-servicio {
    font-size: 3rem;
    color: #0e5b82;
    margin-bottom: 20px;
}

.tarjeta-servicio h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.tarjeta-servicio p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* --- SLIDER Y PRECIOS --- */
.contenedor-mixto {
    display: flex;
    align-items: stretch; 
    justify-content: space-between;
    width: 85%;
    max-width: 1400px; 
    margin: 90px auto 80px auto;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background-color: #fff;
    scroll-margin-top: 15vh;
}

.contenedor-slider {
    position: relative;
    width: 60%;
    display: block; 
}

.slider-ventana {
    width: 100%;
    overflow: hidden;
    height: 550px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    display: block;
}

.slider-btn {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    position: absolute;
    z-index: 10;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.6); 
}

.btn-prev {
    left: 20px; 
}

.btn-next {
    right: 20px; 
}

.info-derecha {
    width: 40%;
    background-color: #f8f9fa;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.titulo-precio {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    margin-top: 0;
}

.precio-numero {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0e5b82;
    display: block;
    margin-top: 5px;
}

.bajada-precio {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-weight: 500;
}

.separador-precio {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin-bottom: 20px;
    width: 100%;
}

.lista-beneficios {
    list-style: none;
    padding: 0;
}

.lista-beneficios li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.check-verde {
    color: #27ae60;
    font-size: 1.2rem;
}

.boton-reservar {
    margin-top: auto;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s;
    width: 100%;
    display: block;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.boton-reservar:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}

/* --- HOST --- */
.contenedor-host {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 90%;
    margin: 160px auto; 
    gap: 50px;
    scroll-margin-top: 20vh;
}

.texto-host {
    width: 50%;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
}

.texto-host h2 {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.texto-host p {
    color: #555;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.foto-host {
    width: 48%;
    height: 550px;
    position: relative;
}

.foto-host img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 0px #0e5b82;
}

.datos-host {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: flex-end; 
    flex-wrap: wrap;
}

.dato-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f8fc;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0e5b82;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.dato-item i {
    font-size: 1.2rem;
}

/* --- SECCIÓN RESEÑAS --- */
.contenedor-resenas {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
    overflow: hidden;
}

.cabecera-resenas h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.estrellas-fijas {
    color: #f1c40f;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cabecera-resenas p {
    font-family: 'Montserrat', sans-serif;
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.scroll-resenas {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 40px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
    justify-content: flex-start;
}

.scroll-resenas::-webkit-scrollbar { 
    display: none;
}

/* ESTILO BASE (PC) DE LA RESEÑA */
.img-resena {
    height: 500px; /* Grande en PC */
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.img-resena:hover {
    transform: scale(1.02);
}

.indicador-scroll {
    margin-top: 10px;
    color: #aaa;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    display: none;
}

/* CLASE NUEVA: Ajuste del botón en la sección reseñas */
.boton-resenas {
    max-width: 350px; 
    margin: 40px auto 0 auto; 
}

/* --- UBICACION --- */
.contenedor-mapa {
    width: 85%;
    max-width: 1400px;
    margin: 100px auto;
    text-align: center;
    scroll-margin-top: 20px;
}

.contenedor-mapa h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contenedor-mapa p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.marco-mapa {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
    border: 5px solid #fff;  
}

/* =========================================
   MEDIA QUERIES (OPTIMIZACIÓN MÓVIL)
   ========================================= */

@media (max-width: 768px) {
    
    /* --- NAVEGACIÓN --- */
    .secciones {
        height: auto;
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .secciones::after {
        display: none; 
    }

    .grupo-izquierda, .grupo-derecha {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .grupo-izquierda {
        order: 2; 
        display: flex;
        gap: 10px;
    }

    .grupo-izquierda a {
        font-size: 0.8rem;
        padding: 5px;
        background: rgba(255,255,255,0.1); 
        border-radius: 5px;
    }

    .grupo-derecha {
        order: 1; 
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 10px;
    }

    /* --- HERO --- */
    .foto_ezeiza {
        height: 80vh; 
    }

    .texto-hero {
        width: 95%;
    }

    .texto-hero h1 {
        font-size: 2rem; 
    }

    .texto-hero p {
        font-size: 1.1rem;
    }

    /* --- SLIDER Y PRECIOS --- */
    .contenedor-mixto {
        flex-direction: column;
        width: 95%; 
        margin-top: 50px;
    }

    .contenedor-slider {
        width: 100%;
    }

    .slider-ventana {
        border-radius: 15px 15px 0 0;
        height: 300px;
    }

    .info-derecha {
        width: 100%;
        border-radius: 0 0 15px 15px; 
        padding: 30px 20px;
    }

    .precio-numero {
        font-size: 2.5rem;
    }

    /* --- SERVICIOS --- */
    .contenedor-servicios {
        grid-template-columns: 1fr; 
        padding: 0 15px;
    }

    /* --- HOST --- */
    .contenedor-host {
        flex-direction: column-reverse;
        margin: 80px auto;
        width: 90%;
        gap: 30px;
    }

    .texto-host {
        width: 100%;
        text-align: center;
    }
    
    .texto-host h2 {
        font-size: 2rem;
    }

    .foto-host {
        width: 100%;
        height: 350px; 
    }

    .datos-host {
        justify-content: center; 
    }

    /* --- RESEÑAS MOBILE (EL ARREGLO) --- */
    .contenedor-resenas {
        padding: 50px 0;
    }

    .cabecera-resenas h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .scroll-resenas {
        padding: 20px 20px;
        gap: 15px;
    }

    /* ESTO ES LO QUE HACE QUE SE LEAN BIEN */
    .img-resena {
        height: auto;       /* Dejamos que la altura fluya */
        width: 85vw;        /* Ocupa el 85% del ancho de la pantalla */
        max-height: 80vh;   /* Límite para que no se salga de la pantalla */
        object-fit: contain; /* Asegura que se vea todo el contenido */
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .indicador-scroll {
        display: block;
        animation: moverFlecha 1.5s infinite alternate;
    }

    @keyframes moverFlecha {
        from { transform: translateX(0); }
        to { transform: translateX(10px); }
    }

    /* --- MAPA --- */
    .contenedor-mapa {
        width: 95%;
        margin-bottom: 50px;
    }

    .marco-mapa {
        height: 350px; 
    }
}

@media (max-width: 380px) {
    .texto-hero h1 {
        font-size: 1.6rem;
    }
    
    .grupo-izquierda a {
        font-size: 0.7rem;
    }
}