/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f7f9f8;
color:#2e3a34;
line-height:1.6;
}

/* HEADER */
.header{
background:white;
padding:20px;
text-align:center;
border-bottom:1px solid #e5e5e5;
}

.logo{
width:140px;
}

/* HERO */
.hero{
padding:80px 20px;
text-align:center;
background:linear-gradient(#ffffff,#f3f6f4);
position:relative;
}

.hero::before{
content:"100% ONLINE";
position:absolute;
top:20px;
left:50%;
transform:translateX(-50%);
background:#3a7d44;
color:white;
padding:6px 16px;
border-radius:20px;
font-size:12px;
letter-spacing:1px;
}

.hero h1{
font-family:'Playfair Display',serif;
font-size:42px;
max-width:800px;
margin:auto;
margin-bottom:25px;
color:#1e3b2c;
}

.subtitle{
font-size:18px;
max-width:600px;
margin:auto;
margin-bottom:30px;
color:#4e5e55;
}

/* VIDEO */
.video-container{
max-width:800px;
margin:40px auto;
position:relative;
}

.video-container::before{
content:"Assista antes de decidir";
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:#3a7d44;
color:white;
padding:6px 14px;
font-size:12px;
border-radius:20px;
}

.video-container video{
width:100%;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* BOTÃO */
.cta-main{
display:inline-block;
background:#3a7d44;
color:white;
padding:16px 38px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
box-shadow:0 8px 20px rgba(58,125,68,0.3);
}

.cta-main:hover{
background:#2c6134;
transform:translateY(-2px);
}

/* SEÇÕES */
section{
padding:40px 20px;
}

h2{
font-family:'Playfair Display',serif;
font-size:32px;
margin-bottom:30px;
text-align:center;
}

/* PROBLEMAS */
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
}

.card{
background:#d8ebe1;
padding:25px;
border-radius:12px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

/* AUTORIDADE */
.autoridade{
background:#eef3ef;
}

.autoridade p{
max-width:700px;
margin:10px auto;
}

/* SESSÃO (AJUSTE AQUI) */
.sessao{
max-width:800px;
margin:0 auto;
text-align:center;
}

.sessao h2{
margin-bottom:25px;
}

.sessao .cta-main{
margin:20px 0 30px 0;
}

.sessao p{
margin-bottom:15px;
color:#4e5e55;
}

/* DIFERENCIAL */
.diferencial{
max-width:800px;
margin:0 auto;
text-align:center;
}

.diferencial p{
margin-bottom:15px;
color:#4e5e55;
}

/* TERAPEUTAS */
.terapeutas{
text-align:center;
}

.terapeutas-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
margin-top:40px;
max-width:1000px;
margin-left:auto;
margin-right:auto;
}

.terapeuta{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.terapeuta img{
width:120px;
border-radius:100%;
margin-bottom:15px;
}

.criadores-descricao{
max-width:700px;
margin:40px auto 0;
color:#4e5e55;
}

/* PROVA */
.prova{
background:#ffffff;
}

.depoimentos{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1000px;
margin:auto;
}

.depoimentos div{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* PACOTES */
.pacotes{
background:#f3f6f4;
}

.pacotes-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.pacote{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
text-align:center;
transition:0.3s;
}

.pacote:hover{
transform:translateY(-5px);
}

.destaque{
border:2px solid #3a7d44;
transform:scale(1.03);
}

.preco{
font-size:28px;
color:#e53935;
font-weight:700;
margin:10px 0;
}

.botao{
display:inline-block;
background:#3a7d44;
color:white;
padding:14px 28px;
border-radius:25px;
text-decoration:none;
margin-top:15px;
font-weight:500;
}

.botao:hover{
background:#2c6134;
}

/* FAQ */
.faq{
background:#eef3ef;
}

.faq-item{
max-width:700px;
margin:20px auto;
background:white;
padding:20px;
border-radius:10px;
}

/* CTA FINAL */
.cta-final{
text-align:center;
background:#3a7d44;
color:white;
padding:60px 20px;
}

.cta-final h2{
color:white;
}

/* FOOTER */
footer{
background:#1f3b2c;
color:white;
text-align:center;
padding:30px;
}

/* RESPONSIVO */
@media(max-width:768px){

.hero h1{
font-size:30px;
}

.subtitle{
font-size:16px;
}

}