@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    /* font-family: 'Open Sans', 'Arial', sans-serif; */
    font-family: 'Montserrat', 'Arial', sans-serif;
}
a{
    text-decoration: none;
    /* color:#fff; */
}
/*Contenedores*/
.container{
    width: 100%;
}
.row{
    max-width:1200px;
    box-sizing: border-box;
    margin:0 auto;
}
/*Tipografía*/

/*Navegacion*/
.navegacion{
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(255, 255, 255, 55%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.5s ease-in-out 0.5s;
    
}
.navegacion-solid{
    background: rgba(255, 255, 255, 1);
    
}
.nav{
    width:80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:0 auto;
    height: 75px;
}
.nav .nav-menu{
    width: 45%;
}
.nav .nav-logo{
    width:10%;
}
.menu{
    padding:0;
    display:flex;
    justify-content: space-between;
    
}
.menu  > li{
    list-style-type: none;
}
.menu li > a{
    text-decoration: none;
    color:#000;
    font-size:0.9rem;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}
.menu li > a.active{
    border-bottom:3px solid rgb(254 205 90);
}
.nav-logo{
    display:flex;
    justify-content: center;
    align-items: center;
}
/*Logos*/
.logo-cv{
    width: 90px;
    height: auto;
    padding-top:4px;
}
.nav-logo{
    margin:0 1.5rem;
}
/*Menú móvil*/
.nav-movil{
    position: absolute;
    z-index:999;
    display:none;

}
.nav-active{
    /* background: rgba(253, 253, 253, 0.4);
    backdrop-filter: blur(21px); */
    /* background-color:#23213c; */
    background-color:rgba(35,33,60,0.8);
    /* transition: background-color 3s ease-out 0.4s; */
    animation: showMenu .5s ease-in-out 1 forwards;
}
@keyframes showMenu{
    from{
        opacity: 0;
    }
    to{
        opacity:1;
    }
}
.nav-header{
    width: 100%;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top:20px;
    padding-left:30px;
    padding-right: 30px;
     
}
.nav-header .logo-movil a{
    margin: 0;
    line-height: 0;
}
.nav-header .logo-movil img{
    width:100px;
    height: auto;
    padding-top:10px;
}
.nav-header .nav-icon button{
    background: rgb(255, 255, 255);
    padding:15px 20px;
    border-radius:4px;
    border:1px solid #dedede;
}
.nav-header .nav-icon button .fa-solid{
    font-size:1.5rem;
    cursor:pointer;
}
.menu-movil{
    width:90%;
    height: 100vh;
    display: none;
}

.menu-movil ul li{
    list-style-type: none;
}
.menu-movil ul li a{
    display:block;
    color:#fff;
    width: 100%;
    padding:25px 0;
    font-weight: 600;
    font-size: 1.5rem;
    /* border-bottom:1px solid #f3f3f3; */
    /* text-transform: uppercase; */
}

/*Cards*/
.cards{
    /* width:800px; */
    width:800px;
    margin:-60px auto 20px;
    display:grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
    justify-items:center;
    position: relative;
    z-index:100;
}
.card-item{
    background-color: #ffffff;
    padding:20px 5px 30px; 
    text-align:center;
    border-radius:8px;
    border:1px solid #dedede;
    box-shadow: 1px 4px 2px #F3F3F3;
    box-sizing: border-box;
}

.card-item figure{
    margin: 0 0 20px 0;
}
.card-item figure img{
    width:100%;
    height: auto;
}
.card-item figure figcaption{
    padding:10px 0px;
}
.card-item p{
    margin: 0;
}
.btn-acceder{
    box-sizing: border-box;
    background-color: #18BB59;
    border:2px solid #18BB59;
    color: #fff;
    padding:10px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: ease-out 0.5;
}
.btn-acceder:hover{
    background-color: #fff;
    color: #18BB59;
    border:2px solid #18BB59;
    font-weight: bold;
}
/*Info support*/
.contact{
    text-align: center;
    height: 55px;
    background-image: linear-gradient(90deg, #0E3278 0%, #1d4698 48%, #07338b 100%);
    color:#fff;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.contact p a{
    font-weight: 600;
    color: #fff;
    /* background: #fff;
    padding:10px;
    border-radius:4px; */
}
.info-support{
    display: flex;
    justify-content: space-around;
    align-items: center;
    justify-content: center;
    gap:20px;
    margin: 0 auto;
    padding: 30px;
    
}
.info-left{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info-left p{
    line-height: 1.8;
}
.info-left .horarios{
    background:#FAECA3;
    border-radius:8px;
    padding:0 25px;
    height: 180px;
    box-shadow: 1px 4px 4px #f3f3f3;
}
.info-left .horarios h4{
    text-align: center;
    font-weight: 500;
}
.info-right img{
    width:480px;
    height: auto;
    border-radius:8px;
    box-shadow: 1px 6px 10px #dedede;
}
/*Preguntas frecuentes*/
.fq-section{
    margin-top:40px;
    padding: 0 30px;
}
.fq-title{
    font-weight: 700;
    border-bottom: 3px solid rgb(254 205 90);
    display: inline;
}
.fq-card{
    padding-top:8px;
}
.fq-question{
    font-weight: 600;
    font-size: 0.9rem;
}
.fq-answer{
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.8;
}
.fq-answer a{
    color: #000;
    font-weight: 500;
    text-decoration: underline;
}
/*Footer*/
.footer{
    /* background-color: #18BB59; */
    background: #23213c;
    color:#fff;
    margin-top:40px;
    padding: 8px 0;
    box-sizing: border-box;
}
.footer-box{
    width: 80%;
    margin: 8px auto 0;
    display:grid;
    grid-template-columns: repeat(2,1fr);
}
.logo-footer img{
    width:80px;
}
.footer-texto{
    font-size:0.8rem;
    font-weight: 300;
    text-align: center;
}
.social{
    display:flex;
    justify-content: right;
    align-items: center;
}
.social p{
    display:inline-block;
    padding:10px;
}
.social .fa-brands{
    font-size:1.8rem;
}
.social a{
    color:#fff;
}
/*mostrar botón de ir arriba*/
#gotop{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index: 999;
}
#gotop .goUp{
    display:grid;
    align-items: center;
    justify-items: center;
    width: 45px;
    height: 45px;
    border-radius:50%;
    background-color: #fff;
    border:1px solid rgb(191, 191, 191);
    cursor:pointer;
}
#gotop .fa-solid{
    font-size:1.9rem;
    color: rgb(71, 71, 71);
}
/* slider */
.slider{
    height: 120vh;
    margin-top:-76px;
    position: relative;
    color:#fff;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: 2s ;
}
.slider .list .item img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item::after{
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom:0;
    background-image: linear-gradient( to bottom,#7e7a7a 10%, transparent );
    opacity: 0.18;
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top:20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content img{
    width: 20%;
    margin:0;
}
.slider .list .item .content p:nth-child(2){
    text-transform: uppercase;
    letter-spacing: 8px;
}
.slider .list .item .content h2{
    font-size:70px;
    margin:0;
}
.slider .list .item.active{
    opacity:1;
    z-index:10;
}
@keyframes showContent {
    to{
       /* transform: translateY(30px); */
       filter:blur(0);
       opacity: 1;
    }   
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(2){
    /* transform: translateY(30px); */
    filter: blur(4px);
    opacity: 0;
    animation: showContent .5s .7s ease-in 1 forwards;
}
.slider .list .item.active p:nth-child(1){
    animation-delay: 0.2s;
}
.slider .list .item.active h2{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-delay:1.3s;
}
.arrows{
    position: absolute;
    top:30%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #fff;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size:x-large;
    font-weight: 800;
    color:#272525;
    transition:.5s;
}
.arrows button:hover{
    background-color: #3be4a3;
    color:#ffffff;
}
/*Responsive*/
@media (max-width:1200px) {
    .slider{
        height: 85vh;
    }
    
}
@media (max-width:992px){
    .nav{
        display:none;
        border:0;
    }
    .nav-movil{
        display:block;
    }
    
    .slider{
        margin-top:0;
    }
    .cards{
        width:90%;
    }
    .card-item img{
        width: 100%;
    }
}
@media (max-width:768px){
    .slider{
        height: 60vh;
    }
    .info-support{
        flex-direction:column-reverse;
        width:100%;
        gap: 10px;
    }
    .info-right img{
        width:100%;
    }
    .fq-question{
        margin: 15px 0;
    }
    .cards{
        padding: 0 20px;
    }
    .card-item{
        width:300px;
        height: auto;
    }
    .slider .list .item .content img{
        width:25%;
    }
}
@media (max-width:576px){
    .slider{
        height: 90vh;
        margin-top:0;
    }
    .footer-box{
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .info-left .horarios{
        height: auto;
    }
    
    .fq-section{
        margin-top:10px;
    }
    .cards{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .card-item{
        width:95%;
    }
    .slider .list .item .content h2{
        font-size:50px;
    }
    .slider .list .item .content img{
        width:30%;
    }
    .slider .list .item .content p:nth-child(2){
        letter-spacing: 6px;
    }
    .arrows{
        top:25%;
        right: 15px;
    }
}
@media (max-width:390px){
    .slider{
        height: 100vh;
    }
    .card-item{
        width:100%;
    }
}