/*=====================================
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;
}

/*=====================================
HEADER
=====================================*/

header{

    width:100%;
    background:#ffffff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 80px;

    position:sticky;
    top:0;

    z-index:999;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

}

.logo img{

    width:170px;

}

nav ul{

    display:flex;
    list-style:none;

}

nav ul li{

    margin-left:35px;

}

nav ul li a{

    text-decoration:none;
    color:#1d3557;
    font-size:17px;
    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#ff9800;

}
.btn-nav {
    background:#ff9800;
    color:#fff !important;
    padding:8px 18px;
    border-radius:20px;
    transition:.3s;
}

.btn-nav:hover {
    background:#0b3b78;
}


/*=====================================
BANNER
=====================================*/

.banner{

    width:100%;
    height:600px;

    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../img/banner.JPG");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.contenido-banner{

    color:white;

}

.contenido-banner h1{

    font-size:60px;

    margin-bottom:20px;

    font-weight:700;

}

.contenido-banner p{

    font-size:22px;

    margin-bottom:35px;

}

.btn{

    display:inline-block;

    background:#ff9800;

    color:white;

    padding:16px 40px;

    text-decoration:none;

    border-radius:40px;

    font-size:18px;

    transition:.3s;

}

.btn:hover{

    background:#0d6efd;

    transform:translateY(-4px);

}

/*=====================================
SERVICIOS
=====================================*/

.servicios{

    width:90%;

    margin:80px auto;

}

.servicios h2{

    text-align:center;

    font-size:38px;

    color:#003366;

    margin-bottom:50px;

}

.contenedor-servicios{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.card{

    background:white;

    padding:40px 25px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.card i{

    font-size:55px;

    color:#ff9800;

    margin-bottom:20px;

}

.card h3{

    color:#003366;

}

/*=====================================
DESTINOS
=====================================*/

.destinos{

    width:90%;

    margin:auto;

    margin-bottom:90px;

}

.destinos h2{

    text-align:center;

    font-size:38px;

    color:#003366;

    margin-bottom:45px;

}

.contenedor-destinos{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.destino{

    background:white;

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.4s;

}

.destino:hover{

    transform:translateY(-8px);

}

.destino img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.destino h3{

    padding:20px;

    text-align:center;

    color:#003366;

}

/*=====================================
FOOTER
=====================================*/

footer{

    background:#003366;

    color:white;

    text-align:center;

    padding:30px;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:992px){

header{

    flex-direction:column;

    padding:20px;

}

nav ul{

    flex-wrap:wrap;

    justify-content:center;

}

nav ul li{

    margin:10px;

}

.contenedor-servicios{

    grid-template-columns:repeat(2,1fr);

}

.contenedor-destinos{

    grid-template-columns:repeat(2,1fr);

}

.contenido-banner h1{

    font-size:45px;

}

}

@media(max-width:768px){

.contenedor-servicios{

    grid-template-columns:1fr;

}

.contenedor-destinos{

    grid-template-columns:1fr;

}

.banner{

    height:500px;

}

.contenido-banner h1{

    font-size:35px;

}

.contenido-banner p{

    font-size:18px;

}

.btn{

    padding:14px 30px;

}

}

/*=====================================
BANNER NOSOTROS
=====================================*/

.banner-nosotros{

    width:100%;
    height:350px;

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/banner-nosotros.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.titulo-banner h1{

    color:#fff;
    font-size:55px;
    margin-bottom:10px;

}

.titulo-banner p{

    color:#fff;
    font-size:20px;

}

/*=====================================
NOSOTROS
=====================================*/

.nosotros{

    width:90%;
    margin:80px auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:50px;

}

.imagen-nosotros{

    flex:1;

}

.imagen-nosotros img{

    width:100%;
    border-radius:15px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.texto-nosotros{

    flex:1;

}

.texto-nosotros h2{

    color:#003366;
    font-size:35px;
    margin-bottom:20px;

}

.texto-nosotros p{

    text-align:justify;
    line-height:1.9;
    font-size:17px;

}

/*=====================================
MISION Y VISION
=====================================*/

.mision,
.vision{

    width:90%;
    margin:50px auto;

    background:#fff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.mision h2,
.vision h2{

    color:#003366;
    margin-bottom:15px;
    text-align:left;
    padding-left:10px;

}

.mision p,
.vision p{

    text-align:left;
    padding-left:10px;
    line-height:1.8;

}

/*=====================================
VALORES
=====================================*/

.valores{

    width:90%;
    margin:70px auto;

}

.valores h2{

    text-align:center;
    color:#003366;
    font-size:35px;
    margin-bottom:40px;

}

.contenedor-valores{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.valor{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 10px 20px rgba(0,0,0,.08);

    transition:.4s;

}

.valor:hover{

    transform:translateY(-8px);

}

.valor i{

    font-size:50px;

    color:#ff9800;

    margin-bottom:20px;

}

.valor h3{

    color:#003366;

}

/*=====================================
RESPONSIVE NOSOTROS
=====================================*/

@media(max-width:992px){

.nosotros{

    flex-direction:column;

}

.contenedor-valores{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contenedor-valores{

    grid-template-columns:1fr;

}

.titulo-banner h1{

    font-size:40px;

}

.texto-nosotros h2{

    font-size:30px;

}

}

/*=====================================
BANNER DESTINOS
=====================================*/

.banner-destinos{

    width:100%;
    height:350px;

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/banner-destinos.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.banner-destinos .titulo-banner h1{

    color:#fff;
    font-size:55px;
    margin-bottom:10px;

}

.banner-destinos .titulo-banner p{

    color:#fff;
    font-size:20px;

}

/*=====================================
DESTINOS
=====================================*/

.destinos-page{

    width:90%;
    margin:80px auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.card-destino{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.card-destino:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 35px rgba(0,0,0,.15);

}

.card-destino img{

    width:100%;
    height:240px;

    object-fit:cover;

}

.card-destino h3{

    color:#003366;

    text-align:center;

    margin-top:20px;

    font-size:28px;

}

.card-destino p{

    text-align:center;

    padding:15px 25px;

    color:#666;

    line-height:1.7;

}

.card-destino a{

    display:block;

    width:170px;

    margin:20px auto 30px;

    background:#003366;

    color:#fff;

    text-align:center;

    text-decoration:none;

    padding:12px;

    border-radius:30px;

    transition:.3s;

}

.card-destino a:hover{

    background:#ff9800;

}

/*=====================================
RESPONSIVE DESTINOS
=====================================*/

@media(max-width:992px){

.destinos-page{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.destinos-page{

    grid-template-columns:1fr;

}

.banner-destinos .titulo-banner h1{

    font-size:40px;

}

.banner-destinos .titulo-banner p{

    font-size:18px;

}

.card-destino img{

    height:220px;

}

}

/*=====================================
BANNER SERVICIOS
=====================================*/

.banner-servicios{

    width:100%;
    height:350px;

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/banner-servicios.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.banner-servicios .titulo-banner h1{

    color:#fff;
    font-size:55px;
    margin-bottom:10px;

}

.banner-servicios .titulo-banner p{

    color:#fff;
    font-size:20px;

}

/*=====================================
SERVICIOS
=====================================*/

.servicios-page{

    width:90%;
    margin:80px auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.servicio-box{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.servicio-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 35px rgba(0,0,0,.15);

}

.servicio-box i{

    font-size:60px;

    color:#ff9800;

    margin-bottom:20px;

}

.servicio-box h3{

    color:#003366;

    margin-bottom:15px;

}

.servicio-box p{

    color:#666;

    line-height:1.8;

}

/*=====================================
RESPONSIVE SERVICIOS
=====================================*/

@media(max-width:1200px){

.servicios-page{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.servicios-page{

    grid-template-columns:repeat(2,1fr);

}

.banner-servicios .titulo-banner h1{

    font-size:45px;

}

}

@media(max-width:768px){

.servicios-page{

    grid-template-columns:1fr;

}

.banner-servicios{

    height:280px;

}

.banner-servicios .titulo-banner h1{

    font-size:35px;

}

.banner-servicios .titulo-banner p{

    font-size:17px;

}

}

/*=====================================
BANNER HORARIOS
=====================================*/

.banner-horarios{

    width:100%;
    height:350px;

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/banner-horarios.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.banner-horarios .titulo-banner h1{

    color:#fff;
    font-size:55px;
    margin-bottom:10px;

}

.banner-horarios .titulo-banner p{

    color:#fff;
    font-size:20px;

}

/*=====================================
HORARIOS
=====================================*/

.horarios{

    width:90%;
    margin:80px auto;

}

.horarios h2{

    text-align:center;

    color:#003366;

    font-size:38px;

    margin-bottom:40px;

}

.tabla-responsive{

    overflow-x:auto;

}

table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

thead{

    background:#003366;

    color:#fff;

}

thead th{

    padding:18px;

    font-size:17px;

}

tbody td{

    text-align:center;

    padding:18px;

    border-bottom:1px solid #eee;

}

tbody tr{

    transition:.3s;

}

tbody tr:hover{

    background:#f5f9ff;

}

tbody tr:nth-child(even){

    background:#fafafa;

}

/*=====================================
RESPONSIVE HORARIOS
=====================================*/

@media(max-width:768px){

.banner-horarios{

    height:280px;

}

.banner-horarios .titulo-banner h1{

    font-size:36px;

}

.banner-horarios .titulo-banner p{

    font-size:17px;

}

table{

    min-width:700px;

}

}

/*=================================
            RESET
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#333;
}

/*=================================
            HEADER
==================================*/

header{
    width:100%;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:100;
}

.logo img{
    width:140px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:28px;
}

nav ul li a{
    text-decoration:none;
    color:#0b3b78;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.activo{
    color:#ff9800;
}

/*=================================
        BANNER
==================================*/

.banner-promociones{
    height:300px;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/banner-promociones.jpg") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.titulo-banner h1{
    color:#fff;
    font-size:50px;
    margin-bottom:10px;
}

.titulo-banner p{
    color:#fff;
    font-size:20px;
}


/*=================================
            FOOTER
==================================*/

footer{
    background:#0b3b78;
    color:#fff;
    text-align:center;
    padding:25px;
    margin-top:50px;
}

/*=================================
        RESPONSIVE
==================================*/

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .titulo-banner h1{
        font-size:36px;
    }

    .titulo-banner p{
        font-size:17px;
    }

}

/*=================================
        BANNER CONTACTO
==================================*/

.banner-contacto{

    height:300px;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../img/banner-contacto.jpg") center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.banner-contacto h1{

    color:#fff;
    font-size:50px;

}

.banner-contacto p{

    color:#fff;
    font-size:20px;
    margin-top:10px;

}

/*=================================
        CONTACTO
==================================*/

.contacto{

    width:90%;
    max-width:1200px;
    margin:70px auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

}

.formulario{

    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.formulario h2{

    color:#0b3b78;
    margin-bottom:25px;

}

.formulario form{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.formulario input,
.formulario textarea{

    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-family:'Poppins',sans-serif;
    font-size:15px;

}

.formulario textarea{

    resize:none;

}

.formulario button{

    background:#ff9800;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:30px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;

}

.formulario button:hover{

    background:#0b3b78;

}

/*=================================
            MAPA
==================================*/

.mapa{

    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.mapa h2{

    color:#0b3b78;
    margin-bottom:25px;

}

.mapa iframe{

    width:100%;
    height:430px;
    border:none;
    border-radius:12px;

}

/*=================================
        RESPONSIVE
==================================*/

@media(max-width:768px){

    .contacto{

        grid-template-columns:1fr;

    }

    .banner-contacto h1{

        font-size:38px;

    }

}

/*=====================================
    INFORMACIÓN HORARIOS
=====================================*/

.info-horario{

    width:90%;
    margin:35px auto;

    display:flex;
    align-items:center;

    gap:20px;

}

.icono{

    font-size:50px;
    color:#ff9800;

}

.texto-info p{

    margin:5px 0;
    color:#333;
    font-size:18px;
    font-weight:500;
    text-align:left;

}


/*=====================================
        PROMOCIONES
=====================================*/

.promociones{

    width:90%;
    max-width:1100px;

    margin:70px auto;

}

.promociones h2{

    text-align:center;

    color:#003366;

    margin-bottom:40px;

    font-size:36px;

}

.promos-principales{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.promo-grande{

    width:420px;

    background:#fff;

    border-radius:15px;

    padding:50px 30px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.promo-grande:hover{

    transform:translateY(-8px);

}

.promo-grande h3{

    color:#003366;

    font-size:38px;

    margin-bottom:20px;

}

.promo-grande p{

    font-size:18px;

    margin-bottom:30px;

    color:#555;

}

.promo-grande a{

    text-decoration:none;

    background:#ff9800;

    color:#fff;

    padding:12px 30px;

    border-radius:30px;

    transition:.3s;

}

.promo-grande a:hover{

    background:#003366;

}

.titulo-otras{

    text-align:center;

    color:#003366;

    margin-bottom:25px;

}

.otras-promociones{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.otras-promociones img{

    width:220px;

    height:140px;

    object-fit:cover;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.otras-promociones img:hover{

    transform:scale(1.05);

}



.promo-grande{

    width:420px;
    height:300px;

    border-radius:15px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    position:relative;

    overflow:hidden;

}

.promo1{

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../img/promo-fondo1.jpg");

    background-size:cover;
    background-position:center;

}

.promo2{

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../img/promo-fondo2.jpg");

    background-size:cover;
    background-position:center;

}


.promo-grande h3{

    color:white;

}

.promo-grande p{

    color:white;

}



/*=====================================
            FOOTER
=====================================*/

footer{

    background:#003366;
    color:white;
    margin-top:70px;

}

.footer-contenedor{

    width:90%;
    max-width:1200px;

    margin:auto;

    padding:50px 0;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:40px;

}

.footer-col h3{

    margin-bottom:20px;

    color:#ff9800;

}

.footer-col p{

    margin:10px 0;

    line-height:1.7;

}

.footer-col ul{

    list-style:none;

}

.footer-col ul li{

    margin-bottom:10px;

}

.footer-col ul li a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:#ff9800;

    padding-left:6px;

}

.redes{

    display:flex;

    gap:15px;

    margin-top:15px;

}

.redes a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:white;

    color:#003366;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:20px;

    transition:.3s;

}

.redes a:hover{

    background:#ff9800;

    color:white;

    transform:translateY(-5px);

}

.footer-bottom{

    background:#00264d;

    text-align:center;

    padding:18px;

    font-size:15px;

}