
/*Listado de Miembros - Banner*/

.banner{
    width: 100%;
    height: fit-content;
    max-height: 600px;
    position: relative;
    background: url(img/listado-miembros.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(217, 217, 217, 0.53); /* Ajusta la opacidad y el color según tus necesidades */
    z-index: 2;
}

.banner h1{
    font-size: 3rem;
    font-weight: 700;
    color: var(--tittles--dark);
    margin-bottom: 1rem;
    z-index: 2;
}

/*Listado*/

.listado{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg--lightgray);
}

.listado .cont{
    width: 80%;
    max-width: 1000px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.listado .cont .item{
    width: 100%;
    height: fit-content;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid var(--color-blue);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.listado .cont .item a{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-blue);
    font-weight: 600;
}

.listado .cont .item p{
    display: none;
    margin-top: 1rem;
}

.listado .cont .item.active p span{
    margin-top: 1rem;
    font-weight: 600;
}


.listado .cont .item.active p{
    display: block;
    margin-top: 1rem;
}

    /*Media Querys*/

    @media screen and (max-width:600px) {

        .banner h1{
            font-size: 2.3rem;
        }
        
    }

