@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all .3s linear;
    font-family: "Quicksand", serif;
    text-decoration: none;
}

body{
    padding: 2rem 1%;
    min-height: 100vh;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,.4),
                0 7px 25px rgba(0,0,0, .2);
}
.header .navbar{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    
}

.header .navbar a{
    font-size: clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 1rem;
    color: rgb(45, 45, 81);
    font-weight: 500;
}

.header .navbar a:hover{
    color: orangered;
}

.header .navbar a img{
    width: 3rem;
}

/*Sección FAQ Empieza*/

.faq{
    margin-top: 6rem;
    width: 100%;
    background: #f8f8f8;
    padding: .5rem;
    outline: 1px solid #e8e8e8;
    border-radius: 5px;
}

.faq .title{
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 3vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 400;
    color: rgb(65, 64, 145);
}

.faq .infoText{
    font-size: clamp(.5rem, 3vw, 1rem);
    color: #979797;
    width: 100%;
    margin-bottom: 3rem;
    text-align: center;
}

.faq details{
    width: 100%;
    padding: .5rem;
    border-radius: 5px;
    border: 1px solid #cbcbcb;
    box-shadow: 0 3px 5px rgba(0,0,0,.3),
                0 5px 15px rgba(0,0,0, .1);
    margin-bottom: 1rem;
    background: #94b5c8;

}
.faq summary{
    list-style: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(1rem, 3vw, 2rem);
    padding: .7rem;
    cursor: pointer;
    margin-bottom: 1rem;
    color: #ffffff;
    border-bottom: 1px solid #cbcbcb;
    font-weight: bolder;
}

.faq details p{
    color: #5c5c5c;
    font-size: clamp(.8rem, 2vw, 1.2rem);
    font-weight: 500;
    width: 100%;
    padding: 1rem;
    background: #d1dee6;
    outline: 2px solid #9da0ae;
    cursor: default;
 
    border-radius: 3px;
}

.faq details p a{
    color: #141495;
    font-size: clamp(.8rem, 2vw, 1.2rem);
    font-weight: 500;
}

.faq details p a:hover{
    text-decoration: underline;
}

.icono i{
    padding: .5rem;
}

.icono{
    border-radius: 50px;
    background: #8895a5;
    color: #44616d;
}
.icono.active{
    rotate: 90deg;
    color:rgb(57, 57, 255);
    border-radius: 50px;
    box-shadow: 0 0 5px rgb(0, 255, 251),
                0 0 15px rgb(0, 255, 251);
    background: rgb(0, 204, 255);
    border: 1px solid rgb(0, 255, 221);
}
.icono.active i{
    color: rgb(0, 119, 255);
    filter: drop-shadow(0 0 5px rgb(0, 255, 213));
    transition-delay:.3s ;
}

/*Sección FAQ Termina*/