
/* ==========================
   FOOTER CATALOGO EXACTO
   ========================== */
   
.ps-footer-catalogo {
    background: #223975;
    padding: 28px 0;   /* un poco más alto */
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.ps-footer-catalogo .container-fluid {
    max-width: 1600px;  
    margin: 0 auto;
    padding: 0 40px;
}

.ps-footer-catalogo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; /* menos separación exagerada */
}

/* Columnas */
.ps-footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Títulos */
.ps-footer-title,
.ps-footer-sub {
    font-weight: 700;
    font-size: 16px;
}

/* Texto normal */
.ps-footer-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;   /* más legible */
    line-height: 1.4;
}

/* WhatsApp icon */
.ps-footer-line img {
    width: 18px;
    height: 18px;
}

/* Logos */
.ps-footer-logos img {
    max-width: 100%;
    width: 600px;
    height: auto;
}

/* Columna redes */
.ps-footer-social {
    display: flex;
    flex-direction: column;
    align-items: center; /* centra todo */
    gap: 12px;
}

/* Título */
.ps-footer-social .ps-footer-title {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}

/* Contenedor iconos */
.ps-footer-icons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

/* El enlace ahora es el círculo */
.ps-footer-icons a {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #223975;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}

/* Hover */
.ps-footer-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

@media (max-width: 992px) {

    .ps-footer-catalogo-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ps-footer-logos img {
        width: 300px;
    }
}