/* ==================================================
   CPSA - FOOTER INSTITUCIONAL
================================================== */

.cpsa-site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(255, 255, 255, .07),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(87, 181, 105, .08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #052f21 0%,
            #084a34 52%,
            #063827 100%
        );
    color: #fff;
}

.cpsa-site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .05) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
}

.cpsa-site-footer__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr .75fr .95fr .85fr;
    gap: 48px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 22px 54px;
}

.cpsa-site-footer__identity {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: #fff !important;
    text-decoration: none;
}

.cpsa-site-footer__identity img {
    display: block;
    width: 86px;
    max-height: 96px;
    object-fit: contain;
}

.cpsa-site-footer__identity span,
.cpsa-site-footer__identity small,
.cpsa-site-footer__identity strong {
    display: block;
}

.cpsa-site-footer__identity small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.cpsa-site-footer__identity strong {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
}

.cpsa-site-footer__brand > p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.7;
}

.cpsa-site-footer__column h2 {
    margin: 4px 0 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cpsa-site-footer__column > a {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
}

.cpsa-site-footer__column > a:hover {
    color: #fff !important;
    transform: translateX(4px);
}

.cpsa-site-footer__contact p {
    margin: 0 0 11px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.5;
}

.cpsa-site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.cpsa-site-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: #fff !important;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.cpsa-site-footer__social a:hover {
    border-color: #fff;
    background: #fff;
    color: #0d6b43 !important;
    transform: translateY(-3px);
}

.cpsa-site-footer__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 21px 22px 25px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
    line-height: 1.5;
}

/* Tablet */

@media (max-width: 950px) {

    .cpsa-site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
        padding-top: 60px;
    }
}

/* Móvil */

@media (max-width: 600px) {

    .cpsa-site-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 52px 18px 38px;
    }

    .cpsa-site-footer__identity img {
        width: 76px;
    }

    .cpsa-site-footer__identity strong {
        font-size: 22px;
    }

    .cpsa-site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px 24px;
    }
}
/* ==================================================
   OCULTAR BARRA INFERIOR ORIGINAL DE TALEMY
================================================== */

body:has(.cpsa-site-footer) .footer-bottom:not(.cpsa-site-footer__bottom),
body:has(.cpsa-site-footer) .footer-bottom-wrapper,
body:has(.cpsa-site-footer) .bottom-footer,
body:has(.cpsa-site-footer) .site-info,
body:has(.cpsa-site-footer) .copyright-area,
body:has(.cpsa-site-footer) .footer-copyright {
    display: none !important;
}