/* ================= FOOTER ================= */
.footer {
    background: #091a2b;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Arial', sans-serif;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-sobre,
.footer-links,
.footer-contacto,
.footer-redes {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer h3, 
.footer h4 {
    color: #fca311;
    margin-bottom: 15px;
}

.footer p, 
.footer li, 
.footer a {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fca311;
}

.footer-contacto i {
    margin-right: 8px;
    color: #fca311;
}

.footer-redes .redes-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.2rem;
    color: #fff;
    transition: 0.3s;
}

.footer-redes .redes-icons a:hover {
    color: #fca311;
}

.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-sobre h3,
    .footer-links h4,
    .footer-contacto h4,
    .footer-redes h4 {
        font-size: 1.3rem;
    }

    .footer p,
    .footer li,
    .footer a {
        font-size: 0.9rem;
    }

    .footer-redes .redes-icons a {
        font-size: 1.5rem;
    }
}