/* ===== FOOTER ===== */
.footer {
    background: #222;
    color: #fff;
    padding: 15px 20px;
    margin-top: 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.footer h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: #0077b6;
}

.footer a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer a:hover {
    color: #0077b6;
}

.footer-contacto p {
    margin: 3px 0;
    font-size: 13px;
}

.footer-derechos {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
}

/* Contenedor redes */
.footer-redes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-redes h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #ffffff;
}

/* Links */
.footer-redes a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-redes a i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Facebook */
.footer-redes a .fa-facebook {
    color: #1877F2;
    /* Azul oficial */
}

.footer-redes a:hover .fa-facebook {
    transform: scale(1.2);
    color: #145dbf;
}

/* Instagram (degradado) */
.footer-redes a .fa-instagram {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-redes a:hover .fa-instagram {
    transform: scale(1.2);
}

/* LinkedIn */
.footer-redes a .fa-linkedin {
    color: #0A66C2;
    /* Azul oficial */
}

.footer-redes a:hover .fa-linkedin {
    transform: scale(1.2);
    color: #004182;
}

/* WhatsApp */
.footer-redes a .fa-whatsapp {
    color: #25D366;
    /* Verde oficial */
}

.footer-redes a:hover .fa-whatsapp {
    transform: scale(1.2);
    color: #1ebe57;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-derechos {
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }

}