/**
 * DPEC portal — variables compartidas (login + app autenticada)
 */
:root {
    --dpec-green: #1e5c3a;
    --dpec-green-mid: #2a7a4f;
    --dpec-green-lt: #3a9e68;
    --dpec-green-xs: #e8f5ee;
    --dpec-red: #c0392b;
    --dpec-red-lt: #e74c3c;
    --dpec-red-soft: #fdecea;
    --neutral-50: #f6f9f6;
    --neutral-100: #edf2ed;
    --neutral-200: #d4e2d4;
    --neutral-700: #3d5c3d;
    --neutral-900: #1a2e1a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(30, 92, 58, 0.08);
    --shadow-card: 0 4px 24px rgba(30, 92, 58, 0.1), 0 1px 4px rgba(30, 92, 58, 0.06);
    --shadow-login-shell: 0 20px 60px rgba(30, 92, 58, 0.18), 0 4px 16px rgba(30, 92, 58, 0.1);
    --shadow-hover: 0 12px 40px rgba(30, 92, 58, 0.18), 0 2px 8px rgba(30, 92, 58, 0.1);
    --shadow-btn: 0 6px 24px rgba(30, 92, 58, 0.38);
    --radius: 18px;
    --radius-card: 20px;
    --radius-input: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer unificado (login, portal, layout app) */
.main-container > footer.portal-site-footer {
    margin-top: auto;
    flex-shrink: 0;
}

footer.portal-site-footer {
    background: linear-gradient(180deg, #2a6b47 0%, var(--dpec-green) 48%, #1d4a30 100%);
    padding: 32px 24px 28px;
    box-shadow: 0 -8px 32px rgba(21, 74, 46, 0.18);
}

footer.portal-site-footer .footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

footer.portal-site-footer .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

footer.portal-site-footer .footer-logo-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

footer.portal-site-footer .footer-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

footer.portal-site-footer .footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

footer.portal-site-footer .footer-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

footer.portal-site-footer .social-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

footer.portal-site-footer .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
    color: #fff;
}

footer.portal-site-footer .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #fff;
}

footer.portal-site-footer .social-btn svg {
    width: 18px;
    height: 18px;
}

footer.portal-site-footer .social-btn.fb {
    background: #1877f2;
}
footer.portal-site-footer .social-btn.tw {
    background: #1da1f2;
}
footer.portal-site-footer .social-btn.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
footer.portal-site-footer .social-btn.yt {
    background: #ff0000;
}

footer.portal-site-footer .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

footer.portal-site-footer .contact-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

footer.portal-site-footer .contact-pill svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

footer.portal-site-footer .contact-pill-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    text-align: start;
}

footer.portal-site-footer .contact-pill-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

footer.portal-site-footer .footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

footer.portal-site-footer .footer-copy-wrap {
    max-width: 960px;
    margin: 24px auto 0;
    padding: 0 24px;
}

footer.portal-site-footer .footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    text-align: center;
    margin: 14px 0 0;
}

@media (min-width: 640px) {
    footer.portal-site-footer .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    footer.portal-site-footer .footer-brand {
        align-items: flex-start;
    }
    footer.portal-site-footer .social-row {
        justify-content: flex-start;
    }
    footer.portal-site-footer .footer-contact {
        align-items: flex-start;
    }
}
