@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --bg-primary:#020B2D;
    --bg-secondary:#030F3F;
    --bg-tertiary:#041A68;

    --blue-primary:#005CFF;
    --blue-secondary:#2563EB;
    --purple:#4F46E5;

    --text-white:#FFFFFF;
    --text-light:#C7D2FE;
    --text-muted:#94A3B8;

    --border:rgba(255,255,255,.08);
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg-primary);
    color:var(--text-white);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

/* HEADER */
/* LOGO */

.logo img{
    height: 75px;   /* tamanho da logo */
    width: auto;
    display: block;
    transition: 0.3s;
    }
    
    /* aumenta levemente ao passar o mouse */
    .logo img:hover{
    transform: scale(1.03);
    }
    
    /* alinhamento do header */
    .header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    }
    
    /* versão mobile */
    @media(max-width:768px){
    
 
    .logo img{
        height:60px;
    }
    
    }
    
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    z-index:999;
    backdrop-filter:blur(20px);
    background:rgba(2,11,45,.55);
    border-bottom:1px solid var(--border);
}

.header .container{
    height:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:800;
}

.logo span{
    color:var(--blue-primary);
}

.menu{
    display:flex;
    gap:32px;
}

.menu a{
    color:var(--text-light);
    transition:.3s;
    font-weight:500;
}

.menu a:hover{
    color:#FFFFFF;
}

.btn-header{
    background:linear-gradient(
        135deg,
        var(--blue-primary),
        var(--blue-secondary)
    );

    color:#fff;
    padding:14px 24px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.btn-header:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 40px rgba(0,92,255,.4);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(
        circle at 20% 20%,
        rgba(0,92,255,.18) 0%,
        transparent 35%
    ),
    radial-gradient(
        circle at 80% 40%,
        rgba(79,70,229,.20) 0%,
        transparent 35%
    ),
    linear-gradient(
        135deg,
        #020B2D 0%,
        #030F3F 45%,
        #041A68 100%
    );
}

.hero::before{
    content:"";
    position:absolute;

    width:700px;
    height:700px;

    right:-200px;
    top:50%;

    transform:translateY(-50%);

    background:#005CFF;
    opacity:.18;

    border-radius:50%;
    filter:blur(180px);

    pointer-events:none;
}

.hero::after{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

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

    background:#4F46E5;
    opacity:.15;

    border-radius:50%;
    filter:blur(180px);

    pointer-events:none;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:24px;
}

.hero-content p{
    color:var(--text-light);
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

.highlight{
    color:var(--blue-primary);
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(0,92,255,.15);
    border:1px solid rgba(0,92,255,.3);
    color:#9dbdff;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

/* BOTÕES */

.btn-primary{
    background:linear-gradient(
        135deg,
        var(--blue-primary),
        var(--blue-secondary)
    );

    color:white;
    padding:18px 28px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(0,92,255,.45);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.15);
    color:white;
    padding:18px 28px;
    border-radius:14px;
    transition:.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.05);
}

.btn-white{
    background:white;
    color:var(--blue-primary);
    padding:18px 28px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}

.btn-white:hover{
    transform:translateY(-3px);
}

/* MOCKUPS */

.hero-image{
    position:relative;
}

.desktop-mockup{
    border-radius:24px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
    position:relative;
    z-index:2;
}

.mobile-mockup{
    width:180px;
    position:absolute;
    bottom:-20px;
    right:-30px;
    z-index:3;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

/* BENEFÍCIOS */

.benefits{
    padding:120px 0;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.benefit-card{
    background:rgba(255,255,255,.06);
    border:1px solid var(--border);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:40px;
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,92,255,.15);
}

.benefit-card h3{
    margin-bottom:15px;
}

/* SERVIÇOS */

.services{
    padding:120px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,.04);
    border:1px solid var(--border);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:40px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.06);
    border-color:rgba(0,92,255,.4);
    box-shadow:0 20px 50px rgba(0,92,255,.20);
}

.service-card h3{
    margin-bottom:15px;
}

/* ESTATÍSTICAS */

.stats{
    padding:120px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    background:var(--bg-secondary);
    border-radius:24px;
    padding:40px;
    text-align:center;
    border:1px solid var(--border);
}

.stat-card h3{
    font-size:42px;
    color:var(--blue-primary);
    margin-bottom:10px;
}

/* CTA */

.cta{
    padding:120px 0;
}

.cta-box{
    background:linear-gradient(
        135deg,
        var(--blue-primary),
        var(--purple)
    );

    border-radius:32px;
    padding:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:10px;
}

/* FOOTER */

.footer-logo{
    margin-bottom:20px;
    display:flex;
    justify-content:center;
}

.footer-logo img{
    filter: drop-shadow(0 0 15px rgba(0,92,255,.35));

}

.footer-logo img:hover{
    transform:scale(1.03);
}
.footer{
    padding:80px 0;
    border-top:1px solid var(--border);
    text-align:center;
}

.footer-logo{
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
}

.footer p{
    color:var(--text-muted);
    margin-top:10px;
}
    /* PLANOS */

    .plans-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
        gap:30px;
        margin-top:60px;
    }
    
    .plan-card{
        background:rgba(255,255,255,.04);
        border:1px solid rgba(255,255,255,.08);
        backdrop-filter:blur(20px);
        border-radius:24px;
        padding:40px;
        transition:.3s;
        position:relative;
    }
    
    .plan-card:hover{
        transform:translateY(-8px);
        box-shadow:0 20px 50px rgba(0,92,255,.20);
    }
    
    .plan-card h3{
        font-size:28px;
        margin-bottom:15px;
    }
    
    .price{
        font-size:42px;
        font-weight:800;
        color:#005CFF;
        margin-bottom:25px;
    }
    
    .plan-card ul{
        margin-bottom:30px;
    }
    
    .plan-card ul li{
        margin-bottom:12px;
        color:#C7D2FE;
    }
    
    .featured{
        border:2px solid #005CFF;
        transform:scale(1.05);
    }
    
    .recommended{
        position:absolute;
        top:-15px;
        left:50%;
        transform:translateX(-50%);
        background:#005CFF;
        color:white;
        padding:8px 18px;
        border-radius:999px;
        font-size:14px;
        font-weight:600;
    }
/* RESPONSIVO 992 */

@media (max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .cta-box{
        flex-direction:column;
        text-align:center;
    }
}

/* RESPONSIVO 768 */

@media (max-width:768px){

    .menu{
        display:none;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .mobile-mockup{
        width:120px;
    }

    .cta-box{
        padding:40px 25px;
    }

    .cta-box h2{
        font-size:30px;
    }
}/* MENU MOBILE */

/* MENU MOBILE */

.mobile-menu-button{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:768px){

    .mobile-menu-button{
        display:block;
    }

    .menu{
        display:none;
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:rgba(2,11,45,.98);
        backdrop-filter:blur(25px);
        flex-direction:column;
        padding:25px;
        gap:20px;
        border-top:1px solid rgba(255,255,255,.08);
    }

    .menu.active{
        display:flex;
    }

    .btn-header{
        display:none;
    }


}
