/* assets/css/style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;

    background:
    radial-gradient(
        circle at top,
        rgba(22,160,90,.45) 0%,
        rgba(7,45,25,.85) 30%,
        #020202 70%
    );

    min-height:100vh;
    overflow-x:hidden;
    color:#fff;
    position:relative;
}

/* brilho principal */
body::before{
    content:'';
    position:fixed;

    top:-250px;
    left:50%;

    transform:translateX(-50%);

    width:700px;
    height:700px;

    background:
    radial-gradient(
        circle,
        rgba(52,209,126,.25),
        transparent 70%
    );

    filter:blur(120px);

    pointer-events:none;
    z-index:0;
}

/* brilho lateral */
.bg-effect{
    position:fixed;

    width:550px;
    height:550px;

    background:
    radial-gradient(
        circle,
        #34D17E,
        #16A05A
    );

    filter:blur(180px);

    opacity:.25;

    top:-180px;
    left:-120px;

    z-index:0;
}

.container{
    position:relative;
    z-index:2;

    width:100%;
    max-width:480px;

    margin:auto;

    padding:30px 20px 40px;
}

.hero{
    text-align:center;
    margin-bottom:35px;
}

.logo-box{
    width:150px;
    height:150px;

    margin:auto;

    border-radius:50%;
    padding:8px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #34D17E,
        #16A05A,
        #0D7A43
    );

    box-shadow:
    0 0 25px rgba(52,209,126,.45),
    0 0 60px rgba(22,160,90,.35),
    0 0 100px rgba(13,122,67,.25);

    animation:float 4s ease-in-out infinite;
}

.logo{
    width:100%;
    height:100%;
    object-fit:cover;

    border-radius:50%;

    background:white;
}

.hero h1{
    margin-top:18px;

    font-size:38px;
    font-weight:700;

    letter-spacing:2px;

    color:#fff;

    text-shadow:
        0 0 10px rgba(255,255,255,.3),
        0 0 20px rgba(52,209,126,.3),
        0 0 40px rgba(22,160,90,.25);
}

.subtitle{
    margin-top:8px;

    color:#d6d6d6;

    font-size:15px;
}

.socials{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.social-card{
    text-decoration:none;
    color:white;

    background:
    rgba(255,255,255,.07);

    backdrop-filter:blur(14px);

    border:
    1px solid rgba(255,255,255,.12);

    border-radius:22px;

    padding:18px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    transition:all .35s ease;
}

.social-card:hover{
    transform:
    translateY(-4px)
    scale(1.02);

    background:
    linear-gradient(
        135deg,
        rgba(52,209,126,.15),
        rgba(22,160,90,.25),
        rgba(13,122,67,.35)
    );

    border-color:
    rgba(52,209,126,.45);

    box-shadow:
    0 10px 25px rgba(0,0,0,.35),
    0 0 25px rgba(52,209,126,.15);
}

.left{
    display:flex;
    align-items:center;
    gap:14px;
}

.icon-box{
    width:58px;
    height:58px;

    border-radius:100%;

    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    box-shadow:
    0 4px 15px rgba(0,0,0,.25);
}

.icon{
    width:56px;
    height:56px;
    object-fit:contain;
}

.info{
    display:flex;
    flex-direction:column;
}

.name{
    font-size:17px;
    font-weight:600;
}

.desc{
    font-size:13px;
    color:#d6d6d6;
}

.right{
    font-size:26px;
    font-weight:bold;
    color:white;

    transition:.3s;
}

.social-card:hover .right{
    transform:translateX(5px);
}

.footer{
    text-align:center;
    font-size:13px;

    color:#cfcfcf;

    opacity:.85;

    width:100%;

    position:relative;

    padding:10px 0 20px 0;

}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

@media(max-width:480px){

    .modal-content{
        max-width:100%;
        width:80%;
    }

    .hero h1{
        font-size:30px;
    }

    .logo-box{
        width:130px;
        height:130px;
    }

}