/* =========================
   BASE
========================= */
body{
    margin:0;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}
body, html{
    overflow-x:hidden;
}
h1, h2, h3{
    font-weight:600;
    letter-spacing:0.5px;
}
*{
    max-width:100%;
}
/* PRELOADER */
#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000; /* fondo oscuro */
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    transition:0.5s;
}

/* CONTENIDO */
.loader-content{
    text-align:center;
    color:#fff;
    animation:fadeIn 1s ease-in-out;
}

/* LOGO */
.logo-preload{
    width:120px;
    margin-bottom:20px;
    animation:pulse 1.5s infinite;
}

/* TEXTO */
.loader-content p{
    font-size:16px;
    letter-spacing:1px;
    color:#ccc;
}

/* ANIMACIONES */
@keyframes pulse{
    0%{transform:scale(1); opacity:1;}
    50%{transform:scale(1.1); opacity:0.7;}
    100%{transform:scale(1); opacity:1;}
}

@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}


/* =========================
   NAV PRO LIMPIO
========================= */
nav{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 20px;
    box-sizing:border-box; /* ?? ESTO ES CLAVE */
}/* SCROLL */
nav.scrolled{
    background:rgba(0,0,0,0.9);
}

/* LOGO */
.logo img{
    height:40px;
    filter:brightness(1.2);
}

/* =========================
   MENU
========================= */
.menu{
    display:flex;
    align-items:center;
    gap:25px;
}

/* LINKS */
.menu a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    position:relative;
    transition:0.3s;
}

/* LINEA HOVER */
.menu a::after{
    content:"";
    position:absolute;
    bottom:-5px;
    left:0;
    width:0;
    height:2px;
    background:#00bcd4;
    transition:0.3s;
}

.menu a:hover::after{
    width:100%;
}

.menu a:hover{
    color:#00bcd4;
}

/* =========================
   IDIOMAS
========================= */
.idiomas{
    display:flex;
    gap:8px;
    margin-left:10px;

    margin-left:20px;
    margin-right:50px;
}
.idiomas img{
    width:25px;
    border-radius:4px;
    background:#fff;
    padding:2px;
    cursor:pointer;
    transition:0.3s;
}

.idiomas img:hover{
    transform:scale(1.1);
    box-shadow:0 0 8px rgba(0,0,0,0.4);
}

/* =========================
   HAMBURGUESA
========================= */
.hamburguesa{
    position:relative; /* ?? no absolute */
    z-index:2000;
    display:flex;
    flex-direction:column;
    cursor:pointer;
}

.hamburguesa span{
    width:25px;
    height:3px;
    background:#fff;
    margin:4px 0;
    transition:0.3s;
}
.menu-mobile{
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100%;
    background:#000;
    transition:0.3s;
    z-index:1500;
}
/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    nav{
        padding:15px 20px;
    }

    /* MENU MOBILE */
    .menu{
        position:absolute;
        top:70px;
        right:0;
        background:#000;
        width:100%;
        flex-direction:column;
        align-items:center;
        padding:25px 0;
        display:none;
        gap:20px;
    }

    .menu.active{
        display:flex;
    }

    /* LINKS MÁS GRANDES */
    .menu a{
        font-size:16px;
    }

    /* IDIOMAS ABAJO */
    .idiomas{
        margin-top:10px;
    }

    /* HAMBURGUESA ON */
    .hamburguesa{
        display:flex;
    }

}
/* SLIDER BANNER FULL */
/* CONTENEDOR */
.banner-doble{
    display:flex;
    width:100%;
    height:320px; /* 👈 altura real linda */
    gap:10px;
    padding:10px;
}

/* BANNERS */
.banner{
    flex:1;
    overflow:hidden;
    border-radius:12px;
    position:relative;
}

/* IMAGEN */
.banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* HOVER PRO */
.banner:hover img{
    transform:scale(1.06);
}

/* MOBILE */
@media(max-width:768px){
    .banner-doble{
        flex-direction:column;
        height:auto;
    }

    .banner{
        height:220px;
    }
}
/* SLIDES */
.slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    transition:opacity 0.8s ease-in-out;
    display:block;
}

/* ACTIVO */
.slide.active{
    opacity:1;
    z-index:2;
}

/* IMAGEN */
.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* HOVER SUAVE */
.slide:hover img{
    transform:scale(1.03);
    transition:0.4s;
}

/* MOBILE */



.hero{
height:100vh;
background:url('../img/pileta.jpg') center/cover no-repeat;
display:flex;align-items:center;justify-content:center;color:#fff;
}

.btn{
background:#00bcd4;color:#fff;padding:12px 25px;border-radius:30px;text-decoration:none;
}

.section{padding:30px 20px;text-align:center}


.historia-complejo{
    padding:80px 20px;
    background:#f9f9f9;
}

.contenedor{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:flex-start; /* 👈 mantiene imagen alineada arriba */
    gap:50px;
}

/* IMAGEN */
.historia-complejo .img{
    flex:1.2; /* 👈 más grande */
}

.historia-complejo .texto{
    flex:1;
}

.historia-complejo .img img{
    width:100%;
    height:420px; /* 👈 clave */
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}
@media(max-width:768px){

    .historia-complejo .img img{
        height:auto; /* 👈 evita deformación en celular */
    }

}
.historia-complejo .img{
    margin-top:30px; /* 👈 ajustá entre 20 y 50 según te guste */
}
/* TEXTO */


.historia-complejo h2{
    font-family:'Poppins', sans-serif;
    font-size:36px;
    margin-bottom:20px;
}

.historia-complejo p{
    font-size:15px;
    color:#444;
    margin-bottom:15px;
    line-height:1.6;
}

/* INTRO */
.historia-complejo .intro{
    font-size:17px;
    font-weight:500;
}

/* DESTACADO */
.historia-complejo .destacado{
    margin-top:20px;
    font-weight:600;
    color:#00bcd4;
}

/* MOBILE */
@media(max-width:768px){

    .contenedor{
        flex-direction:column;
    }

    .historia-complejo h2{
        font-size:26px;
        text-align:center;
    }

    .historia-complejo p{
        text-align:center;
    }

}


.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#fff;border-radius:15px;overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.card img{width:100%;height:200px;object-fit:cover}

.pool{
background:url('../img/pileta2.jpg') center/cover no-repeat;
color:#fff;
}

footer{background:#111;color:#ccc;padding:40px;text-align:center}

.whatsapp{
position:fixed;bottom:20px;right:20px;background:#25D366;
width:60px;height:60px;border-radius:50%;
display:flex;align-items:center;justify-content:center;color:#fff;
}

.servicios-pro{
    padding:80px 20px;
    background:linear-gradient(135deg,#f5f7fa,#e4ecf5);
    text-align:center;
}

.servicios-pro h2{
    font-family:'Poppins', sans-serif;
    font-size:38px;
    margin-bottom:40px;
}

/* CONTENEDOR */
.servicios-container{
    display:flex;
    gap:30px;
    max-width:1200px;
    margin:auto;
    flex-wrap:wrap;
}

/* BLOQUES */
.bloque{
    flex:1;
    min-width:280px;
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
    transition:0.3s;
}

.bloque:hover{
    transform:translateY(-8px);
}

/* TITULO */
.bloque h3{
    margin-bottom:20px;
    font-size:22px;
    color:#333;
}

.bloque h3 i{
    color:#00bcd4;
    margin-right:8px;
}

/* LISTA */
.bloque ul{
    list-style:none;
    padding:0;
    text-align:left;
}

.bloque ul li{
    padding:8px 0;
    font-size:14px;
    color:#444;
    display:flex;
    align-items:center;
}

/* ICONOS */
.bloque ul li i{
    color:#00bcd4;
    margin-right:10px;
    width:20px;
}

/* MOBILE */
@media(max-width:768px){
    .servicios-container{
        flex-direction:column;
    }

    .servicios-pro h2{
        font-size:28px;
    }
}
.ubicacion-pro{
    margin-top:80px;
    padding:100px 20px;
    background:linear-gradient(135deg,#00bcd4,#4facfe);
    box-shadow:0 -20px 40px rgba(0,0,0,0.1);
}

.ubicacion-pro .contenedor{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    align-items:center;
}

/* TEXTO */
.ubicacion-pro .info{
    flex:1;
}

.ubicacion-pro h2{
    font-family:'Poppins', sans-serif;
    font-size:36px;
    margin-bottom:20px;
}

.ubicacion-pro .intro{
    margin-bottom:20px;
    font-size:16px;
}

/* LISTA */
.ubicacion-pro ul{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.ubicacion-pro ul li{
    margin-bottom:10px;
    font-size:15px;
    display:flex;
    align-items:center;
}

.ubicacion-pro ul li i{
    margin-right:10px;
    color:#fff;
    background:rgba(255,255,255,0.2);
    padding:8px;
    border-radius:50%;
    font-size:14px;
}

/* BOTON */
.btn-mapa{
    background:#fff;
    color:#00bcd4;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-mapa:hover{
    background:#000;
    color:#fff;
}

/* MAPA */
.mapa{
    flex:1;
    height:350px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

/* MOBILE */
@media(max-width:768px){

    .ubicacion-pro .contenedor{
        flex-direction:column;
    }

    .mapa{
        height:250px;
        width:100%;
    }

    .ubicacion-pro h2{
        text-align:center;
    }

    .ubicacion-pro .info{
        text-align:center;
    }
}
.footer-pro{
    background:#0b0b0b;
    color:#ccc;
    padding:60px 20px 20px;
}

/* CONTENEDOR */
.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

/* COLUMNAS */
.footer-col{
    flex:1;
    min-width:220px;
}

/* LOGO */
.footer-logo{
    width:140px;
    margin-bottom:15px;
}

/* TITULOS */
.footer-col h4{
    color:#fff;
    margin-bottom:15px;
}

/* LISTAS */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:8px;
    font-size:14px;
}

/* LINKS */
.footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#00bcd4;
}

/* REDES */
.footer-redes a{
    display:inline-block;
    margin-right:10px;
    font-size:18px;
    color:#fff;
    background:#222;
    padding:10px;
    border-radius:50%;
    transition:0.3s;
}

.footer-redes a:hover{
    background:#00bcd4;
}

/* ICONOS LISTA */
.footer-col i{
    margin-right:8px;
    color:#00bcd4;
}

/* BANDERAS */
.idiomas-footer{
    margin-top:15px;
}

.idiomas-footer img{
    width:30px;
    margin-right:8px;
    border-radius:4px;
    background:#fff;
    padding:2px;
}

/* BOTTOM */
.footer-bottom{
    margin-top:40px;
    border-top:1px solid #222;
    padding-top:15px;
    text-align:center;
    font-size:13px;
}

.footer-bottom .powered{
    margin-top:5px;
    color:#888;
}

/* MOBILE */
@media(max-width:768px){
    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .footer-redes a{
        margin:5px;
    }
}
/* GALERIA */
.galeria{
    padding:60px 20px;
    text-align:center;
}

.galeria h2{
    font-family:'Poppins', sans-serif;
    margin-bottom:30px;
}

/* GRID */
.galeria-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:15px;
    max-width:1200px;
    margin:auto;
}

.galeria-grid img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.galeria-grid img:hover{
    transform:scale(1.05);
}

/* MODAL */
.modal-galeria{
    display:none;
    position:fixed;
    z-index:9999;
    padding-top:50px;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9); /* 👈 fondo oscuro */
    text-align:center;
}

.modal-img{
    max-width:90%;
    max-height:80%;
    border-radius:10px;
}

/* CERRAR */
.cerrar{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:35px;
    cursor:pointer;
}

/* FLECHAS */
.prev, .next{
    cursor:pointer;
    position:absolute;
    top:50%;
    color:#fff;
    font-size:40px;
    padding:10px;
    user-select:none;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.prev:hover, .next:hover{
    color:#00bcd4;
}
.reservas-pro{
    padding:50px 30px;
    text-align:center;
    background:linear-gradient(135deg,#1e1e1e,#000);
    color:#fff;
}

/* CONTENEDOR */
.reservas-pro .contenedor{
    max-width:900px;
    margin:auto;
    display:block; /* 👈 rompe el flex que te está deformando todo */
}
/* TITULO */
.reservas-pro h2{
    font-family:'Poppins', sans-serif;
    font-size:38px;
    margin-bottom:10px;
}

/* SUB */
.reservas-pro .sub{
    font-size:16px;
    margin-bottom:30px;
    color:#ccc;
}

/* BENEFICIOS */
.beneficios{
    display:grid;
   grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.beneficio{
    background:#111;
    padding:20px;
    border-radius:12px;
    transition:0.3s;
}

.beneficio i{
    font-size:22px;
    margin-bottom:10px;
    color:#00bcd4;
}

.beneficio:hover{
    transform:translateY(-5px);
}

/* TEXTO FINAL */
.texto-final{
    margin-bottom:30px;
    color:#aaa;
}

/* BOTON */
.btn-reserva{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:0.3s;
}

.btn-reserva i{
    margin-right:8px;
}

.btn-reserva:hover{
    background:#1ebe5d;
    transform:scale(1.05);
}

/* MOBILE */
@media(max-width:768px){

    .beneficios{
        grid-template-columns:1fr 1fr;
    }

    .reservas-pro h2{
        font-size:26px;
    }

}

.alojamiento{
    padding:70px 20px;
    background:#fff; /* ?? mismo gris que servicios */
}

.alojamiento .contenedor{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

/* TEXTO */
.alojamiento .texto{
    flex:1;
}

.alojamiento h2{
    font-family:'Poppins', sans-serif;
    margin-bottom:15px;
}

.alojamiento .intro{
    margin-bottom:20px;
    color:#555;
}

/* LISTA */
.lista{
    list-style:none;
    padding:0;
    margin-bottom:20px;
}

.lista li{
    margin-bottom:10px;
    font-size:15px;
}

.lista i{
    color:#00bcd4;
    margin-right:10px;
}

/* FINAL */
.alojamiento .final{
    color:#666;
}

/* IMAGEN */
.alojamiento .img{
    flex:1.2;
}

.alojamiento .img img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* MOBILE */
@media(max-width:768px){

    .alojamiento .contenedor{
        flex-direction:column;
    }

    .alojamiento .img img{
        height:auto;
    }

}

/* GRID DE CARDS */
.grid-alojamiento{
    max-width:1200px;
    margin:50px auto 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* CARD */
.grid-alojamiento .card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.3s;
}

.grid-alojamiento .card:hover{
    transform:translateY(-5px);
}

/* IMG */
.grid-alojamiento .card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

/* TEXTO */
.grid-alojamiento .card h3{
    padding:15px 15px 5px;
}

.grid-alojamiento .card p{
    padding:0 15px 20px;
    font-size:14px;
    color:#555;
}
.faq{
    padding:70px 20px;
    background:#f5f7fa;
    text-align:center;
}

.faq h2{
    font-family:'Poppins', sans-serif;
    margin-bottom:30px;
}

/* CONTENEDOR */
.faq-container{
    max-width:900px;
    margin:auto;
    text-align:left;
}

/* ITEM */
.faq-item{
    background:#fff;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* BOTON */
.faq-question{
    width:100%;
    padding:15px;
    background:#fff;
    border:none;
    text-align:left;
    font-size:15px;
    cursor:pointer;
    position:relative;
}

/* ICONO + */
.faq-question::after{
    content:"+";
    position:absolute;
    right:20px;
    font-size:20px;
    transition:0.3s;
}

/* ACTIVO */
.faq-item.active .faq-question::after{
    content:"-";
}

/* RESPUESTA */
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.3s;
    padding:0 15px;
}

.faq-answer p{
    margin:10px 0;
    color:#555;
}