/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050914;
    color:#fff;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(15px);
    background:rgba(5,9,20,0.85);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 0;
}

.logo,
.footer-logo{
    font-size:28px;
    font-weight:900;
}

.logo span,
.footer-logo span{
    color:#2f7cff;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#c9d0df;
    text-decoration:none;
}

.btn-primary,
.btn-outline{
    border:none;
    cursor:pointer;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
}

.btn-primary{
    background:#2f7cff;
    color:#fff;
    padding:14px 28px;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,0.12);
    color:#fff;
    padding:14px 28px;
}

.big-btn{
    padding:18px 35px;
    font-size:16px;
}

.giant-btn{
    padding:20px 45px;
    font-size:18px;
}

.full{
    width:100%;
}

.hero{
    position:relative;
    padding:180px 0 120px;
}

.bg-overlay{
    position:absolute;
    width:700px;
    height:700px;
    background:#2f7cff;
    filter:blur(180px);
    opacity:0.12;
    top:-300px;
    right:-200px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:rgba(47,124,255,0.12);
    color:#7fb1ff;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:25px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
    letter-spacing:-3px;
}

.hero p{
    color:#aab2c5;
    line-height:1.8;
    font-size:18px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-mini-info{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    margin-top:40px;
    color:#cfd5e2;
}

.floating-card{
    background:linear-gradient(180deg,#111827,#0b1120);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:28px;
    padding:40px;
    position:relative;
}

.recommended,
.featured-tag{
    background:#2f7cff;
    color:#fff;
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    margin-bottom:20px;
}

.floating-card h2,
.plan-card h3{
    font-size:34px;
    margin-bottom:18px;
}

.floating-card ul,
.plan-card ul{
    list-style:none;
    margin:25px 0;
}

.floating-card ul li,
.plan-card ul li{
    margin-bottom:14px;
    color:#c5ccdb;
}

.stats{
    padding:40px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-card{
    background:#0f1627;
    padding:35px;
    border-radius:24px;
    text-align:center;
}

.stat-card h2{
    font-size:42px;
    margin-bottom:10px;
}

section{
    padding:110px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#2f7cff;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:52px;
    margin:20px 0;
    letter-spacing:-2px;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#aab2c5;
    line-height:1.8;
}

.plans,
.advantages-grid,
.faq-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.plan-card,
.advantage,
.faq-item{
    background:#0f1627;
    border-radius:24px;
    padding:35px;
    border:1px solid rgba(255,255,255,0.05);
}

.featured{
    border:2px solid #2f7cff;
    transform:scale(1.04);
}

.player-wrapper{
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
}

.player-wrapper video{
    width:100%;
    display:block;
    background:#000;
}

.advantage h3,
.faq-item h3{
    margin-bottom:15px;
    font-size:24px;
}

.advantage p,
.faq-item p{
    color:#aab2c5;
    line-height:1.8;
}

.cta-box{
    background:linear-gradient(180deg,#121a2d,#0b1220);
    padding:90px 40px;
    border-radius:30px;
    text-align:center;
}

.cta-box h2{
    font-size:58px;
    max-width:950px;
    margin:auto;
    margin-bottom:25px;
    line-height:1.1;
}

.cta-box p{
    color:#aab2c5;
    max-width:760px;
    margin:auto;
    margin-bottom:35px;
}

footer{
    padding:70px 0;
    border-top:1px solid rgba(255,255,255,0.05);
}

.footer-content{
    text-align:center;
}

.footer-content p{
    color:#98a2b5;
    margin:25px 0;
}

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.modal.active{
    display:flex;
}

.modal-box{
    width:100%;
    max-width:600px;
    background:#0e1524;
    border-radius:24px;
    padding:35px;
}

.modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.closeModal{
    font-size:34px;
    cursor:pointer;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    color:#d7ddea;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    background:#131d31;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:16px;
    color:#fff;
    font-size:15px;
}

@media(max-width:980px){

.hero-grid{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:48px;
}

nav{
    display:none;
}

.cta-box h2{
    font-size:42px;
}

.featured{
    transform:none;
}

}
.card-btn {
    margin-top: 28px;
}
.logo img{
    height:48px;
    width:auto;
    display:block;
}

.top-banner{
    padding:180px 0 80px;
    text-align:center;
}

.top-banner-content{
    max-width:1000px;
    margin:auto;
}

.top-tag{
    display:inline-block;
    background:rgba(47,124,255,.12);
    color:#7fb1ff;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:25px;
    font-weight:700;
}

.top-banner h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
    letter-spacing:-3px;
}

.top-banner p{
    max-width:850px;
    margin:0 auto 40px;
    color:#aab2c5;
    font-size:20px;
    line-height:1.8;
}

.experience-section{
    background:#08101d;
}

@media(max-width:980px){

    .top-banner h1{
        font-size:48px;
    }

}
.cta-band {
    padding: 90px 20px;
    background: linear-gradient(135deg, #12214a, #050914);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cta-band-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-band h2 {
    margin-bottom: 25px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    color: #fff;
}

.cta-band p {
    max-width: 750px;
    margin: 0 auto 35px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}
.logo img{
    height:50px;
    width:auto;
    display:block;
}
.footer-logo img{
    height:60px;
    width:auto;
    margin:auto;
    display:block;
}
.canal-card img{
    max-width:180px;
    height:auto;
    margin-bottom:20px;
}
#artigos a.advantage{
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

#artigos a.advantage:hover{
    transform:translateY(-5px);
    border-color:#2f7cff;
}
css
/* ==========================================
PÁGINA OBRIGADO
========================================== */

.thankyou-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 0;
}

.thankyou-box{
    max-width:800px;
    margin:auto;
    text-align:center;
    background:linear-gradient(180deg,#111827,#0b1120);
    border:1px solid rgba(255,255,255,.05);
    border-radius:30px;
    padding:70px 50px;
}

.thankyou-logo{
    height:70px;
    width:auto;
    margin-bottom:30px;
}

.thankyou-badge{
    display:inline-block;
    background:rgba(47,124,255,.15);
    color:#7fb1ff;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:25px;
    font-weight:700;
}

.thankyou-box h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:25px;
}

.thankyou-box p{
    color:#aab2c5;
    max-width:650px;
    margin:auto;
    margin-bottom:20px;
    font-size:18px;
}

.thankyou-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

@media(max-width:768px){

.thankyou-box{
    padding:50px 30px;
}

.thankyou-box h1{
    font-size:38px;
}

}