/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#fff;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.9);
    backdrop-filter:blur(10px);
    z-index:999;
    border-bottom:1px solid rgba(212,175,55,.15);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo i{
    color:#d4af37;
    font-size:30px;
}

.logo span{
    font-weight:700;
    line-height:1.1;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

nav a:hover{
    color:#d4af37;
}

.btn-header{
    background:#d4af37;
    color:#000;
    text-decoration:none;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-header:hover{
    transform:translateY(-2px);
}

/* HERO */

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    align-items:center;
    gap:50px;
    padding:120px 8% 60px;
}

.badge{
    display:inline-block;
    border:1px solid #d4af37;
    color:#d4af37;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero h1 span{
    color:#d4af37;
}

.hero p{
    color:#c7c7c7;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-features{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#d4af37;
}

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

.btn-primary{
    background:#d4af37;
    color:#000;
    padding:16px 32px;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
}

.btn-secondary{
    border:1px solid #d4af37;
    color:#d4af37;
    padding:16px 32px;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
}

.hero-image img{
    width:100%;
    max-width:900px;
    border-radius:30px;
    box-shadow:
    0 0 30px rgba(184, 153, 50, 0.359);
}

/* RESPONSIVO */

@media(max-width:992px){

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

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

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

    nav{
        display:none;
    }

    .hero h1{
        font-size:46px;
    }

    .aviso-importante{

    padding:100px 8%;
}

}
/* BENEFÍCIOS */

.beneficios{
    padding:40px 8% 80px;
}

.beneficios-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;
}

.beneficio-card{

    background:#0c0c0c;

    border:1px solid
    rgba(212,175,55,.12);

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;
}

.beneficio-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:
    0 0 20px rgba(212,175,55,.15);
}

.beneficio-card i{

    font-size:34px;

    color:#d4af37;

    margin-bottom:20px;
}

.beneficio-card h3{

    margin-bottom:12px;

    font-size:20px;
}

.beneficio-card p{

    color:#bdbdbd;

    line-height:1.7;

    font-size:14px;
}

/* EBOOKS */

.ebooks{
    padding:80px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4af37;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin-top:15px;
    margin-bottom:15px;
}

.section-title p{
    color:#bdbdbd;
}

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

.ebook-card{

    background:#0b0b0b;

    border:1px solid rgba(212,175,55,.10);

    border-radius:20px;

    overflow:hidden;

    transition:.3s;
}

.ebook-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:
    0 0 25px rgba(212,175,55,.15);
}

.ebook-image img{

    width:100%;

    height:220px;

    object-fit:cover;
}

.ebook-content{
    padding:25px;
}

.ebook-content h3{
    margin-bottom:15px;
}

.ebook-content p{
    color:#bdbdbd;
    margin-bottom:20px;
    line-height:1.7;
}

.ebook-content ul{
    list-style:none;
}

.ebook-content li{
    margin-bottom:10px;
    color:#d4d4d4;
}

.ebook-price{

    margin-top:20px;

    margin-bottom:20px;

    color:#d4af37;

    font-size:28px;

    font-weight:700;
}

.ebook-btn{

    display:block;

    text-align:center;

    background:#d4af37;

    color:#000;

    padding:14px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;
}

/* PACOTE COMPLETO */

.pacote-completo{

    padding:100px 8%;
}

.pacote-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:linear-gradient(
    135deg,
    rgba(212,175,55,.18),
    rgba(212,175,55,.05)
    );

    border:1px solid rgba(212,175,55,.25);

    border-radius:25px;

    padding:60px 40px;
}

.tag-pacote{

    display:inline-block;

    background:#d4af37;

    color:#000;

    padding:10px 20px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;
}

.pacote-box h2{

    font-size:42px;

    margin-bottom:20px;
}

.pacote-box p{

    color:#d6d6d6;

    max-width:650px;

    margin:auto;

    line-height:1.8;

    margin-bottom:40px;
}

.pacote-beneficios{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:15px;

    margin-bottom:35px;
}

.pacote-beneficios div{

    background:#0b0b0b;

    padding:15px;

    border-radius:12px;
}

.preco-antigo{

    text-decoration:line-through;

    color:#999;

    font-size:24px;

    margin-bottom:10px;
}

.preco-atual{

    color:#d4af37;

    font-size:58px;

    font-weight:800;

    margin-bottom:25px;
}

.btn-pacote{

    display:inline-block;

    background:#d4af37;

    color:#000;

    text-decoration:none;

    padding:18px 40px;

    border-radius:12px;

    font-weight:700;

    font-size:18px;
}

/* BENEFÍCIOS EXTRAS */

.extras{
    padding:100px 8%;
}

.extras-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.extra-card{

    background:#0b0b0b;

    border:1px solid rgba(212,175,55,.10);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;
}

.extra-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:
    0 0 20px rgba(212,175,55,.15);
}

.extra-card i{

    color:#d4af37;

    font-size:38px;

    margin-bottom:20px;
}

.extra-card h3{

    margin-bottom:15px;
}

.extra-card p{

    color:#bdbdbd;

    line-height:1.7;
}

/* AVISO IMPORTANTE */

.aviso-importante{

    padding:100px 8%;
}

.aviso-box{

    max-width:1000px;

    margin:auto;

    background:
    rgba(212,175,55,.05);

    border:1px solid
    rgba(212,175,55,.15);

    border-radius:25px;

    padding:50px;
}

.aviso-icon{

    text-align:center;

    margin-bottom:20px;
}

.aviso-icon i{

    font-size:50px;

    color:#d4af37;
}

.aviso-box h2{

    text-align:center;

    margin-bottom:30px;

    font-size:34px;
}

.aviso-box p{

    color:#d0d0d0;

    line-height:1.9;

    margin-bottom:18px;

    text-align:center;
}

/* FAQ */

.faq{
    padding:100px 8%;
}

.faq-container{
    max-width:1000px;
    margin:auto;
}

.faq-item{

    background:#0b0b0b;

    border:1px solid rgba(212,175,55,.10);

    border-radius:16px;

    padding:25px;

    margin-bottom:20px;
}

.faq-item h3{

    color:#d4af37;

    margin-bottom:12px;
}

.faq-item p{

    color:#cfcfcf;

    line-height:1.8;
}

/* FOOTER */

.footer{

    background:#070707;

    border-top:1px solid rgba(212,175,55,.10);

    margin-top:100px;
}

.footer-container{

    padding:70px 8%;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:40px;
}

.footer-logo{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:20px;
}

.footer-logo i{

    color:#d4af37;

    font-size:28px;
}

.footer-logo span{

    font-weight:700;
}

.footer p{

    color:#bdbdbd;

    line-height:1.8;
}

.footer h3{

    margin-bottom:20px;
}

.footer-links{

    display:flex;

    flex-direction:column;
}

.footer-links a{

    color:#bdbdbd;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;
}

.footer-links a:hover{

    color:#d4af37;
}

.social-icons{

    display:flex;

    gap:15px;
}

.social-icons a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0f0f0f;

    border-radius:12px;

    color:#d4af37;

    text-decoration:none;

    transition:.3s;
}

.social-icons a:hover{

    transform:translateY(-5px);

    border:1px solid #d4af37;
}

.footer-bottom{

    text-align:center;

    padding:25px;

    border-top:1px solid rgba(212,175,55,.08);

    color:#8a8a8a;
}