*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}

body{
background:#ffffff; /* REMOVIDO ROXO */
}

/* HERO */

.hero{
min-height:100vh;
background-image:url("img/terapia.png");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
padding:20px;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
top:0;
left:0;
}

.content{
position:relative;
max-width:700px;
width:100%;
}

/* TOPO COM LOGO */

.topo-flex{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
flex-wrap:wrap;
}

.logo-topo{
width:40px;
}

/* TEXTOS */

.top-text{
letter-spacing:2px;
font-size:18px;
margin-bottom:40px;
}

.title{
font-size:40px;
font-weight:bold;
margin-bottom:20px;
}

/* PREÇOS */

.price{
margin-bottom:30px;
}

.old-price{
text-decoration:line-through;
color:#ccc;
font-size:20px;
display:block;
margin-bottom:5px;
}

.valor-antigo{
text-decoration: line-through;
}

/* PREÇO PRINCIPAL */
.installments{
color:#00c3ff;
font-size:38px;
font-weight:bold;
}

/* PARCELADO (MENOR) */
.installments-small{
font-size:16px;
color:#666;
margin-top:5px;
}

.pix{
font-size:20px;
margin-top:5px;
}

/* BOTÕES PRINCIPAIS */

.btn{
display:block;
margin:10px auto;
padding:15px;
width:100%;
max-width:350px;
border-radius:8px;
font-weight:bold;
text-decoration:none;
}

.btn1{
background:#ff9d00;
color:white;
}

.btn2{
background:#2b82ff;
color:white;
}

/* PRIVACIDADE */

.privacidade{
width:300px;
max-width:80%;
display:block;
margin:30px auto 0 auto;
opacity:0.9;
}

/* ========================= */
/* SEÇÃO APRENDIZADO */
/* ========================= */

.aprendizado{
background:#ffffff;
padding:60px 20px;
text-align:center;
}

.aprendizado h2{
font-size:36px;
color:#0a2a5c;
margin-bottom:40px;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.card-aprendizado{
background:#f7f7f7;
border-radius:15px;
padding:30px;
max-width:1000px;
margin:0 auto;
display:flex;
align-items:center;
gap:30px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:left;
}

.img-curso{
width:120px;
}

.texto h3{
margin-bottom:10px;
font-size:20px;
}

.texto p{
color:#444;
line-height:1.6;
}

/* ========================= */
/* BOTÃO CTA */
/* ========================= */

.cta-center{
text-align:center;
margin-top:30px;
}

.btn-cta{
display:inline-block;
padding:18px 30px;
border-radius:12px;
font-weight:bold;
text-decoration:none;
color:black;
background:linear-gradient(90deg,#ffd000,#ffb300);
position:relative;
overflow:hidden;
}

/* ========================= */
/* SEÇÃO PALESTRANTE */
/* ========================= */

.palestrante{
background:#ffffff;
padding:60px 20px;
}

.container-palestrante{
display:flex;
align-items:center;
gap:40px;
max-width:1100px;
margin:0 auto;
}

.img-palestrante{
width:400px;
border-radius:10px;
}

.texto-palestrante h2{
margin-bottom:20px;
color:#0a2a5c;
}

.texto-palestrante p{
margin-bottom:15px;
line-height:1.6;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media (max-width:768px){

.title{
font-size:30px;
}

.installments{
font-size:32px;
}

.pix{
font-size:18px;
}

.top-text{
font-size:14px;
}

.card-aprendizado{
flex-direction:column;
text-align:center;
}

.container-palestrante{
flex-direction:column;
text-align:center;
}

.img-curso{
width:100px;
}

.img-palestrante{
width:100%;
}

}

@media (max-width:480px){

.title{
font-size:24px;
}

.installments{
font-size:26px;
}

.pix{
font-size:16px;
}

}