/* ===========================================================
   FOOTER FUNDESI — Versión actualizada y coherente con “Qué hacemos”
   - Fondo degradado institucional suave (verde → rojo)
   - Barra tricolor superior
   - Tipografía en verde oscuro
   - Iconos limpios
   - Mayor coherencia UI/UX
   =========================================================== */

.fundesi-footer {
    color: #0b4f38; /* texto principal */
    font-size: 0.9rem;
}

/* ===========================================================
   BLOQUE PRINCIPAL DEL FOOTER (fondo, columnas, etc.)
   =========================================================== */
.fundesi-footer-main {
    position: relative;
    overflow: hidden;

    /* === FONDO INSTITUCIONAL SUAVE — MISMO DE “QUÉ HACEMOS” === */
    background: linear-gradient(
        135deg,
        rgba(15, 138, 59, 0.16),
        rgba(227, 49, 45, 0.14)
    );

    padding: 2.7rem 0 2.5rem;
}

/* === SEPARADOR TRICOLOR SUPERIOR === */
.fundesi-footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--fundesi-green),
        var(--fundesi-yellow),
        var(--fundesi-red)
    );
}

/* Eliminamos brillo del footer anterior */
.fundesi-footer-main::after {
    display: none;
}

/* ===========================================================
   COLUMNA 1: LOGO + TEXTO
   =========================================================== */

.footer-logo {
    max-height: 82px;
    display: block;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-text {
    color: #0b4f38;
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ===========================================================
   TÍTULOS (Links, Contacto, Redes)
   =========================================================== */

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.7rem;
    color: #0b4f38;
}

/* ===========================================================
   ENLACES (columna links)
   =========================================================== */

.footer-links li + li {
    margin-top: 0.2rem;
}

.footer-links a {
    text-decoration: none;
    color: #0b4f38;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ===========================================================
   CONTACTO (íconos y líneas)
   =========================================================== */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
}

.footer-icon {
    display: inline-flex;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.08);
    color: #0b4f38;
    font-size: 1.1rem;
}

/* ===========================================================
   REDES SOCIALES
   =========================================================== */

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-circle {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    border: 2px solid rgba(15, 23, 42, 0.15);
    transition: 0.25s ease;
}

/* Colores específicos por red */
.social-facebook  { background: rgba(24, 119, 242, 0.9); }
.social-instagram { background: rgba(225, 48, 108, 0.9); }
.social-youtube   { background: rgba(255, 0, 0, 0.9); }

.social-circle:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0b4f38;
    transform: translateY(-2px);
}

/* CTA mini */
.footer-mini-cta {
    font-size: 0.85rem;
    color: #c62828;
    font-weight: 700;
    text-decoration: none;
}

.footer-mini-cta:hover {
    text-decoration: underline;
}

/* ===========================================================
   BARRA INFERIOR (derechos reservados, botón donar)
   =========================================================== */

.fundesi-footer-bottom {
    background-color: #0a3c2b;
    color: #e5e7eb;
    font-size: 0.8rem;
    padding: 0.7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Botón "Donar ahora" */
.footer-cta {
    background-color: #e3312d;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-cta:hover {
    background-color: #bf1f24;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width: 767.98px) {

    /* Centrado total en móvil */
    .fundesi-footer-main .row > div {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }
}
