/* =======================================================
   O CAÇADOR RECOMENDA
   STYLE.CSS
   PARTE 1/4
======================================================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#090909;

    color:#fff;

    overflow-x:hidden;

}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    backdrop-filter:blur(12px);

    background:rgba(0,0,0,.55);

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

}

/* ========================================= */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

}

/* ========================================= */

.logo{

    font-size:32px;

    font-weight:800;

    color:#fff;

    cursor:pointer;

}

.logo span{

    color:#ff1f3d;

}

/* ========================================= */

.navbar ul{

    display:flex;

    gap:40px;

    list-style:none;

}

.navbar a{

    text-decoration:none;

    color:white;

    transition:.35s;

    font-weight:500;

}

.navbar a:hover{

    color:#ff1f3d;

}

/* ========================================= */

.btn-menu{

    background:#ff1f3d;

    padding:14px 28px;

    border-radius:8px;

    font-weight:700;

    transition:.35s;

}

.btn-menu:hover{

    transform:translateY(-3px);

    background:#ff3651;

}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.92)
    ),
    url("../assets/banner/banner.jpg");

    background-size:cover;

    background-position:center;

}

/* ========================================= */

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at center,

    rgba(255,0,60,.18),

    transparent 60%);

}

/* ========================================= */

.hero-content{

    position:relative;

    z-index:5;

    max-width:700px;

}

/* ========================================= */

.badge{

    display:inline-block;

    background:#ff1f3d;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

/* ========================================= */

.hero h1{

    font-size:72px;

    line-height:78px;

    margin-bottom:25px;

    font-weight:800;

}

/* ========================================= */

.frase{

    font-size:26px;

    color:#fff;

    font-style:italic;

    margin-bottom:30px;

    max-width:620px;

}

/* ========================================= */

.descricao{

    font-size:20px;

    color:#d8d8d8;

    line-height:34px;

    margin-bottom:40px;

}

/* ========================================= */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* ========================================= */

.btn-red{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#ff1f3d;

    color:white;

    text-decoration:none;

    padding:18px 36px;

    border-radius:10px;

    font-weight:700;

    transition:.35s;

}

.btn-red:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(255,31,61,.35);

}

/* ========================================= */

.btn-transparent{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border:2px solid rgba(255,255,255,.25);

    color:white;

    text-decoration:none;

    padding:18px 34px;

    border-radius:10px;

    transition:.35s;

}

.btn-transparent:hover{

    background:white;

    color:#111;

}

/* =======================================================
   CATÁLOGO DE LIVROS
======================================================= */

.catalogo{

    padding:120px 0;

}

.catalogo h2{

    font-size:46px;

    text-align:center;

    margin-bottom:15px;

    font-weight:800;

}

.subtitulo{

    text-align:center;

    color:#bcbcbc;

    margin-bottom:60px;

    font-size:18px;

}

/* GRID */

.cards{

    display:grid;

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

    gap:35px;

}

/* CARD */

.card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    background:#171717;

    transition:.45s;

    box-shadow:0 10px 35px rgba(0,0,0,.45);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(255,31,61,.28);

}

/* CAPA */

.card img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.45s;

}

.card:hover img{

    transform:scale(1.06);

}

/* ETIQUETA */

.book-tag{

    position:absolute;

    top:18px;

    left:18px;

    background:#ff1f3d;

    color:white;

    padding:8px 14px;

    border-radius:40px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    z-index:10;

}

/* CONTEÚDO */

.card-content{

    padding:25px;

}

.card-content h3{

    font-size:24px;

    margin-bottom:15px;

    line-height:32px;

}

.card-content p{

    color:#c8c8c8;

    line-height:28px;

    margin-bottom:25px;

}

/* ESTRELAS */

.stars{

    color:#FFD54A;

    font-size:20px;

    margin-bottom:18px;

}

/* BOTÃO */

.card-content a{

    display:block;

    text-align:center;

    background:#ff1f3d;

    color:white;

    text-decoration:none;

    padding:15px;

    border-radius:10px;

    font-weight:700;

    transition:.35s;

}

.card-content a:hover{

    background:#ff3651;

}

/* =======================================================
   FRASE
======================================================= */

.quote{

    padding:120px 0;

    text-align:center;

}

.quote-icon{

    font-size:70px;

    color:#ff1f3d;

}

.quote h2{

    max-width:850px;

    margin:20px auto;

    font-size:44px;

    line-height:58px;

    font-weight:800;

}

.quote p{

    max-width:800px;

    margin:auto;

    color:#bcbcbc;

    line-height:34px;

    font-size:19px;

}

/* =======================================================
   BENEFÍCIOS
======================================================= */

.beneficios{

    padding:120px 0;

}

.beneficios h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.beneficios-grid{

    display:grid;

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

    gap:30px;

}

.beneficio{

    background:#151515;

    padding:40px;

    border-radius:16px;

    transition:.35s;

    text-align:center;

}

.beneficio:hover{

    transform:translateY(-8px);

    background:#1d1d1d;

}

.beneficio h3{

    margin:20px 0;

    font-size:24px;

}

.beneficio p{

    color:#c8c8c8;

    line-height:30px;

}

/* =======================================================
   SOBRE O PROJETO
======================================================= */

.sobre-site{

    padding:140px 0;

}

.sobre-texto{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.mini-titulo{

    color:#ff1f3d;

    font-weight:700;

    letter-spacing:3px;

    font-size:13px;

}

.sobre-texto h2{

    font-size:52px;

    margin:25px 0 35px;

    line-height:64px;

}

.sobre-texto p{

    color:#cfcfcf;

    font-size:20px;

    line-height:38px;

    margin-bottom:25px;

}

/* =======================================================
   DEPOIMENTOS
======================================================= */

.depoimentos{

    padding:130px 0;

    background:#101010;

}

.depoimentos h2{

    text-align:center;

    font-size:46px;

    margin-bottom:70px;

}

.depoimentos-grid{

    display:grid;

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

    gap:35px;

}

.depoimento{

    background:#181818;

    padding:35px;

    border-radius:18px;

    transition:.35s;

}

.depoimento:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(255,31,61,.15);

}

.aspas{

    font-size:55px;

    color:#ff1f3d;

    margin-bottom:20px;

}

.depoimento p{

    color:#d0d0d0;

    line-height:32px;

}

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

.faq{

    padding:130px 0;

}

.faq h2{

    text-align:center;

    font-size:46px;

    margin-bottom:60px;

}

.faq-item{

    background:#171717;

    border-radius:14px;

    padding:30px;

    margin-bottom:25px;

    transition:.35s;

}

.faq-item:hover{

    background:#1f1f1f;

}

.faq-item h3{

    margin-bottom:15px;

    color:#fff;

}

.faq-item p{

    color:#cfcfcf;

    line-height:30px;

}

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

.cta-final{

    padding:140px 0;

    text-align:center;

}

.cta-final h2{

    font-size:54px;

    margin-bottom:25px;

}

.cta-final p{

    max-width:700px;

    margin:0 auto 40px;

    color:#cfcfcf;

    line-height:34px;

    font-size:20px;

}

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

.footer{

    background:#050505;

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

    padding:80px 0;

}

.footer h2{

    text-align:center;

    margin-bottom:20px;

    font-size:34px;

}

.footer p{

    text-align:center;

    max-width:650px;

    margin:0 auto 35px;

    color:#9d9d9d;

    line-height:30px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.footer-links a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ff1f3d;

}

.copyright{

    text-align:center;

    color:#666;

    font-size:15px;

}

/* =======================================================
   RESPONSIVIDADE
======================================================= */

@media (max-width:1100px){

    .hero h1{
        font-size:58px;
        line-height:64px;
    }

    .frase{
        font-size:22px;
    }

}

@media (max-width:900px){

    .navbar{

        flex-direction:column;

        gap:20px;

    }

    .navbar ul{

        gap:20px;

        flex-wrap:wrap;

        justify-content:center;

    }

    .hero{

        padding:120px 25px 70px;

        text-align:center;

    }

    .hero-content{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero h1{

        font-size:46px;

        line-height:54px;

    }

    .descricao{

        font-size:18px;

    }

    .catalogo h2,
    .quote h2,
    .beneficios h2,
    .sobre-texto h2,
    .depoimentos h2,
    .faq h2,
    .cta-final h2{

        font-size:36px;
        line-height:46px;

    }

}

@media(max-width:600px){

    .container{

        width:92%;

    }

    .hero{

        min-height:auto;

        padding-top:150px;

        padding-bottom:90px;

    }

    .hero h1{

        font-size:34px;

        line-height:42px;

    }

    .frase{

        font-size:20px;

    }

    .descricao{

        font-size:17px;

        line-height:30px;

    }

    .btn-red,
    .btn-transparent{

        width:100%;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .card img{

        height:380px;

    }

    .footer-links{

        flex-direction:column;

        gap:15px;

    }

}

/* =======================================================
   PEQUENAS ANIMAÇÕES
======================================================= */

.card,
.beneficio,
.depoimento,
.faq-item{

    animation:fadeUp .7s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

::selection{

    background:#ff1f3d;

    color:white;

}

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0c0c0c;

}

::-webkit-scrollbar-thumb{

    background:#ff1f3d;

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ff3b56;

}

body{
    background:red !important;
}
