/*=====================================
RESET
=====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.6;

}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/*=====================================
HEADER
=====================================*/

header{

    width:100%;
    background:#0b7285;
    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0px 4px 12px rgba(0,0,0,.2);

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:60px;

    margin-right:12px;

}

.logo h2{

    font-size:28px;

    font-weight:700;

}

/*=====================================
MENU
=====================================*/

nav ul{

    display:flex;

    gap:25px;

}

nav ul li a{

    color:white;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#ffd43b;

}

/*=====================================
BUSCADOR
=====================================*/

.buscador{

    display:flex;

}

.buscador input{

    padding:10px;

    border:none;

    border-radius:20px 0 0 20px;

    outline:none;

    width:220px;

}

.buscador button{

    border:none;

    background:#ffd43b;

    padding:10px 18px;

    border-radius:0 20px 20px 0;

    cursor:pointer;

    transition:.3s;

}

.buscador button:hover{

    background:#fcc419;

}

/*=====================================
MENU RESPONSIVE
=====================================*/

.menu-responsive{

    display:none;

    position:absolute;

    top:25px;

    right:30px;

    font-size:30px;

    color:white;

    cursor:pointer;

}

/*=====================================
SLIDER
=====================================*/

.slider{

    position:relative;

    width:100%;

    height:650px;

    overflow:hidden;

}

.slides{

    display:none;

}

.slides img{

    width:100%;

    height:650px;

    object-fit:cover;

}

.texto{

    position:absolute;

    top:50%;

    left:10%;

    transform:translateY(-50%);

    color:white;

    max-width:500px;

}

.texto h1{

    font-size:55px;

    margin-bottom:20px;

}

.texto p{

    font-size:20px;

    margin-bottom:25px;

}

/*=====================================
BOTONES
=====================================*/

.boton{

    display:inline-block;

    background:#ff6b6b;

    color:white;

    padding:14px 28px;

    border-radius:30px;

    transition:.4s;

    font-weight:bold;

}

.boton:hover{

    background:#1971c2;

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.3);

}

/*=====================================
BIENVENIDA
=====================================*/

.bienvenida{

    width:90%;

    margin:70px auto;

    text-align:center;

}

.bienvenida h2{

    font-size:40px;

    color:#0b7285;

    margin-bottom:20px;

}

.bienvenida p{

    font-size:18px;

    max-width:900px;

    margin:auto;

}

/*=====================================
SERVICIOS
=====================================*/

.servicios{
    width:90%;
    margin:80px auto;
    text-align:center;
}

.servicios h2{
    font-size:40px;
    color:#0b7285;
    margin-bottom:40px;
}

.contenedor-servicios{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.tarjeta{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.4s;
}

.tarjeta:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 35px rgba(0,0,0,.25);
}

.tarjeta img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.tarjeta .contenido{
    padding:25px;
}

.tarjeta h3{
    color:#0b7285;
    margin-bottom:15px;
    font-size:24px;
}

.tarjeta p{
    margin-bottom:20px;
    color:#555;
}

/*=====================================
PAQUETES
=====================================*/

.paquetes{
    background:#eef7fa;
    padding:80px 5%;
    text-align:center;
}

.paquetes h2{
    font-size:40px;
    color:#0b7285;
    margin-bottom:40px;
}

.contenedor-paquetes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.paquete{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.paquete:hover{
    transform:scale(1.05);
}

.paquete img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.paquete h3{
    margin-top:20px;
    color:#0b7285;
}

.paquete p{
    padding:10px 20px;
}

.paquete h4{
    color:#ff6b6b;
    font-size:28px;
    margin:15px 0;
}

.paquete .boton{
    margin-bottom:25px;
}

/*=====================================
BENEFICIOS
=====================================*/

.beneficios{
    width:90%;
    margin:80px auto;
    text-align:center;
}

.beneficios h2{
    font-size:40px;
    color:#0b7285;
    margin-bottom:40px;
}

.contenedor-beneficios{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.beneficio{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
    transition:.3s;
}

.beneficio:hover{
    transform:translateY(-10px);
}

.beneficio i{
    font-size:55px;
    color:#ff6b6b;
    margin-bottom:20px;
}

.beneficio h3{
    color:#0b7285;
    margin-bottom:15px;
}

/*=====================================
DESTINOS
=====================================*/

.destinos{
    padding:80px 5%;
    background:white;
    text-align:center;
}

.destinos h2{
    font-size:40px;
    margin-bottom:40px;
    color:#0b7285;
}

.contenedor-destinos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.destino{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    background:white;
    transition:.4s;
}

.destino:hover{
    transform:translateY(-8px);
}

.destino img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.destino h3{
    margin:20px 0;
    color:#0b7285;
}

.destino .boton{
    margin-bottom:25px;
}

/*=====================================
TESTIMONIOS
=====================================*/

.testimonios{
    width:90%;
    margin:80px auto;
    text-align:center;
}

.testimonios h2{
    font-size:40px;
    color:#0b7285;
    margin-bottom:40px;
}

.contenedor-testimonios{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.testimonio{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
    transition:.3s;
}

.testimonio:hover{
    transform:translateY(-10px);
}

.testimonio img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.testimonio h3{
    color:#0b7285;
    margin-bottom:10px;
}

/*=====================================
GALERÍA
=====================================*/

.galeria{
    width:90%;
    margin:80px auto;
    text-align:center;
}

.galeria h2{
    font-size:40px;
    color:#0b7285;
    margin-bottom:40px;
}

.contenedor-galeria{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:15px;
}

.contenedor-galeria img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:12px;
    transition:.3s;
}

.contenedor-galeria img:hover{
    transform:scale(1.05);
}

/*=====================================
CONTACTO RÁPIDO
=====================================*/

.contacto-rapido{
    background:#0b7285;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.contacto-rapido h2{
    font-size:40px;
    margin-bottom:20px;
}

.contacto-rapido p{
    font-size:18px;
    margin-bottom:25px;
}

/*=====================================
FOOTER
=====================================*/

footer{
    background:#111;
    color:white;
    padding:60px 5%;
}

.footer-contenedor{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.footer-columna h3{
    margin-bottom:15px;
    color:#ffd43b;
}

.footer-columna p,
.footer-columna a{
    color:#ccc;
    font-size:14px;
}

.footer-columna ul li{
    margin-bottom:10px;
}

.redes a{
    display:inline-block;
    margin-right:10px;
    color:white;
    font-size:18px;
    transition:.3s;
}

.redes a:hover{
    color:#ff6b6b;
}

footer hr{
    margin:40px 0;
    border:1px solid #333;
}

.copyright{
    text-align:center;
    font-size:14px;
    color:#aaa;
}

/*=====================================
BOTÓN SUBIR
=====================================*/

.subir{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#ff6b6b;
    color:white;
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

.subir:hover{
    background:#1971c2;
    transform:translateY(-5px);
}

/*=====================================
RESPONSIVE (BÁSICO)
=====================================*/

@media(max-width:900px){

    header{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .texto h1{
        font-size:35px;
    }

    .slider{
        height:450px;
    }

    .slides img{
        height:450px;
    }
}

nav ul.activo{
    display:flex;
    flex-direction:column;
}