.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #d91c1f;
    color: white;
    padding: 20px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: normal;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item img {
    width: 50px;
    height: 50px;
    transition: filter 0.3s ease-in-out;
}

.contact-item img:hover {
    filter: brightness(0) invert(0.3); /* Cambia el color del icono a #444545 */
}

.contact-item div {
    text-align: left;
}

@media (max-width: 600px) {
    .contact-container {
        flex-direction: row;
        justify-content: center;
        padding: 10px 0;
    }

    .contact-item div {
        display: none;
    }

    .contact-item {
        gap: 25px;
    }

    .contact-item img {
        width: 40px;
        height: 40px;
    }

    .contact-container .contact-item {
        margin: 0 10px;
    }
}
