/* =================================================================
   FOOTER ESTILOS
   ================================================================= */

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

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

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

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

.mental-health-banner {
    background: transparent !important;
    color: #1f1f1f;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(90, 158, 127, 0.3);
    border-left: 4px solid #6b4c7f;
    text-align: left !important;
}

.mental-health-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: #6b4c7f;
    font-weight: 700;
    font-size: 1.5rem;
    border-bottom: 2px solid #5a9e7f;
    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: #6b4c7f;
    transform: translateX(5px);
}

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

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

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

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

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

.footer-social h6 {
    color: #6b4c7f;
    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, #6b4c7f 0%, #5a3f6f 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(107, 76, 127, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, #5a9e7f 0%, #4a8b6f 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(90, 158, 127, 0.4);
}

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

.footer-bottom {
    background: rgba(107, 76, 127, 0.05);
    border-radius: 8px;
    padding: 12px 12px;
}

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

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

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