/* ===========================
   FOOTER PUBLI SANJO
=========================== */

.ps-footer {
    background: #223975;
    padding: 70px 0;
    color: white;
}

.ps-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

/* Columna base */
.ps-footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 20px;
}

.ps-footer-contact-title {
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 15px;
}

.ps-footer-contact {
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 10px;
}

.ps-footer .ps-footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ps-footer .ps-footer-social-col h5 {
    margin-left: 42px;
}

.ps-footer .ps-footer-social-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* importante */
}

.ps-footer .ps-footer-social li {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    column-gap: 12px;

    font-weight: 300;
    font-size: 18px;
    margin-bottom: 14px;
}

.ps-footer .ps-footer-social img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Marca derecha */

.ps-footer-brand {
    text-align: right;
}

.ps-footer-main-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 60px; /* más cercano a proporción real */
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.ps-footer-logos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.ps-footer-logos img {
    height: 55px; /* más grande */
}

.ps-footer-divider {
    width: 2px;
    height: 45px;
    background: rgba(255,255,255,0.4);
}

.ps-footer-brand {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ps-footer-logo-combo {
    width: 400px; 
    height: 200px;  
    object-fit: contain;
}

@media (max-width: 768px) {

    .ps-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .ps-footer .ps-footer-social-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ps-footer-brand {
        justify-content: center;
    }

    .ps-footer-logo-combo {
        width: 260px;
        height: auto;
    }

}


