/* ==========================================================
   FOOTER MODERNO MUNICIPAL
========================================================== */

.footer-municipal {

    position: relative;

    overflow: hidden;

    padding-top: 45px;
    padding-bottom: 20px;

    background:
        linear-gradient(
            135deg,
            #4a1836 0%,
            #662445 40%,
            #7b2f66 75%,
            #8b3d7b 100%
        );
}

/* brillo suave */
.footer-overlay {

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,0.08),
            transparent 35%
        );

    pointer-events: none;
}

/* ==========================================================
   LOGO
========================================================== */

.footer-logo {

    max-width: 145px;

    height: auto;

    filter:
        drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}

/* ==========================================================
   REDES SOCIALES
========================================================== */

.redes-sociales a {

    color: #ffffff;

    font-size: 1.7rem;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease,
        color 0.3s ease;
}

.redes-sociales a:hover {

    transform:
        translateY(-4px)
        scale(1.08);

    opacity: 0.85;

    color: #f3d4ee;
}

/* ==========================================================
   COLUMNAS INFO
========================================================== */

.info-col {

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: center; 
    text-align: center;  
}

/* títulos alineados */
.info-col h5 {

    height: 55px;

    display: flex;

    align-items: flex-end;

    margin-bottom: 1rem !important;

    color: #ffffff;

    font-size: 1.1rem;

    font-weight: 800;
}

/* textos */
.footer-municipal p {

    font-size: 0.94rem;

    color: rgba(255,255,255,0.9);

    line-height: 1.7;
}

/* iconos */
.footer-municipal p i {

    color:
        rgba(255,255,255,0.65);
}

/* links */
.footer-municipal a {

    transition:
        opacity 0.3s ease;
}

.footer-municipal a:hover {

    opacity: 0.8;
}

/* ==========================================================
   LINEA
========================================================== */

.footer-municipal hr {

    border-color:
        rgba(255,255,255,0.15);
}

/* ==========================================================
   COPYRIGHT
========================================================== */

.footer-municipal .small {

    color:
        rgba(255,255,255,0.55) !important;

    font-size: 0.82rem;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 991px) {

    .footer-municipal {

        text-align: center;
    }

    .redes-sociales {

        justify-content: center;
    }

    .info-col {

        margin-bottom: 2rem;
    }

}