.contact-card {
    height: 350px;
    /*width: 400px;*/
    min-width: 300px;
    max-width: 400px;    
    background-color: var(--background-color);
    box-shadow: 0 4px 8px var(--box-shadow-card);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    
    padding: 20px;
    display: flex;
    /*justify-content: space-evenly;*/
    flex-direction: column;
    margin: 0 auto;
}

.contact {
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
}

.button_icon i {
    font-size: 2rem;  /* Aumenta el tamaño del icono */
    color: var(--primary-color);  /* Color del icono */
}

.button_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;  /* Ajusta el tamaño del botón */
    height: 60px;
    border-radius: 50%;  /* Hace los botones redondos */
    background-color: var(--background-color-tbody);
    box-shadow: 0 0 10px var(--box-shadow);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button_icon:hover {
    background-color: var(--primary-color-sub2);  /* Cambio de color al pasar el cursor */
    transform: scale(1.1);  /* Efecto de agrandamiento */
}

@media (max-width: 768px) {
    .contact-card {
        overflow: scroll;
        min-width: 150px;
    }
    .contact {
        padding: 0px;
    }
}