.contato_socios_item {
    min-width: 25%;
    padding: 0 1rem;  
    box-sizing: border-box; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; 
}

.contato_socios_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contato_socios_content h3 {
    font-size: 24px;
    padding-bottom: .6rem;
}

.contato_socios_content p {
    font-size: 14px;
    padding-bottom: 1rem;
    text-align: center;
}

.socio_img {
    width: 75px; 
    height: 75px;
    border-radius: 55%; 
}

.socio_img_1 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/240305_3725_NELMARAARBEX-square:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_img_2 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/Sebastian%20Yoshizato%20Soares_B_0012_DEZ23:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_img_3 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/brunaferrari_B_0003_SET24:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_img_4 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/ESMARTINS_A_001_110105:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_img_5 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/marciobarreto_A_008_110124-edit:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_img_6 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/240305_3313_%20MARIAEUGENIABUOSI:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_img_7 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/felipe-salgado-headshot-v2:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_img_8 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/kinhonda_O_0001_JAN2023_B_:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_img_9 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/andre-winter-2:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.socio_img_10 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/luiz_savio:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.socio_img_11 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/fernando_fernandes:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.socio_img_12 {
    background-image: url("https://kpmg.scene7.com/is/image/kpmg/afonso_silva:cq5dam.web.424.424");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.socio_contato_button {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
}

.socio_contato_button a,
.contato_socios_item a {
    text-decoration: none;
    color: inherit;
}

.contato_socios_item a:hover {
    text-decoration: underline;
}

.socio_contato_linkedin {
    border: none;
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.socio_contato_linkedin img {
    max-width: 28px;
} 

/* */ 

.slider_container {
    display: flex;
    align-items: center;
    position: relative;
    gap: .2rem;
}

.slider_wrapper {
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

/* Botões de navegação */
.slider_arrow {
    color: var(--cor-kpmgblue); 
    border: none; 
    cursor: pointer;
    font-size: 20px;
    width: 42px;
    height: 42px;
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s;
}

.slider_arrow:hover {
    color: var(--cor-white); 
    background: #003366;
}

/* Bolinhas de paginação */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.pagination span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.pagination span.active {
    background: #00549F;
}

/* 📌 Responsivo */
@media (max-width: 768px) {
    .contato_socios_item {
        min-width: 100%; /* Apenas 1 item por vez no mobile */
    }

    .pagination {
        display: none; /* Esconde as bolinhas no mobile */
    }
}
