.contenedor-redes {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 40px 0;
    background-color: #ffffff;
    font-family: sans-serif;
}

.red-social {
    font-size: 50px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.facebook {
    color: #1877F2;
}

.instagram {
    color: #E4405F;
}

.whatsapp {
    color: #25D366;
}

.red-social:hover {
    transform: scale(1.15);
}