/* Estilos para el Footer */
.footer {
    background-color: rgba(255, 255, 255, 0.9); /* Fondo semi-transparente */
}

.footer h5 {
    font-family: 'Alfa Slab One', cursive; /* Fuente para títulos del footer */
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer p, .footer a {
    font-family: 'Alfa Slab One', sans-serif;
    font-size: 1rem;
    color: #f0f0f0;
}

.footer a:hover {
    color: #bdcfe8; /* Color al pasar el cursor sobre los enlaces */
    text-decoration: none;
}

.footer .fab {
    transition: color 0.3s ease;
}

.footer .fab:hover {
    color: #bdcfe8; /* Cambia el color de los iconos al pasar el cursor */
}

/* Responsividad para dispositivos móviles */
@media (max-width: 767px) {
    .footer h5 {
        font-size: 1.3rem;
    }

    .footer p, .footer a {
        font-size: 0.9rem;
    }

    .footer .fab {
        font-size: 1.2rem;
    }
}
