@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

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

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

.contenedor {
    max-width: 968px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

body {
    margin: 3rem 0 0 0;
    font-family: 'Open Sans', sans-serif;
    font-size: .938rem;
    color: #053742;
    overflow-x: hidden;
}

section {
    padding: 4.5rem 0 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

a {
    text-decoration: none;
}
/*------HEADER------*/
header {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    font-family: 'Open Sans', sans-serif;
}

header.abajo{
    background: rgb(255, 255, 255);
    height: 10vh;
}



#prueba.desaparecer{
    opacity: 0;
}

.nav {
    height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
    color: white;
    font-size: small;
    font-weight: 600;
    margin-top: 1rem;
}

.logo img{
    min-width: 50px;
    width: 2%;
    margin-right: .5rem;
}

.nav-lista {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

.nav-lista li a{
    color: #39A2DB;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-lista li a:hover{
    color:#25698e;
}

.activo{
    position: relative;
    color: white;
}

.activo::before{
    content: '';
    position: absolute;
    background-color: white;
    width: 100%;
    height: 2px;
    bottom: -.75rem;
    left: 0;
}

.palanca{
    color: white;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    flex-wrap: nowrap;
}

.weather{
    display: flex;
    flex-wrap: nowrap;
    width: 30vw;
    justify-content: end;
}

.weather h1{
    font-size:small;
}

.city{
    margin-right: .5rem;
}

.weather.loading {
    visibility: hidden;
    max-height: 20px;
    position: relative;
}

.weather.loading:after {
    visibility: visible;
    content: "Loading...";
    color: white;
    position: absolute;
    top: 0;
    left: 20px;
}

.palanca i{
    cursor: pointer;
    margin-left: 1.5rem;
}


.cerrar{
    position: absolute;
    top: .75rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #39A2DB;
    cursor: pointer;
}

.menu {
    position: fixed;
    background-color: white;
    top: 0;
    right: -100%;
    width: 25%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
}



.show-menu {
    right: 0;
}

/*------SECCION PRINCIPAL------*/
#paginaPrincipal{
    color:white;
}

#paginaPrincipal img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: 83%;
}

.contenedorPrincipal{
    position: relative;
    height: calc(100vh - 3rem);
    align-content: center;
    row-gap: 3rem;
}

.textoPrincipal h1{
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 100%;
    font-family: 'Raleway', sans-serif;
}

.textoPrincipal p{
    font-size: .75rem;
    margin-bottom: 2.5rem;
}

/*------SECCION ACERCA DE------*/
.grid1{
    display: grid;
}

.acercaDe-contenedor{
    gap: 4rem;
}

.acercaDe-info{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.acercaDe-info h2{
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 100%;
    color: #989fa1;
    font-weight: 100;
    font-family: 'Raleway', sans-serif;
}

.acercaDe-info span{
    color: #39A2DB;
    font-weight: 700;
}

.descripcion{
    margin-bottom: 2rem;
    color: #989fa1;
}



.grupo-imagenes{
    grid-template-columns: 2rem repeat(2,1fr) 2rem repeat(2,1fr) 2rem;
}

.imagen-box{
    display: flex;
    min-height: 15rem;
    box-shadow: 2px 2px 1rem rgba(0,0,0,.1);
    overflow: hidden;
}

#acercaDe .imagen-box{
    min-height: 20rem;
}

.imagen-box img{
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    max-width: 100%;
    display: block;
}

.imagen-box:hover img{
    transform: scale(1.1);
}

.imagen-izquierda{
    grid-column: 1/4;
    grid-row: 1/span 10;
    z-index: 4;
}

.imagen-centro{
    grid-column: 3/6;
    grid-row: 7/span 10;
    
}

.imagen-derecha{
    grid-column: 5/-1;
    grid-row: 3/span 10;
    z-index: 4;
    object-position: 20% 10%;
}

/*------SECCION OPINIONES------*/


#opiniones h2{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5rem;
    line-height: 100%;
    color: #989fa1;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

#opiniones span{
    color: #39A2DB;
    font-weight: 700;
}

.swiper-slide{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 120%;
    color: #989fa1;
    font-family: 'Raleway', sans-serif;
}

.swiper-slide p{
    margin-bottom: 1rem;
}

.swiper-slide a{
    color: #989fa1;
    font-weight: 400;
}

/*------SECCION ELEGIR------*/

#elegir h2{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    line-height: 100%;
    color: #989fa1;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

#elegir span{
    color: #39A2DB;
    font-weight: 700;
}

.elegir{
    grid-template-columns: .7fr;
    justify-content: center;
    text-align: center;
}

.elegir-contenedor{
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.elegir-contenedor i{
    color: #ffffff;
    border: 1rem solid #39A2DB;
    background-color: #39A2DB;
    border-radius: 50%;
    font-size: 3rem;
}

.grupo-item{
    justify-content: center;
}

.grupo-item h3{
    margin-top: 1rem;
    margin-bottom: .5rem;
    color: #989fa1;
    font-weight: 700;
}

.grupo-item p{
    color: #989fa1;
}

/*------SECCION TOURS------*/

.tours-titulo h2{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    line-height: 100%;
    color: #989fa1;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.tours-titulo span{
    color: #39A2DB;
    font-weight: 700;
}


.tours-contenedor{
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
}

.card{
    height: 230px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card:hover img{
    transform: scale(1.1);
}

.card img{
    height: 230px;
    display: block;
    transition: .5s;
}

.card h3{
    font-size: 1rem;
    margin-bottom: .25rem;
}

.card span{
    display: block;
    font-size: .75rem;
    margin-bottom: .25rem;
}

.tours-contenido{
    color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content:end;
    padding: .75rem .75rem 1rem;
}



/*------SECCION GALERIA------*/


#galeria h2{
    text-align: center;
    font-size: 2rem;
    line-height: 100%;
    color: #989fa1;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

#galeria h2 span{
    color: #39A2DB;
    font-weight: 700;
}

.fotografia{
    display: grid;
    grid-template-columns: .7fr;
    justify-content: center;
}

.fotografia-contenedor{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    grid-gap: 10px;
}

.fotografia-imagen-box{
    /*min-height: 175px;*/
    box-shadow: 2px 2px 1rem rgba(0,0,0,.1);
    overflow: hidden;
    cursor: pointer;
}

#galeria .fotografia-imagen-box{
    /*min-height: 175px;*/
    aspect-ratio: 1;
}

.fotografia-imagen-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
}

.fotografia-imagen-box:hover img{
    transform: scale(1.1);
}

.fotografia-imagen-box:nth-child(1){
    grid-column-start: span 2;
    grid-row-start: span 2;
}


.fotografia-imagen-box:nth-child(11){
    grid-column-start: span 2;
    grid-row-start: span 2;
}

.contenedor-full-imagen{
    background: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: 0.25s ease-out;
}

.contenedor-full-imagen.abrir{
    opacity: 1;
    pointer-events: all;
}

.contenedor-full-imagen p{
    color: white;
    font-size: 2rem;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -5%);
}

.full-imagen{
    position: absolute;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    transition: all 0.25s ease-out;
}

.full-imagen.abrir{
    transform: translate(-50%, -50%) scale(1);
}

.video{
    padding: 20px;
    margin-bottom: 5rem;
    display: grid;
    justify-content: center;
    grid-template-columns: .7fr;
}

.iframe-contenedor{
    margin-top: 1rem;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    z-index: 2;
}

.cuadrado{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #39A2DB;
}

.cuadrado1{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #bebebe;
    margin: 2rem 2rem;
}

.iframe-contenedor iframe{
    position: absolute;
    margin: 1rem 1rem;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border: 0;
}
/*------BOTONES------*/

.boton1{
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    color: white;
    background-color: #39A2DB;
    transition: .3s;
}

.boton1:hover{
    background-color: #25698e;
}

/*------SECCION FOOTER------*/

footer{
    background: #38a2db;
    padding:2rem 7%;
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

.footer-contenedor{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap:1.5rem;
}

.caja h3{
    font-size: 1rem;
    color:rgb(255, 255, 255);
    padding:1rem 0;
    
}

.caja a{
    display: block;
    font-size: .75rem;
    color:rgb(255, 255, 255);
    padding:1rem 0;
}

.caja p{
    display: block;
    font-size: .75rem;
    color:rgb(255, 255, 255);
    padding:1rem 0;
}

.caja a i{
    padding-right: .5rem;
    color:rgb(255, 255, 255);
}

.caja a:hover i{
    transition:all .2s linear;
    padding-right: 2rem;
}

.creditos{
    padding:1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    color:rgb(255, 255, 255);
    font-size: .7rem;
}
/*----------SCROLL BAR----------*/

html::-webkit-scrollbar{
    width:.8rem;
}

html::-webkit-scrollbar-track{
    background:transparent;
}

html::-webkit-scrollbar-thumb{
    background:#39A2DB;
    border-radius: 5rem;
}

/*----------MEDIA QUERIES----------*/

/*------PANTALLAS PEQUEÑAS------*/
@media screen and (max-width: 340px) {
    
    /*------SECCION ACERCA DE------*/
    .imagen-box{
        min-height: 15rem;
    }
    #acercaDe .imagen-box{
        min-height: 15rem;
    }
    .acercaDe-info h1{
        font-size: 1.5rem;
    }
    .acercaDe-contenedor{
        gap: 0;
    }
    .grid{
        gap: 0;
    }
    .tours-contenedor {
        grid-template-columns: max-content;
        justify-content: center;
    }
    /*------SECCION GALERIA------*/
   

    .fotografia{

        grid-template-columns: 1fr;

    }
}


@media screen and (max-width: 568px) {

    #opiniones h1{
        font-size: 1rem;
    }


    #opiniones a{
        font-size: .75rem;
    }

    #opiniones p{
        font-size: .75rem;
    }

    #elegir h1{
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    #elegir h3{
        font-size: .75rem;
    }
    #elegir p{
        font-size: .50rem;
    }

    .fotografia,.video{
   
        grid-template-columns: 1fr;
    }
    .elegir-contenedor i {
        font-size: 2rem;
    }
}
/*------PANTALLAS NO TAN PEQUEÑAS------*/
@media screen and (min-width: 568px) {


    .tours-contenedor {
        grid-template-columns: repeat(3, max-content);
    }
}

@media screen and (min-width: 768px){
    .acercaDe-contenedor{
        grid-template-columns: repeat(2, 1fr);
    }

    .fotografia{

        grid-template-columns: 1fr;

    }
    .tours-contenedor {
        padding-top: 2rem;
    }
}

@media screen and (min-width: 968px) {
    /*------HEADER------*/
    .logo{
        font-size: x-large;
    }

    .weather h1{
        font-size: medium;
    }
    /*------SECCION PRINCIPAL------*/
    .textoPrincipal h1 {
        font-size: 4rem;
    }

    .textoPrincipal p {
        font-size: 1rem;
    }
    
    .textoPrincipal {
        align-self: flex-end;
    }

    footer {
        padding: 2rem;
    }
    footer .caja h3{
        font-size: 2rem;
    }
    footer .caja a{
        font-size: 1rem;
    }
    footer .caja p{
        font-size: 1rem;
    }
}

/*------PANTALLAS GRANDES------*/
@media screen and (min-width: 1024px) {

    .contenedor {
        margin-left: auto;
        margin-right: auto;
    }

    .tours-contenedor {
        gap: 3rem 2rem;
    }

    .card, .card img {
        height: 263px;
    }

    .contenedorPrincipal {
        grid-template-rows: 1.5fr .5fr;
    }

}






/*----MENU QUERIES----*/
@media screen and (max-width: 515px) {
    .menu {
        width: 70%;
    }
    .weather{
        display: none;
    }
}

@media (min-width: 516px) and (max-width: 968px) {
    .menu {
        width: 40%;
    }
}


@media screen and (min-width: 1023px) {
    .menu {
        width: 20%;
    }
}