/* footer.css - Estilos del footer */

.footer {
    background: #ffffff;
    color: #000000;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #4a5568;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #000000;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #000000;
}

.copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.copyright p {
    margin: 0;
    color: #6b7280;
    font-size: 0.8rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}
