/* ===== RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#f8fafc,#eef2ff);
    color:#1e293b;
    overflow-x:hidden;
}

/* ===== PAGE WRAPPER ===== */

.social-page-wrapper{
    max-width:1400px;
    margin:auto;
    padding:50px 20px;
}

/* ===== HERO SECTION ===== */

.social-hero{
    text-align:center;
    padding:80px 30px;
    border-radius:30px;
    background:
    linear-gradient(
        135deg,
        rgba(79,70,229,.95),
        rgba(14,165,233,.9)
    );
    color:white;
    position:relative;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.social-hero::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-200px;
    right:-100px;
}

.social-hero::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    bottom:-150px;
    left:-80px;
}

.social-hero h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
    z-index:1;
}

.social-hero p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    font-size:1.05rem;
    opacity:.95;
    position:relative;
    z-index:1;
}

/* ===== HERO BUTTONS ===== */

.social-hero-actions{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    position:relative;
    z-index:1;
}

.social-btn{
    text-decoration:none;
    padding:15px 28px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    transition:.35s;
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.25);
    color:white;
}

.social-btn.primary{
    background:#ffffff;
    color:#4f46e5;
}

.social-btn:not(.primary){
    background:rgba(255,255,255,.15);
}

.social-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

/* ===== SOCIAL GRID ===== */

.social-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:60px;
}

/* ===== CARD ===== */

.social-card{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.5);
    border-radius:24px;
    padding:28px;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.social-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.social-card-header{
    display:flex;
    gap:18px;
    align-items:flex-start;
    margin-bottom:18px;
}

.social-card-header i{
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
    color:white;
    background:linear-gradient(
        135deg,
        #6366f1,
        #06b6d4
    );
    flex-shrink:0;
}

.social-card-header h3{
    font-size:1.25rem;
    margin-bottom:6px;
}

.social-card-header p{
    color:#64748b;
    line-height:1.7;
}

/* ===== CARD LINK ===== */

.social-card-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:12px 20px;
    margin-top:10px;
    border-radius:12px;
    background:#f1f5f9;
    color:#334155;
    font-weight:600;
    transition:.3s;
}

.social-card-link:hover{
    background:#4f46e5;
    color:white;
}

/* ===== CONTACT PANEL ===== */

.social-contact-panel{
    margin-top:80px;
}

.social-contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.social-contact-card{
    background:white;
    border-radius:24px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.social-contact-card:hover{
    transform:translateY(-8px);
}

.social-contact-card h4{
    font-size:1.3rem;
    margin-bottom:15px;
    color:#111827;
}

.social-contact-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:20px;
}

.social-contact-card a{
    text-decoration:none;
    color:#4f46e5;
    font-weight:600;
}

.social-contact-card a:hover{
    color:#06b6d4;
}

/* ===== FLOATING SOCIAL BAR ===== */

.social-sidebar{
    position:fixed;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:999;
}

.social-sidebar a{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    font-size:1.4rem;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.social-sidebar a:hover{
    transform:scale(1.12);
}

.social-sidebar .call{
    background:#2563eb;
}

.social-sidebar .whatsapp{
    background:#25D366;
}

.social-sidebar .instagram{
    background:linear-gradient(
        135deg,
        #f58529,
        #dd2a7b,
        #8134af
    );
}

.social-sidebar .email{
    background:#ef4444;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .social-hero{
        padding:60px 20px;
    }

    .social-hero h1{
        font-size:2rem;
    }

    .social-hero p{
        font-size:.95rem;
    }

    .social-btn{
        width:100%;
        justify-content:center;
    }

    .social-hero-actions{
        flex-direction:column;
    }

    .social-sidebar{
        bottom:20px;
        top:auto;
        right:50%;
        transform:translateX(50%);
        flex-direction:row;
        background:white;
        padding:10px;
        border-radius:50px;
        box-shadow:0 10px 30px rgba(0,0,0,.12);
    }

    .social-sidebar a{
        width:50px;
        height:50px;
    }
}