/*====================================================

                BENEFÍCIOS

====================================================*/


/*==================================
SECTION
==================================*/

.benefits{

    padding:65px 0;

    background:#050505;

    overflow-y:visible;
}


/*==================================
TÍTULO
==================================*/

.benefits .section-title{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.benefits .section-title p{

    max-width:760px;

    margin:26px auto 0;

    font-size:18px;

    line-height:1.9;

    color:#BDBDBD;

}

.benefits .section-title .white{

    white-space:nowrap;

}

.benefits .section-title .green{

    white-space:nowrap;

}

.benefits .section-title p{

    max-width:880px;

    margin:28px auto 0;

    font-size:18px;

    line-height:1.9;

}

/*==================================
    BENEFITS HINT
==================================*/

    .benefits-hint{

        display:flex;

        justify-content:center;

        align-items:center;

        gap:12px;

        width:100%;

        margin-top:25px;

        text-align:center;

    }

    .hint-arrow{

        width:24px;

        height:24px;

        color:var(--green);

        animation:hintArrow 1.5s ease-in-out infinite;

    }

    @keyframes hintArrow{

    0%,100%{

        transform:translateX(0);
        opacity:1;

    }

    50%{

        transform:translateX(8px);
        opacity:.6;

    }

    }


/*==================================
SHOWCASE
==================================*/

.benefits-showcase{

    display:flex;

    gap:34px;

    overflow-x:auto;

    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    cursor:grab;

    padding:80px 8px 30px;

}

.benefits-showcase:active{

    cursor:grabbing;

}

.benefits-showcase.dragging .benefit-card{

    transform:scale(.985);

    transition:transform .15s ease;

}

/* Scroll */

.benefits-showcase::-webkit-scrollbar{

    display:none;

}

.benefits-showcase{

    scrollbar-width:none;

}


/*==================================
CARD
==================================*/

.benefit-card{

    flex:0 0 385px;

    min-width:385px;

    scroll-snap-align:center;

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    align-items:center;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.035),
        rgba(255,255,255,.02)
    );

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:34px;

    padding:55px 42px 38px;

    transition:.45s ease;

}


/*==================================
LINHA SUPERIOR
==================================*/

.benefit-card::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:150px;

    height:2px;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(0,218,0,.9),

        transparent

    );

}


/*==================================
REFLEXO PREMIUM
==================================*/

.benefit-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        120deg,

        transparent 30%,

        rgba(255,255,255,.04) 50%,

        transparent 70%

    );

    transform:translateX(-180%);

    transition:.8s;

}


.benefit-card:hover::after{

    transform:translateX(180%);

}


/*==================================
HOVER
==================================*/

.benefit-card:hover{

    transform:translateY(-10px) scale(1.02);

    border-color:rgba(0,218,0,.35);

    box-shadow:

        0 0 35px rgba(0,218,0,.08);

}


/*==================================
ÍCONE
==================================*/

.benefit-icon{

    position:relative;

    width:100px;

    height:100px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;

}


.icon-glow{

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:rgba(0,218,0,.16);

    filter:blur(35px);

    animation:glowPulse 4s ease-in-out infinite;

}


.benefit-card:hover .icon-glow{

    transform:scale(1.18);

}


.benefit-icon img{

    position:relative;

    width:150px;

    height:150px;

    z-index:2;

}


/*==================================
TÍTULO
==================================*/

.benefit-card h3{

    font-family:'Anton',sans-serif;

    font-size:30px;

    color:#FFF;

    line-height:1.05;

    text-align:center;

    margin-bottom:22px;

    letter-spacing:.4px;

}

.benefits .section-title h2{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    gap:22px;

    flex-wrap:wrap;

}

.benefits .section-title .white{

    white-space:nowrap;

}

.benefits .section-title .green{

    white-space:nowrap;

}

/*==================================
DESCRIÇÃO
==================================*/

.benefit-card p{

    max-width:260px;

    margin:0 auto;

    color:#BDBDBD;

    font-size:17px;

    line-height:1.9;

    text-align:center;

    min-height:115px;

}


/*==================================
FOOTER
==================================*/

.benefit-footer{

    width:100%;

    margin-top:28px;

    padding-top:22px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}


.benefit-footer span{

    color:#00DA00;

    font-size:14px;

    font-weight:500;

}


/*==================================
ANIMAÇÃO GLOW
==================================*/

@keyframes glowPulse{

    0%{

        transform:scale(.92);

        opacity:.55;

    }

    50%{

        transform:scale(1.08);

        opacity:1;

    }

    100%{

        transform:scale(.92);

        opacity:.55;

    }

}

/*==================================
REFINAMENTO FINAL
==================================*/

.benefit-card{

    min-height:520px;

    user-select:none;

    will-change:transform;

    background:
        radial-gradient(
            circle at top center,
            rgba(0,218,0,.05),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.02)
        );

}


.benefit-card:hover{

    transform:
        translateY(-10px)
        scale(1.02);

    border-color:rgba(0,218,0,.28);

    box-shadow:
        0 0 30px rgba(0,218,0,.08);

}


.benefit-card::before{

    width:160px;

    opacity:.9;

}


.benefit-card::after{

    pointer-events:none;

}


.benefit-icon{

    margin-bottom:22px;

}


.icon-glow{

    width:95px;

    height:95px;

    opacity:.75;

    filter:blur(18px);

    pointer-events:none;

}


.benefit-card:hover .icon-glow{

    transform:scale(1.18);

}



.benefit-card h3{

    font-size:30px;

    margin-bottom:18px;

    transition:.35s;

}


.benefit-card:hover h3{

    color:#00DA00;

}


.benefit-card p{

    max-width:260px;

    margin:auto;

    min-height:105px;

}


.benefit-footer{

    margin-top:24px;

    padding-top:18px;

}


.benefits-showcase{

    scroll-padding-left:20px;

    -webkit-overflow-scrolling:touch;

}

/*==================================
DRAG
==================================*/

.benefits-showcase{

    cursor:grab;

}

.benefits-showcase.dragging{

    cursor:grabbing;

}

.benefits-showcase *{

    user-select:none;

}

/*==================================
    PORTAL CARD
==================================*/

.benefit-card-portal{

    background:linear-gradient(
        180deg,
        rgba(0,218,0,.05),
        rgba(5,5,5,1)
    );

    border:1px solid rgba(0,218,0,.18);

    transition:.35s;

}

/*==================================
    TÍTULO
==================================*/

.portal-heading{

    font-size:25px;

    text-align:center;

    color:var(--green);

    margin:0 0px 20px;

    line-height:1;

}

/*==================================
    SUBTÍTULO
==================================*/

.portal-text{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:6px;

    margin:0 auto 38px;

    margin-top: 10px;
    
    text-align:center;

    line-height:1.08;

}

.portal-text .white{

    color:#ffffff;

    font-size:28px;

    font-weight:700;

}

.portal-text .green{

    color:var(--green);

    font-size:28px;

    font-weight:700;

}

/*==================================
    ÍCONE
==================================*/

.portal-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:42px;

    margin-top: 42px;
}

.portal-icon img{

    width:170px;

    transition:.45s;

}

.portal-icon .icon-glow{

    width:200px;

    height:200px;

    opacity:.40;

    filter:blur(46px);

}

/*==================================
    BOTÃO
==================================*/

.portal-btn{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:4px;

    width:85%;

    height:72px;

    margin-top:auto;

    border-radius:999px;

    background:linear-gradient(
        180deg,
        #00ff32,
        #00da00
    );

    color:#050505;

    font-size:19px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.portal-arrow{

    font-size:22px;

    line-height:1;

    transition:.35s;

}

/*==================================
    HOVER
==================================*/

.benefit-card-portal:hover{

    transform:translateY(-8px);

    border-color:rgba(0,218,0,.45);

    box-shadow:0 0 45px rgba(0,218,0,.12);

}

.benefit-card-portal:hover .portal-icon img{

    transform:scale(1.05);

}

.benefit-card-portal:hover .portal-arrow{

    transform:translateY(4px);

}

