/* ========================================
   NAVBAR PREMIUM V2
======================================== */

.navbar{

    position:fixed;

    top:12px;
    left:50%;

    transform:translateX(-50%);

    width:calc(100% - 20px);

    z-index:9999;

}

.navbar .container{

    height:78px;

    padding:0 20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        rgba(10,15,35,.95),
        rgba(5,8,22,.92)
    );

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 10px 40px rgba(0,0,0,.50),
    inset 0 1px 0 rgba(255,255,255,.06);

}

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

.logo{

    display:flex;

    align-items:center;

    gap:18px;

    text-decoration:none;

}

/* QUADRADO ET */

.logo-icon{

    width:62px;
    height:62px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:18px;

    font-size:1.4rem;

    font-weight:900;

    letter-spacing:2px;

    color:#ffffff;

    background:
    linear-gradient(
        135deg,
        #00ff88,
        #2563ff
    );

    box-shadow:
    0 0 25px rgba(0,255,136,.30),
    0 0 50px rgba(37,99,255,.20);

}

/* TEXTO */

.logo-text{

    display:flex;

    flex-direction:column;

    line-height:1;

}

/* ELITE TRADER */

.logo-text span{

    font-size:.78rem;

    text-transform:uppercase;

    letter-spacing:5px;

    color:#94a3b8;

    font-weight:700;

}

/* CLUB */

.logo-text strong{

    font-size:1.6rem;

    font-weight:900;

    letter-spacing:8px;

    text-transform:uppercase;

    background:
    linear-gradient(
        90deg,
        #ffffff,
        #00ff88
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* HOVER */

.logo:hover .logo-icon{

    transform:translateY(-3px);

    box-shadow:
    0 0 40px rgba(0,255,136,.40),
    0 0 80px rgba(37,99,255,.30);

}

.logo:hover strong{

    filter:brightness(1.15);

}

.logo-icon,
.logo-text strong{

    transition:.35s ease;

}

/* ========================================
   MENU DESKTOP
======================================== */

.nav-desktop{

    display:none;

}

.nav-desktop a{

    position:relative;

    text-decoration:none;

    color:#cbd5e1;

    font-weight:600;

    transition:.3s;

}

.nav-desktop a:hover{

    color:#00ff88;

}

.nav-desktop a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    border-radius:999px;

    background:#00ff88;

    transition:.3s;

}

.nav-desktop a:hover::after{

    width:100%;

}

/* ========================================
   CTA
======================================== */

.nav-btn{

    display:none;

}

.nav-btn{

    height:52px;

    padding:0 28px;

    border-radius:16px;

    text-decoration:none;

    font-weight:800;

    color:#050816;

    background:
    linear-gradient(
        135deg,
        #00ff88,
        #2563ff
    );

    transition:.3s;

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 40px rgba(0,255,136,.30);

}

/* ========================================
   HAMBURGUER
======================================== */

.menu-btn{

    width:52px;
    height:52px;

    border:none;

    background:none;

    cursor:pointer;

}

.menu-btn span{

    display:block;

    width:28px;
    height:2px;

    margin:6px auto;

    border-radius:999px;

    background:#ffffff;

    transition:.35s;

}

/* X */

.menu-btn.active span:nth-child(1){

    transform:
    translateY(8px)
    rotate(45deg);

}

.menu-btn.active span:nth-child(2){

    opacity:0;

}

.menu-btn.active span:nth-child(3){

    transform:
    translateY(-8px)
    rotate(-45deg);

}

/* ========================================
   MOBILE MENU
======================================== */

.mobile-menu{

    position:fixed;

    inset:0;

    background:
    rgba(5,8,22,.98);

    backdrop-filter:blur(30px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

}

.mobile-menu.active{

    opacity:1;

    visibility:visible;

}

.mobile-menu nav{

    display:flex;

    flex-direction:column;

    gap:28px;

    text-align:center;

}

.mobile-menu a{

    text-decoration:none;

    color:white;

    font-size:1.3rem;

    font-weight:700;

}

.mobile-cta{

    margin-top:15px;

    padding:16px 28px;

    border-radius:16px;

    color:#050816 !important;

    background:
    linear-gradient(
        135deg,
        #00ff88,
        #2563ff
    );

}

/* ========================================
   DESKTOP
======================================== */

@media(min-width:1100px){

    .nav-desktop{

        display:flex;

        gap:40px;

    }

    .nav-btn{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .menu-btn{

        display:none;

    }

}


/* ======================================
HERO PREMIUM MOBILE FIRST
====================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:120px 20px 80px;

    overflow:hidden;

}

/* BACKGROUND */

.hero-bg{

    position:absolute;

    inset:0;

    z-index:1;

    background:
    linear-gradient(
        rgba(5,8,22,.45),
        rgba(5,8,22,.65)
    ),
    url("images/imagem.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}


.hero-bg::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(
        circle at top right,
        rgba(0,255,136,.18),
        transparent 40%
    ),

    radial-gradient(
        circle at bottom left,
        rgba(37,99,255,.20),
        transparent 45%
    );

}

.hero-bg::after{

    content:"";

    position:absolute;

    inset:0;

    backdrop-filter:
    blur(2px);

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.15),
        rgba(0,0,0,.45)
    );

}

.hero-bg::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(
        circle at top right,
        rgba(0,255,136,.18),
        transparent 40%
    ),

    radial-gradient(
        circle at bottom left,
        rgba(37,99,255,.18),
        transparent 45%
    );

}

/* CONTAINER */

.hero-container{

    position:relative;

    z-index:2;

    width:100%;

}

/* CONTEÚDO */

.hero-content{

    width:100%;

    max-width:800px;

    margin:0 auto;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:24px;

}

/* TÍTULO */

.hero-content h1{

    font-size:clamp(
        2.6rem,
        10vw,
        5.5rem
    );

    line-height:1.05;

    font-weight:900;

    color:#fff;

}

.hero-content h1 span{

    display:block;

    margin-top:12px;

    background:
    linear-gradient(
        135deg,
        #00ff88,
        #2563ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* DESCRIÇÃO */

.hero-content p{

    max-width:650px;

    font-size:1.05rem;

    line-height:1.8;

    color:#cbd5e1;

}

/* PILARES */

.hero-pillars{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:12px;

    width:100%;

}

.hero-pillars div{

    padding:12px 18px;

    border-radius:14px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    color:#00ff88;

    font-size:.8rem;

    font-weight:800;

    letter-spacing:1px;

}

/* BOTÕES */

.hero-buttons{

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:14px;

    margin-top:10px;

}

.hero-btn-primary,
.hero-btn-secondary{

    width:100%;

    max-width:340px;

    min-height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border-radius:16px;

    font-weight:800;

    transition:.3s;

}

/* BOTÃO PRINCIPAL */

.hero-btn-primary{

    color:#050816;

    background:
    linear-gradient(
        135deg,
        #00ff88,
        #2563ff
    );

    box-shadow:
    0 0 35px rgba(0,255,136,.25);

}

.hero-btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 50px rgba(0,255,136,.45);

}

/* BOTÃO SECUNDÁRIO */

.hero-btn-secondary{

    color:#fff;

    border:
    1px solid rgba(255,255,255,.12);

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

}

/* ======================================
TABLET
====================================== */

@media(min-width:768px){

    .hero{

        padding:160px 40px 120px;

    }

    .hero-buttons{

        flex-direction:row;

        justify-content:center;

    }

    .hero-btn-primary,
    .hero-btn-secondary{

        width:auto;

        min-width:230px;

    }

}

/* ======================================
DESKTOP
====================================== */

@media(min-width:1200px){

    .hero-content{

        max-width:950px;

    }

    .hero-content h1{

        font-size:5.8rem;

    }

    .hero-content p{

        font-size:1.15rem;

    }

}
/* ==================================
BENEFITS
================================== */

.benefits{

    padding:90px 20px;

    position:relative;

}

.benefits .container{

    max-width:1200px;

    margin:auto;

}

/* ==================================
HEADER
================================== */

.section-header{

    text-align:center;

    margin-bottom:50px;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(0,255,136,.08);

    border:
    1px solid rgba(0,255,136,.20);

    color:#00ff88;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.section-header h2{

    margin-top:20px;

    color:white;

    font-size:clamp(
    2rem,
    7vw,
    4rem);

    line-height:1.1;

    font-weight:900;

}

.section-header p{

    margin:20px auto 0;

    max-width:700px;

    color:#94a3b8;

    line-height:1.8;

    font-size:1rem;

}

/* ==================================
GRID
================================== */

.benefits-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;

}

/* ==================================
CARDS
================================== */

.benefit-card{

    position:relative;

    padding:28px;

    border-radius:24px;

    background:
    rgba(15,23,42,.55);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:
    blur(25px);

    overflow:hidden;

    transition:.35s;

}

/* glow interno */

.benefit-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(0,255,136,.05),
        rgba(37,99,255,.05)
    );

    opacity:0;

    transition:.35s;

}

.benefit-card:hover{

    transform:
    translateY(-6px);

    border-color:
    rgba(0,255,136,.25);

    box-shadow:
    0 20px 40px rgba(0,0,0,.35);

}

.benefit-card:hover::before{

    opacity:1;

}

.benefit-icon{

    width:70px;
    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    margin-bottom:22px;

    font-size:1.8rem;

    background:
    linear-gradient(
        135deg,
        rgba(0,255,136,.15),
        rgba(37,99,255,.15)
    );

    border:
    1px solid rgba(255,255,255,.08);

}

.benefit-card h3{

    color:white;

    font-size:1.3rem;

    margin-bottom:14px;

    font-weight:800;

}

.benefit-card p{

    color:#94a3b8;

    line-height:1.8;

    font-size:.96rem;

}

/* ==================================
CARDS GRANDES
================================== */

.benefit-large{

    min-height:260px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.benefit-large h3{

    font-size:1.7rem;

}

.benefit-large p{

    max-width:500px;

}

/* ==================================
TABLET
================================== */

@media(min-width:768px){

    .benefits{

        padding:120px 30px;

    }

    .benefits-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .benefit-large{

        min-height:320px;
    }

}

 /* ==================================
DESKTOP
================================== */

@media(min-width:1100px){

    .benefits-grid{

        grid-template-columns:
        repeat(4,1fr);

    }

    .benefit-large{

        grid-column:
        span 2;

    }

    .benefit-card{

        padding:34px;

    }

}
/* ==================================
BACKGROUND
================================== */

.benefits{

    position:relative;

    overflow:hidden;

}

.benefits-bg{

    position:absolute;

    inset:0;

    z-index:0;

    background:

    linear-gradient(
        rgba(5,8,22,.90),
        rgba(5,8,22,.96)
    ),

    url("images/elitetrader.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
    background-size: 825px;
    animation:
    zoomBackground 18s ease-in-out infinite alternate;

}

/* camada extra */

.benefits-bg::after{

    content:"";

    position:absolute;

    inset:0;

    backdrop-filter:
    blur(3px);

}
.benefits-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:1;

    pointer-events:none;

}

.glow-green{

    width:400px;
    height:400px;

    background:
    rgba(0,255,136,.12);

    top:-120px;
    right:-80px;

    animation:
    floatGlow 12s ease-in-out infinite;

}

.glow-blue{

    width:350px;
    height:350px;

    background:
    rgba(37,99,255,.14);

    bottom:-120px;
    left:-80px;

    animation:
    floatGlow 14s ease-in-out infinite;

}
.benefits .container{

    position:relative;

    z-index:3;

}
@keyframes floatGlow{

    0%{

        transform:
        translateY(0px)
        translateX(0px);

    }

    50%{

        transform:
        translateY(-30px)
        translateX(15px);

    }

    100%{

        transform:
        translateY(0px)
        translateX(0px);

    }

}

@keyframes zoomBackground{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}
/* ==================================
PLANOS
================================== */

.plans{

    position:relative;

    padding:100px 20px;

    overflow:hidden;

}

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

.plans::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,
    #050816,
    #08101f);

    z-index:1;

}

.plans::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(
    circle at 20% 20%,
    rgba(0,255,136,.08),
    transparent 35%),

    radial-gradient(
    circle at 80% 80%,
    rgba(37,99,255,.08),
    transparent 35%);

    animation:
    plansGlow 10s ease-in-out infinite;

    z-index:1;

}

.plans .container{

    position:relative;

    z-index:2;

}

/* ==================================
HEADER
================================== */

.plans .section-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 50px;

}

.plans .section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(0,255,136,.08);

    border:
    1px solid rgba(0,255,136,.15);

    color:#00ff88;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.plans .section-header h2{

    margin-top:20px;

    color:white;

    font-size:clamp(
    2rem,
    6vw,
    4rem);

    line-height:1.1;

}

.plans .section-header p{

    margin-top:18px;

    color:#94a3b8;

    line-height:1.8;

}

/* ==================================
NOTICE BAR
================================== */

.plans-notice{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-bottom:40px;

}

.plans-notice div{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:56px;

    border-radius:16px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    color:#e2e8f0;

    backdrop-filter:blur(20px);

}

/* ==================================
GRID
================================== */

.plans-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:24px;

}

/* ==================================
CARD
================================== */

.plan-card{

    position:relative;

    padding:30px;

    border-radius:28px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:
    blur(24px);

    transition:.4s;

    overflow:hidden;

}

.plan-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.03),
    transparent);

    pointer-events:none;

}

.plan-card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(0,255,136,.25);

}

/* ==================================
POPULAR
================================== */

.featured{

    border:
    1px solid rgba(0,255,136,.35);

    box-shadow:
    0 0 60px rgba(0,255,136,.12);

}

.featured::after{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(0,255,136,.15),
    rgba(37,99,255,.15));

    z-index:-1;

}

.popular{

    position:absolute;

    top:18px;

    right:18px;

    padding:8px 14px;

    border-radius:999px;

    background:
    linear-gradient(
    135deg,
    #00ff88,
    #2563ff);

    color:#04110a;

    font-size:.75rem;

    font-weight:800;

}

/* ==================================
TOP
================================== */

.plan-label{

    display:inline-flex;

    padding:8px 14px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:#cbd5e1;

    font-size:.75rem;

    font-weight:700;

}

.plan-label.gold{

    background:
    rgba(0,255,136,.10);

    border:
    1px solid rgba(0,255,136,.20);

    color:#00ff88;

}

.plan-top h3{

    margin-top:20px;

    color:white;

    font-size:2rem;

}

.plan-top p{

    margin-top:12px;

    color:#94a3b8;

    line-height:1.7;

}

/* ==================================
PREÇO
================================== */

.price{

    margin:30px 0;

    color:white;

    font-size:3.5rem;

    font-weight:900;

    line-height:1;

}

.price span{

    font-size:1rem;

    color:#94a3b8;

}

/* ==================================
LISTA
================================== */

.plan-card ul{

    display:flex;

    flex-direction:column;

    gap:14px;

    list-style:none;

    padding:0;

    margin:0;

}

.plan-card li{

    color:#e2e8f0;

    line-height:1.5;

}

/* ==================================
BOTÃO
================================== */

.plan-btn{

    width:100%;

    min-height:58px;

    margin-top:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border-radius:16px;

    font-weight:800;

    color:white;

    border:
    1px solid rgba(255,255,255,.10);

    background:
    rgba(255,255,255,.05);

    transition:.3s;

}

.plan-btn:hover{

    transform:
    translateY(-3px);

}

.plan-btn.premium{

    color:#04110a;

    background:
    linear-gradient(
    135deg,
    #00ff88,
    #2563ff);

    border:none;

    box-shadow:
    0 0 40px rgba(0,255,136,.25);

}

/* ==================================
TABLET
================================== */

@media(min-width:768px){

    .plans{

        padding:130px 30px;

    }

    .plans-notice{

        flex-direction:row;

        justify-content:center;

    }

    .plans-notice div{

        flex:1;

        max-width:260px;

    }

    .plans-grid{

        grid-template-columns:
        repeat(2,1fr);

        align-items:stretch;

    }

}

/* ==================================
DESKTOP
================================== */

@media(min-width:1200px){

    .featured{

        transform:
        scale(1.04);

    }

    .featured:hover{

        transform:
        scale(1.04)
        translateY(-8px);

    }

}

/* ==================================
ANIMAÇÃO
================================== */

@keyframes plansGlow{

    0%{

        transform:
        translateY(0);

    }

    50%{

        transform:
        translateY(-25px);

    }

    100%{

        transform:
        translateY(0);

    }

}
/* ==================================
TESTIMONIALS
================================== */

.testimonials{

    padding:100px 20px;

    position:relative;

}

.testimonials-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

    margin-top:50px;

}

.testimonial-card{

    padding:28px;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:
    blur(20px);

    transition:.35s;

}

.testimonial-card:hover{

    transform:
    translateY(-6px);

    border-color:
    rgba(0,255,136,.25);

}

.stars{

    font-size:1.1rem;

    margin-bottom:16px;

}

.testimonial-card p{

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:18px;

}

.testimonial-card strong{

    color:white;

}

@media(min-width:768px){

    .testimonials-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(min-width:1200px){

    .testimonials-grid{

        grid-template-columns:
        repeat(3,1fr);

    }

}
/* ==================================
FAQ
================================== */

.faq{

    padding:100px 20px;

}

.faq-wrapper{

    max-width:900px;

    margin:50px auto 0;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.faq-item{

    border-radius:20px;

    overflow:hidden;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

}

.faq-question{

    width:100%;

    padding:24px;

    border:none;

    background:none;

    color:white;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s;

    color:#94a3b8;

    line-height:1.8;

    padding:0 24px;

}

.faq-item.active .faq-answer{

    max-height:200px;

    padding:0 24px 24px;

}
/* ==================================
TESTIMONIALS + FAQ BACKGROUND
================================== */

.testimonials,
.faq{

    position:relative;

    overflow:hidden;

    padding:100px 20px;

}

/* FUNDO PRINCIPAL */

.testimonials::before,
.faq::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,
    #050816,
    #08101f);

    z-index:1;

}

/* GLOW VERDE */

.testimonials::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(0,255,136,.08);

    filter:blur(120px);

    top:-150px;
    right:-150px;

    animation:
    floatingGlow 10s ease-in-out infinite;

}

/* GLOW AZUL */

.faq::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(37,99,255,.08);

    filter:blur(120px);

    bottom:-150px;
    left:-150px;

    animation:
    floatingGlow 12s ease-in-out infinite;

}

/* CONTAINER ACIMA DOS GLOWS */

.testimonials .container,
.faq .container{

    position:relative;

    z-index:2;

}

/* ==================================
HEADER PADRÃO
================================== */

.section-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 50px;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(0,255,136,.08);

    border:
    1px solid rgba(0,255,136,.15);

    color:#00ff88;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.section-header h2{

    margin-top:20px;

    color:white;

    font-size:clamp(
    2rem,
    6vw,
    4rem);

    line-height:1.1;

}

.section-header p{

    margin-top:18px;

    color:#94a3b8;

    line-height:1.8;

}

/* ==================================
ANIMAÇÃO
================================== */

@keyframes floatingGlow{

    0%{

        transform:
        translateY(0);

    }

    50%{

        transform:
        translateY(-35px);

    }

    100%{

        transform:
        translateY(0);

    }

}
.benefits{

    position:relative;

    overflow:hidden;

}

.benefits::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(5,8,22,.80),
    rgba(5,8,22,.90)),
    url("images/elitetrader.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:1;

}

.benefits .container{

    position:relative;

    z-index:2;

}
.benefits::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    url("images/elitetrader.jpg");

    background-size:cover;
    background-position:center;
    background-size: 825px;
    z-index:1;

}
/* ==================================
FOOTER
================================== */

.footer{

    position:relative;

    overflow:hidden;

    margin-top:120px;

    border-top:
    1px solid rgba(255,255,255,.06);

}

/* FUNDO */

.footer-bg{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    180deg,
    #050816,
    #030712);

}

/* CONTAINER */

.footer-container{

    position:relative;

    z-index:2;

    display:grid;

    gap:50px;

    padding:80px 20px;

}

/* LOGO */

.footer-logo{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:20px;

}

.footer-logo-icon{

    width:56px;
    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    border:1px solid rgba(0,255,136,.25);

    background:
    rgba(0,255,136,.08);

    color:#00ff88;

    font-weight:900;

}

.footer-logo-text{

    display:flex;

    flex-direction:column;

}

.footer-logo-text span{

    color:#94a3b8;

    font-size:.75rem;

    letter-spacing:3px;

    text-transform:uppercase;

}

.footer-logo-text strong{

    color:white;

    font-size:1.4rem;

    letter-spacing:4px;

}

/* DESCRIÇÃO */

.footer-brand p{

    color:#94a3b8;

    line-height:1.8;

    max-width:380px;

}

/* LINKS */

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links h4{

    color:white;

    margin-bottom:10px;

}

.footer-links a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#00ff88;

    transform:translateX(4px);

}

/* CTA */

.footer-cta{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.footer-cta h4{

    color:white;

}

.footer-btn{

    height:56px;

    max-width:260px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    text-decoration:none;

    font-weight:800;

    color:#04110a;

    background:
    linear-gradient(
    135deg,
    #00ff88,
    #2563ff);

    box-shadow:
    0 0 35px rgba(0,255,136,.20);

    transition:.3s;

}

.footer-btn:hover{

    transform:
    translateY(-3px);

}

/* BOTTOM */

.footer-bottom{

    position:relative;

    z-index:2;

    padding:25px 20px;

    border-top:
    1px solid rgba(255,255,255,.05);

    text-align:center;

}

.footer-bottom p{

    color:#64748b;

    font-size:.9rem;

}

/* TABLET */

@media(min-width:768px){

    .footer-container{

        grid-template-columns:
        2fr
        1fr
        1fr
        1.2fr;

        align-items:start;

    }

}

/* DESKTOP */

@media(min-width:1200px){

    .footer{

        margin-top:150px;

    }

}
/* ==========================
WHATSAPP FLOAT PREMIUM
========================== */

.whatsapp-float{

    position:fixed;

    right:20px;
    bottom:20px;

    z-index:9999;

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 20px;

    border-radius:999px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    background:
    linear-gradient(
    135deg,
    #25D366,
    #128C7E);

    box-shadow:
    0 0 0 0 rgba(37,211,102,.6),
    0 15px 40px rgba(0,0,0,.35);

    animation:
    whatsappPulse 2s infinite;

    transition:.35s ease;

    backdrop-filter:blur(20px);

}

.whatsapp-float:hover{

    transform:
    translateY(-5px)
    scale(1.04);

    box-shadow:
    0 0 40px rgba(37,211,102,.45),
    0 20px 50px rgba(0,0,0,.45);

}

.whatsapp-float svg{

    width:28px;
    height:28px;

    flex-shrink:0;

}

.whatsapp-float span{

    white-space:nowrap;

    font-size:.95rem;

}

/* ANIMAÇÃO */

@keyframes whatsappPulse{

    0%{

        box-shadow:
        0 0 0 0 rgba(37,211,102,.65),
        0 15px 40px rgba(0,0,0,.35);

    }

    70%{

        box-shadow:
        0 0 0 18px rgba(37,211,102,0),
        0 15px 40px rgba(0,0,0,.35);

    }

    100%{

        box-shadow:
        0 0 0 0 rgba(37,211,102,0),
        0 15px 40px rgba(0,0,0,.35);

    }

}

/* MOBILE */

@media(max-width:768px){

    .whatsapp-float{

        right:15px;
        bottom:15px;

        width:64px;
        height:64px;

        padding:0;

        justify-content:center;

        border-radius:50%;

    }

    .whatsapp-float span{

        display:none;

    }

    .whatsapp-float svg{

        width:32px;
        height:32px;

    }

}
