/* ======================================================
   A CURA PELO AMOR
   Landing Page
   Desenvolvido por Contato Web Digital
====================================================== */

:root{

    --verde:#214838;
    --verde-dark:#18372A;
    --verde-light:#35614B;

    --dourado:#E8D37B;
    --dourado-hover:#F5E59D;

    --branco:#FFFFFF;

    --texto:#EDEDED;

    --cinza:#CCCCCC;

    --shadow:0 20px 60px rgba(0,0,0,.35);

    --transition:.35s ease;

}

/*======================================================
RESET
======================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Lato',sans-serif;

    background:var(--verde-dark);

    color:var(--texto);

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

section{

    position:relative;

}

/*======================================================
NAVBAR
======================================================*/

.navbar{

    padding:25px 0;

    transition:.4s;

    z-index:999;

}

.navbar.scrolled{

    background:rgba(24,55,42,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    padding:15px 0;

}

.navbar-brand{

    display:flex;

    flex-direction:column;

    line-height:1;

}

.brand-title{

    font-family:'Cormorant Garamond',serif;

    font-size:38px;

    color:var(--dourado);

    font-weight:700;

}

.brand-subtitle{

    font-size:17px;

    color:white;

    letter-spacing:5px;

    text-transform:uppercase;

}

.nav-link{

    color:white;

    margin-left:22px;

    transition:var(--transition);

    font-weight:600;

    position:relative;

}

.nav-link:hover{

    color:var(--dourado);

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--dourado);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.navbar-toggler{

    color:white;

    font-size:24px;

}

/*======================================================
BOTÕES
======================================================*/

.btn-buy{

    background:var(--dourado);

    color:#214838;

    border-radius:50px;

    padding:14px 36px;

    font-weight:700;

    transition:var(--transition);

    border:none;

}

.btn-buy:hover{

    background:var(--dourado-hover);

    color:#214838;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(232,211,123,.35);

}

.btn-outline-book{

    border:2px solid var(--dourado);

    color:var(--dourado);

    border-radius:50px;

    padding:14px 36px;

    transition:var(--transition);

}

.btn-outline-book:hover{

    background:var(--dourado);

    color:#214838;

}

/*======================================================
HERO
======================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    radial-gradient(circle at 78% 40%,rgba(232,211,123,.28),transparent 28%),

    linear-gradient(135deg,#214838,#284F40,#18372A);

}

/* brilho dourado */

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-180px;

    top:-120px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(232,211,123,.16),
    transparent 70%);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(to bottom,
    rgba(0,0,0,.05),
    rgba(0,0,0,.25));

}

.hero .container{

    position:relative;

    z-index:5;

}

.badge-book{

    display:inline-block;

    border:1px solid var(--dourado);

    color:var(--dourado);

    border-radius:40px;

    padding:10px 22px;

    margin-bottom:28px;

    font-size:14px;

    letter-spacing:2px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    color:var(--dourado);

    font-size:92px;

    line-height:88px;

    margin-bottom:25px;

}

.hero h2{

    font-size:30px;

    font-weight:300;

    color:white;

    margin-bottom:30px;

}

.hero p{

    font-size:21px;

    line-height:40px;

    max-width:620px;

    margin-bottom:45px;

    color:#EFEFEF;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-book{
    width:500px;
    margin:auto;
    filter:drop-shadow(0 40px 60px rgba(0,0,0,.45));
    animation:float 5s ease-in-out infinite;
    transition:.4s;
    margin-top: 100px;
}

.hero-book:hover{

    transform:rotate(-2deg) scale(1.04);

}

/*======================================================
SCROLL
======================================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    text-align:center;

    color:white;

    animation:bounce 2s infinite;

    z-index:20;

}

.scroll-indicator span{

    display:block;

    font-size:14px;

    margin-bottom:10px;

}

.scroll-indicator i{

    color:var(--dourado);

    font-size:22px;

}

/*======================================================
ANIMAÇÕES
======================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-10px);

    }

    60%{

        transform:translate(-50%,-5px);

    }

}

/*======================================================
SEÇÕES
======================================================*/

#livro,
#autor,
#capitulos,
#depoimentos,
#comprar,
#contato{

    padding:120px 0;

}

/*======================================================
RESPONSIVO
======================================================*/

@media (max-width:991px){

    .navbar{

        background:rgba(24,55,42,.96);

        padding:15px 0;

    }

    .navbar-collapse{

        margin-top:20px;

    }

    .nav-link{

        margin:12px 0;

    }

    .hero{

        text-align:center;

        padding:140px 0 100px;

    }

    .hero h1{

        font-size:64px;

        line-height:65px;

    }

    .hero h2{

        font-size:24px;

    }

    .hero p{

        font-size:19px;

        line-height:34px;

        margin:auto auto 35px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-book{

        width:340px;

        margin-top:60px;

    }

}

@media (max-width:576px){

    .brand-title{

        font-size:30px;

    }

    .brand-subtitle{

        font-size:13px;

        letter-spacing:3px;

    }

    .hero h1{

        font-size:50px;

        line-height:50px;

    }

    .hero h2{

        font-size:20px;

    }

    .hero p{

        font-size:17px;

        line-height:30px;

    }

    .btn-buy,
    .btn-outline-book{

        width:100%;

    }

    .hero-book{

        width:270px;

    }

}
/*======================================================
SOBRE O LIVRO
======================================================*/

.section-book{

    background:#F8F8F8;

    color:#444;

}

.section-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:30px;
/*
    background:#E8D37B20;
*/
    background:#E5C33D30;

    color:var(--verde);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.section-title{

    font-family:'Cormorant Garamond',serif;

    font-size:54px;

    color:var(--verde);

    margin-bottom:25px;

}

.section-text{

    font-size:20px;

    line-height:38px;

    color:#666;

}

.stack-books{

    max-width:430px;

    transition:.5s;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.20));

}

.stack-books:hover{

    transform:translateY(-10px);

}

.features{

    display:grid;

    gap:22px;

}

.feature-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.feature-item i{

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--verde);

    color:var(--dourado);

    font-size:26px;

    flex-shrink:0;

}

.feature-item h5{

    color:var(--verde);

    font-weight:700;

    margin-bottom:8px;

}

.feature-item p{

    margin:0;

    color:#666;

}

/*======================================================
VERSÍCULO
======================================================*/

.verse-section{

    background:linear-gradient(135deg,#214838,#163228);

    padding:120px 0;

}

.verse-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:white;

    padding:70px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(8px);

    border:1px solid rgba(232,211,123,.2);

}

.verse-box i{

    font-size:42px;

    color:var(--dourado);

    margin-bottom:30px;

}

.verse-box p{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    line-height:60px;

    margin-bottom:30px;

}

.verse-box span{

    color:var(--dourado);

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

}

/*======================================================
RESPONSIVO
======================================================*/

@media(max-width:991px){

    .section-book{

        text-align:center;

    }

    .section-title{

        font-size:40px;

    }

    .section-text{

        font-size:18px;

        line-height:34px;

    }

    .feature-item{

        text-align:left;

    }

    .verse-box{

        padding:40px 25px;

    }

    .verse-box p{

        font-size:30px;

        line-height:42px;

    }

}
/*======================================================
POR QUE LER ESTE LIVRO
======================================================*/

.why-read{

    background:#ffffff;

    padding:120px 0;

}

.section-subtitle{

    max-width:720px;

    margin:auto;

    color:#777;

    font-size:20px;

    line-height:36px;

}

.benefit-card{

    background:white;

    border-radius:25px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.05);

}

.benefit-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.icon-circle{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,var(--verde),var(--verde-dark));

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

}

.icon-circle i{

    color:var(--dourado);

    font-size:34px;

}

.benefit-card h4{

    color:var(--verde);

    margin-bottom:18px;

    font-weight:700;

}

.benefit-card p{

    color:#666;

    line-height:30px;

    margin:0;

}
/*======================================================
AUTOR
======================================================*/

.author-section{

    background:#f3efe6;

    position:relative;

}

.author-photo{

    position:relative;

    display:inline-block;

}

.gold-circle{

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(232,211,123,.55),
    transparent 70%);

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

}

.author-photo img{

    position:relative;

    z-index:2;

    width:480px;
/*
    border-radius:25px;

    box-shadow:0 30px 60px rgba(0,0,0,.18);
*/
    transition:.4s;

}

.author-photo img:hover{

    transform:translateY(-8px);

}

.author-name{

    margin-top:35px;

    color:var(--verde);

    font-family:'Cormorant Garamond',serif;

    font-size:40px;

}

.author-role{

    color:#8d7a43;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

}

.author-text{

    color:#555;

    font-size:19px;

    line-height:36px;

    margin-bottom:25px;

}

.author-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:40px;

}

.author-list div{

    font-size:18px;

    color:#444;

}

.author-list i{

    color:var(--verde);

    margin-right:10px;

}

@media(max-width:991px){

.author-section{

text-align:center;

}

.author-list{

grid-template-columns:1fr;

}

.author-photo img{

width:280px;

}

.author-name{

font-size:32px;

}

}
/*======================================================
HISTÓRIAS REAIS
======================================================*/

.stories-section{

    background:#f7f4eb;

    padding:120px 0;

    position:relative;

}

.story-card{

    background:#fffdf8;

    border-radius:18px;

    padding:40px 30px;

    position:relative;

    height:100%;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    overflow:hidden;

}

.story-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.page-fold{

    position:absolute;

    top:0;

    right:0;

    width:55px;

    height:55px;

    background:linear-gradient(135deg,#ece5d6,#ffffff);

    clip-path:polygon(100% 0,0 0,100% 100%);

}

.story-icon{

    display:block;

    font-size:48px;

    margin-bottom:20px;

}

.story-card h4{

    color:var(--verde);

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    margin-bottom:20px;

}

.story-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.story-link{

    color:var(--dourado);

    font-weight:600;

    transition:.3s;

}

.story-card:hover .story-link{

    padding-left:8px;

}

.story-quote{

    margin-top:90px;

    text-align:center;

    max-width:850px;

    margin-left:auto;

    margin-right:auto;

}

.story-quote p{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:var(--verde);

    line-height:1.4;

    font-style:italic;

    margin-bottom:20px;

}

.story-quote span{

    color:var(--dourado);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

}

@media(max-width:992px){

.story-quote p{

font-size:32px;

}

.story-card{

margin-bottom:20px;

}

}

@media(max-width:576px){

.story-quote p{

font-size:26px;

}

.story-card{

padding:30px 25px;

}

}