/* =================================================================
   FOOTER ESTILOS - FUNDECIMA
   ================================================================= */

.fundecima-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-top: 4px solid #1e3a8a;
    margin-top: auto;
    text-align: left !important;
}

.fundecima-footer * {
    text-align: left;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.institutional-banner {
    background: transparent !important;
    color: #1f1f1f;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    border-left: 4px solid #1e3a8a;
    text-align: left !important;
}

.institutional-banner i {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-info small {
    line-height: 1.5;
    text-align: left !important;
}

.footer-title {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.5rem;
    border-bottom: 2px solid #059669;
    padding-bottom: 10px;
    display: inline-block;
    text-align: left !important;
}

.footer-links {
    text-align: left !important;
    font-size: 1rem;
}

.footer-links a {
    color: #495057;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: left !important;
}

.footer-links a:hover {
    color: #1e3a8a;
    transform: translateX(5px);
}

.footer-links i {
    color: #059669;
    font-size: 0.8rem;
}

.footer-contact {
    text-align: left !important;
}

.footer-contact strong {
    color: #1e3a8a;
    text-align: left !important;
}

.footer-contact .text-muted {
    text-align: left !important;
}

.footer-social {
    text-align: left !important;
}

.footer-social h6 {
    color: #1e3a8a;
    font-weight: 600;
    text-align: left !important;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-start !important;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.social-icon i {
    font-size: 1rem;
}

.footer-bottom {
    background: rgba(30, 58, 138, 0.05);
    border-radius: 8px;
    padding: 12px 12px;
}

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

@media (max-width: 992px) {
    .fundecima-footer { padding: 30px 0; }
    .footer-logo { max-width: 150px; }
    .footer-title { font-size: 1rem; }
    .social-icon { width: 35px; height: 35px; }
}

@media (max-width: 768px) {
    .institutional-banner p { font-size: 0.9rem; }
}