/* =========================================================
   SSP FOOTER V2 PREMIUM ENTERPRISE
   Security Sales Perú
========================================================= */

.ssp-footer{
    position:relative;
    padding:90px 0 30px;
    overflow:hidden;
    background:
        linear-gradient(
            180deg,
            #040816 0%,
            #02050f 100%
        );
    border-top:
        1px solid rgba(255,255,255,0.06);
}

/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.ssp-footer::before{
    content:'';
    position:absolute;
    top:-250px;
    left:-250px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:
        rgba(255,107,0,0.08);
    filter:blur(130px);
    pointer-events:none;
}

.ssp-footer::after{
    content:'';
    position:absolute;
    bottom:-250px;
    right:-250px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:
        rgba(0,119,255,0.06);
    filter:blur(130px);
    pointer-events:none;
}

/* =========================================================
   CONTAINER
========================================================= */

.ssp-footer-wrapper{
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:
        1.3fr 0.8fr 0.8fr 1fr;
    gap:50px;
    padding-bottom:50px;
    border-bottom:
        1px solid rgba(255,255,255,0.06);
}

/* =========================================================
   BRAND
========================================================= */

.ssp-footer-brand{
    max-width:420px;
}

/* =========================================================
   LOGO
========================================================= */

.ssp-footer-logo{
    display:inline-block;
    margin-bottom:26px;
}

.ssp-footer-logo img{
    width:220px;
    height:auto;
    object-fit:contain;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.ssp-footer-description{
    color:
        rgba(255,255,255,0.70);
    font-size:0.98rem;
    line-height:1.9;
    margin-bottom:30px;
}

/* =========================================================
   SOCIALS
========================================================= */

.ssp-footer-socials{
    display:flex;
    gap:14px;
}

/* =========================================================
   SOCIAL BUTTON
========================================================= */

.ssp-footer-social{
    width:48px;
    height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        rgba(255,255,255,0.04);
    border:
        1px solid rgba(255,255,255,0.06);
    color:#ffffff;
    font-size:1rem;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
    backdrop-filter:blur(10px);
}

.ssp-footer-social:hover{
    transform:
        translateY(-5px);
    background:
        rgba(255,107,0,0.12);
    border-color:
        rgba(255,107,0,0.22);
    color:#ff6b00;
}

/* =========================================================
   COLUMN TITLE
========================================================= */

.ssp-footer-title{
    color:#ffffff;
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:28px;
    position:relative;
}

.ssp-footer-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:2px;
    background:#ff6b00;
}

/* =========================================================
   LINKS
========================================================= */

.ssp-footer-links{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.ssp-footer-links a{
    color:
        rgba(255,255,255,0.68);
    font-size:0.95rem;
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.ssp-footer-links a:hover{
    color:#ff6b00;
    transform:
        translateX(6px);
}

/* =========================================================
   CONTACT
========================================================= */

.ssp-footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* =========================================================
   CONTACT ITEM
========================================================= */

.ssp-footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

/* =========================================================
   ICON
========================================================= */

.ssp-footer-contact-icon{
    flex-shrink:0;
    width:46px;
    height:46px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        rgba(255,107,0,0.10);
    border:
        1px solid rgba(255,107,0,0.16);
    color:#ff6b00;
    font-size:1rem;
}

/* =========================================================
   INFO
========================================================= */

.ssp-footer-contact-info h5{
    color:#ffffff;
    font-size:0.95rem;
    font-weight:700;
    margin-bottom:6px;
}

.ssp-footer-contact-info p,
.ssp-footer-contact-info a{
    color:
        rgba(255,255,255,0.68);
    font-size:0.92rem;
    line-height:1.7;
}

/* =========================================================
   BOTTOM
========================================================= */

.ssp-footer-bottom{
    position:relative;
    z-index:5;
    padding-top:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* =========================================================
   COPYRIGHT
========================================================= */

.ssp-footer-copy{
    color:
        rgba(255,255,255,0.58);
    font-size:0.88rem;
}

/* =========================================================
   BOTTOM LINKS
========================================================= */

.ssp-footer-bottom-links{
    display:flex;
    align-items:center;
    gap:20px;
}

.ssp-footer-bottom-links a{
    color:
        rgba(255,255,255,0.58);
    font-size:0.88rem;
    transition:0.35s ease;
}

.ssp-footer-bottom-links a:hover{
    color:#ff6b00;
}

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

@media(max-width:1200px){

    .ssp-footer-wrapper{
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media(max-width:768px){

    .ssp-footer{
        padding:70px 0 25px;
    }

    .ssp-footer-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .ssp-footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:576px){

    .ssp-footer-logo img{
        width:180px;
    }

    .ssp-footer-social{
        width:44px;
        height:44px;
        border-radius:14px;
    }

    .ssp-footer-bottom-links{
        flex-wrap:wrap;
        justify-content:center;
    }

}