/****COLORES***********----------------------------------*******/
:root {--main: #bc964f; --negro: rgb(10, 10, 10); --blanco: #ffffff;}

body{
    background: black;
}

.portadaAbout{
    margin-top: 0;
}

.about{
    font-family: "Inter", sans-serif;
    width: 100%;
    max-width: 900px;
    margin: auto;
    height: fit-content;
    font-weight: 300;
    background-color: black;
}


.sobre{
    font-size: 1.1em;
    line-height: 1.6;
    color: white;
    max-width: 1000px;
    height: fit-content;
    margin: auto;
    padding: 80px 20px;
}

.sobre h2{
    font-family: "Josefin Sans", sans-serif;
    color: var(--main);
    font-size: 6rem;
    font-weight: 200;
    margin-bottom: 20px;
    line-height: 6rem;
}

.sobre p{
   font-family: "Inter", sans-serif;
   font-style: italic;
}

/*********BIO******/
.bio{
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
    justify-content: center;
    font-family: "Inter", sans-serif;
    background: #000;
    width: 100%;
    height: auto;
    padding: 30px 20px 80px 20px;
}

.item{
    max-width: 300px;
}

.item h3{
    font-size: 4rem;
    color: var(--main);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.item img{
    border-radius: 10px;
}

.nombre{
    font-weight: 500;
    font-style: italic;
    margin-bottom: 8px;
    color: white;
}

.bioTitulo{
    color: white;
    font-size: 1rem;
    color: var(--main);
    margin-top: 5px;
}

.textoBio{
    font-size: 1rem;
    line-height: 1.5rem;
    font-style: italic;
    font-weight: 200;
    color: white;
    margin-top: 5px;
}


/*******FAQ*************************************************/

.faq{
    padding-top: 220px;
}

.faq h2{
     font-family: "Josefin Sans", sans-serif;
}

.faq h4{
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    line-height: normal;
    margin-bottom: 20px;
}


.pregunta{
    font-family: "Inter", sans-serif;
    font-style: italic;
    line-height: normal;
    font-weight: 600;
    color: var(--main);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.txt{
     font-family: "Inter", sans-serif;
     font-weight: 200;
     font-style: italic;
}

.destacado{
    color: var(--main);
    font-style: italic;
    font-family: "Inter", sans-serif;
    font-weight: 150;
}

a{
    color: wheat;
}



/******RESPONSIVE*****/

@media screen and (max-width:800px){
    .faq{
    padding-top: 150px;
}
    .item{
        margin-bottom: 70px;
    }
   
}


