.footer {
    background-color: #ED1C24;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    text-decoration: none; /* Quita el subrayado */
}

.footer a img {
    width: 40px; /* Ajusta el tamaño del icono */
    height: 40px;
    margin: 5px;
    transition: transform 0.2s ease-in-out;
}

.footer a img:hover {
    transform: scale(1.2); /* Efecto de crecimiento al pasar el mouse */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 100;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer p {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 300;
}
