/* 
    Créditos: Cristhian Yalle 
    Descripción: Estilos responsivos para el sitio web de la comunidad de desarrolladores Grupo Yalle.
    Fecha: 2025-06-15
    Licencia: MIT License
    Este archivo contiene estilos CSS para hacer que el sitio web sea responsivo y se adapte a diferentes tamaños de pantalla.
*/

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px 40px 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ff8eff;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff8eff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social a {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ff8eff;
    transform: scale(1.2);
}

.copyright {
    margin-top: 30px;
    color: #666;
    font-size: 14px;
}