/*
    Paleta de Cores
    #0d0d0d
    #8c7916
    #bfa41f
    #f2d027
    #f2f2f2

*/
/*
    Importação de fontes.
    font-family: 'Montserrat', sans-serif;
*/
.socios-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F2D027;
    padding-top: 50px;
    padding-bottom: 50px;
}
.sc-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #8C7916;
}
.sc-modal{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
    gap: 10px;
    margin-top: 50px;
}

.sc-btn{
    border: none !important; 
}
.sc-img-thumb-area{
    width: 150px;
    height: 150px;
    border-radius: 100px;
    overflow: hidden;

}
.sc-img-thumb{
    width: 150px;
    height: 150px;
    border-radius: 100px;
    pointer-events: none;
}
.sc-img-thumb:hover{
    transform: scale(1.2);
    transition: all 400ms;
}
.sc-img-thumb-modal{
    width: 200px;
    height: 200px;
    pointer-events: none;
}
.sc-modal-card{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}