/* ==========================================================
   RECAÍDA EMOCIONAL
   style.css
   Parte 1
========================================================== */


/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#ffffff;

    color:#353535;

    font-family:'Inter',sans-serif;

    font-size:18px;

    line-height:1.75;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}



/* ==========================================================
   VARIÁVEIS
========================================================== */

:root{

    --primary:#8B6A60;

    --primary-dark:#6F4F46;

    --secondary:#F8F5F3;

    --gray:#F2F2F2;

    --text:#353535;

    --title:#242424;

    --white:#FFFFFF;

    --radius:18px;

    --shadow:0 18px 45px rgba(0,0,0,.08);

    --transition:.35s ease;

}



/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(1180px,92%);

    margin:auto;

}

.narrow{

    max-width:760px;

    margin:auto;

}



/* ==========================================================
   ESPAÇAMENTO
========================================================== */

.section{

    padding:110px 0;

}

.gray{

    background:#fafafa;

}

.soft{

    background:#fcfbfa;

}



/* ==========================================================
   TIPOGRAFIA
========================================================== */

h1,
h2,
h3{

    font-family:'Cormorant Garamond',serif;

    color:var(--title);

    font-weight:600;

    letter-spacing:.2px;

}

h1{

    font-size:64px;

    line-height:1.05;

    margin-bottom:28px;

}

h2{

    font-size:48px;

    line-height:1.15;

    margin-bottom:26px;

}

h3{

    font-size:30px;

    line-height:1.35;

    margin-bottom:18px;

}

p{

    margin-bottom:22px;

}

.section-tag{

    display:inline-block;

    margin-bottom:18px;

    text-transform:uppercase;

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;

    color:var(--primary);

}

.eyebrow{

    display:inline-block;

    margin-bottom:26px;

    color:var(--primary);

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:13px;

}



/* ==========================================================
   HERO
========================================================== */

.hero{

    padding:110px 0;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:90px;

}

.hero-text h2{

    font-size:34px;

    color:#666;

    margin-bottom:34px;

}

.hero-text p{

    font-size:20px;

    color:#555;

    margin-bottom:40px;

}



/* ==========================================================
   MOCKUP
========================================================== */

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:420px;

    border-radius:18px;

    box-shadow:var(--shadow);

}



/* ==========================================================
   BOTÕES
========================================================== */

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 36px;

    background:var(--primary);

    color:#fff;

    border-radius:999px;

    font-weight:600;

    font-size:17px;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.btn-large{

    padding:22px 46px;

    font-size:19px;

}



/* ==========================================================
   TEXTOS CENTRALIZADOS
========================================================== */

.narrow{

    text-align:center;

}



/* ==========================================================
   BLOCKQUOTE
========================================================== */

blockquote{

    margin:50px auto;

    max-width:720px;

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    font-style:italic;

    color:var(--primary);

    text-align:center;

    line-height:1.25;

}



/* ==========================================================
   LINKS
========================================================== */

a{

    transition:var(--transition);

}



/* ==========================================================
   SEÇÕES
========================================================== */

.section p:last-child{

    margin-bottom:0;

}



/* ==========================================================
   ANIMAÇÃO SUAVE
========================================================== */

.hero,
.section{

    animation:fadeUp .9s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ==========================================================
   REVEAL
========================================================== */

.reveal-grid{

    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:80px;

    align-items:center;

}

.reveal-image{

    display:flex;

    justify-content:center;

}

.reveal-image img{

    max-width:380px;

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.reveal-content h2{

    margin-bottom:12px;

}

.reveal-content h3{

    color:#666;

    font-size:28px;

    margin-bottom:32px;

}



/* ==========================================================
   CARDS
========================================================== */

.cards-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.card{

    background:#fff;

    padding:34px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

    text-align:left;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 55px rgba(0,0,0,.10);

}

.card h3{

    font-family:'Inter',sans-serif;

    font-size:20px;

    font-weight:500;

    color:#444;

    line-height:1.6;

    margin:0;

}



/* ==========================================================
   CHECKLIST
========================================================== */

.check-list{

    max-width:700px;

    margin:50px auto 0;

    display:grid;

    gap:18px;

}

.check-list li{

    background:#fff;

    padding:22px 28px;

    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    text-align:left;

    font-size:18px;

    transition:.3s;

}

.check-list li:hover{

    transform:translateX(8px);

}



/* ==========================================================
   OFFER
========================================================== */

.offer{

    background:linear-gradient(
        180deg,
        #faf8f7,
        #ffffff
    );

}

.offer-box{

    max-width:760px;

    margin:auto;

    background:#fff;

    border-radius:26px;

    padding:70px;

    text-align:center;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.offer-intro{

    max-width:620px;

    margin:30px auto;

}



/* ==========================================================
   PREÇO
========================================================== */

.price-box{

    margin:50px 0;

}

.old-price{

    display:block;

    color:#999;

    text-decoration:line-through;

    font-size:22px;

}

.current-price{

    display:block;

    margin:8px 0;

    font-size:72px;

    font-weight:700;

    color:var(--primary);

    line-height:1;

}

.payment{

    display:block;

    color:#666;

    margin-top:10px;

}



/* ==========================================================
   INFORMAÇÕES
========================================================== */

.safe-payment{

    margin-top:35px;

    color:#666;

    font-size:16px;

    line-height:2;

}



/* ==========================================================
   AUTOR
========================================================== */

.author-grid{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:70px;

    align-items:center;

}

.author-photo{

    display:flex;

    justify-content:center;

}

.author-photo img{

    width:280px;

    height:280px;

    object-fit:cover;

    border-radius:50%;

    box-shadow:var(--shadow);

}

.author-text{

    text-align:left;

}



/* ==========================================================
   FAQ
========================================================== */

.faq{

    max-width:860px;

    margin:auto;

}

.faq-item{

    border-bottom:1px solid #ececec;

}

.faq-question{

    width:100%;

    padding:28px 0;

    border:none;

    background:none;

    cursor:pointer;

    font-size:21px;

    text-align:left;

    font-weight:600;

    color:#333;

    transition:.3s;

}

.faq-question:hover{

    color:var(--primary);

}

.faq-answer{

    display:none;

    padding-bottom:28px;

    color:#666;

    line-height:1.8;

}



/* ==========================================================
   CTA FINAL
========================================================== */

.final-cta{

    background:#faf7f5;

    text-align:center;

}

.final-cta p{

    max-width:620px;

    margin:0 auto 40px;

}



/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#242424;

    color:#d8d8d8;

    padding:50px 0;

}

.footer{

    text-align:center;

}

.footer p{

    margin:8px 0;

    font-size:15px;

}

/* ==========================================================
   ANIMAÇÕES
========================================================== */

.hidden{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.visible{

    opacity:1;

    transform:translateY(0);

}

.sticky-cta{
    position: fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:1000;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;

    padding:14px 20px;

    background:rgba(255,255,255,.96);
    box-shadow:0 -6px 25px rgba(0,0,0,.08);

    transform: translateY(110%);
    transition:.35s ease;
}

.sticky-cta.show{
    transform:translateY(0);
}

.sticky-cta span{
    font-weight:600;
}

.sticky-cta-button{
    background:var(--primary);
    color:white;
    padding:10px 22px;
    border-radius:999px;
    font-weight:600;
}

.credibility{
    padding:65px 0;
    background:#fff;
}

.credibility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    text-align:center;
}

.credibility-item strong{
    display:block;

    font-family:'Cormorant Garamond',serif;
    font-size:44px;

    color:var(--primary);
}

.credibility-item span{
    color:#666;
    font-size:16px;
}

.bonus-section{
    padding:70px 0;
    margin-bottom:150px;
}

.bonus-grid{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:70px;
    align-items:center;
}

.bonus-image img{
    width:320px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto;
}

.bonus-text ul{
    margin-top:28px;
}

.bonus-text li{
    margin-bottom:12px;
}

/* ==========================================================
   RESPONSIVIDADE MOBILE
========================================================== */

@media (max-width: 768px) {

    .container{
        width:92%;
    }

    .section{
        padding:70px 0;
    }

    h1{
        font-size:42px;
    }

    h2{
        font-size:34px;
    }

    h3{
        font-size:24px;
    }

    .hero{
        padding:70px 0;
    }

    .hero-grid,
    .reveal-grid,
    .author-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .hero-image,
    .reveal-image,
    .author-photo{
        order:1;
    }

    .hero-text,
    .reveal-content,
    .author-text{
        order:2;
    }

    .hero-image img{
        max-width:320px;
        margin:auto;
    }

    .reveal-image img{
        max-width:320px;
        margin:auto;
    }

    .author-photo img{
        width:220px;
        height:220px;
    }

    .author-text{
        text-align:left;
    }

    .cards-grid{
        grid-template-columns:1fr;
        gap:18px;
        margin-top:35px;
    }

    .card{
        width:100%;
        padding:26px;
    }

    .check-list{
        margin-top:35px;
    }

    .offer-box{
        padding:42px 24px;
    }

    .current-price{
        font-size:56px;
    }

    .credibility-grid{
        grid-template-columns:1fr;
        gap:26px;
    }

    blockquote{
        font-size:32px;
    }

    .sticky-cta{
        gap:14px;
        padding:10px 12px;
    }

    .sticky-cta span{
        font-size:14px;
    }

    .sticky-cta-button{
        padding:9px 16px;
        font-size:14px;
    }

    body{
        padding-bottom:72px;
    }
    
.bonus-grid{
    display:block !important;
}

.bonus-image{
    width:100% !important;
    margin-bottom:30px;
}

.bonus-text{
    width:100% !important;
}

.bonus-image img{
    width:260px;
    max-width:100%;
    margin:0 auto;
}
}