*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Montserrat',sans-serif;
background:#efe5d8;
color:#4a3123;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.container-pequeno{
width:90%;
max-width:850px;
margin:auto;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:80px 0;
background:#efe5d8;
}

.hero-container{
width:90%;
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero-content h1{
font-family:'Cormorant Garamond',serif;
font-size:5rem;
line-height:0.9;
margin:20px 0;
font-weight:400;
}

.hero-content p{
line-height:2;
margin-bottom:30px;
font-size:1.1rem;
}

.mini-texto{
color:#a67c52;
letter-spacing:2px;
font-size:0.8rem;
}

.hero-image{
display:flex;
justify-content:center;
}

.hero-image img{
width:100%;
max-width:520px;
border-radius:30px;
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.btn{
display:inline-block;
background:#28d366;
color:white;
text-decoration:none;
padding:18px 35px;
border-radius:50px;
font-weight:600;
transition:0.3s;
margin-top:20px;
}

.btn:hover{
transform:translateY(-5px);
}

/* SOBRE */

.sobre{
padding:120px 0;
background:white;
}

.sobre-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.sobre-imagem img{
width:100%;
border-radius:30px;
}

.sobre-texto h2{
font-family:'Cormorant Garamond',serif;
font-size:4rem;
margin-bottom:25px;
line-height:1;
}

.sobre-texto p{
line-height:2;
margin-bottom:20px;
}

/* BLOCO */

.bloco{
padding:120px 0;
background:#efe5d8;
text-align:center;
}

.bloco h2{
font-family:'Cormorant Garamond',serif;
font-size:4rem;
line-height:1.1;
margin-bottom:30px;
}

.bloco p{
line-height:2;
font-size:1.1rem;
}

/* CARDS */

.cards-section{
padding:120px 0;
background:white;
}

.cards-section h2{
text-align:center;
font-family:'Cormorant Garamond',serif;
font-size:4rem;
margin-bottom:60px;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:#f8f1e8;
padding:45px;
border-radius:30px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.card h3{
margin-bottom:20px;
font-size:1.5rem;
color:#a67c52;
}

.card p{
line-height:1.9;
}

/* OLHAR INTEGRATIVO */

.olhar{
padding:120px 0;
background:white;
}

.olhar-texto{
max-width:850px;
margin:auto;
}

.titulo-integrativo{
font-family:'Cormorant Garamond',serif;
font-size:5rem;
line-height:0.9;
font-weight:400;
margin-bottom:40px;
text-align:left;
}

.titulo-integrativo span{
display:block;
font-size:5rem;
}

.olhar-foto{
display:flex;
justify-content:center;
margin:35px 0;
}

.olhar-foto img{
width:100%;
max-width:420px;
border-radius:30px;
box-shadow:0 15px 30px rgba(0,0,0,0.10);
display:block;
}

.olhar-texto p{
line-height:2;
margin-bottom:22px;
font-size:1rem;
}

.olhar h3{
font-size:1.5rem;
margin-top:40px;
margin-bottom:18px;
color:#a67c52;
font-weight:700;
}

/* CTA */

.cta{
background:#4b3425;
color:white;
padding:120px 0;
text-align:center;
}

.cta h2{
font-family:'Cormorant Garamond',serif;
font-size:4rem;
margin-bottom:30px;
}

.cta p{
line-height:2;
max-width:700px;
margin:auto;
margin-bottom:40px;
}

/* RESPONSIVO */

@media(max-width:900px){

.hero-container,
.sobre-grid,
.cards{
grid-template-columns:1fr;
}

.hero{
padding:120px 0;
}

.hero-content,
.olhar-texto{
text-align:center;
}

.hero-content h1,
.sobre-texto h2,
.bloco h2,
.cards-section h2,
.titulo-integrativo,
.titulo-integrativo span,
.cta h2{
font-size:3rem;
}

.hero-image{
display:flex;
justify-content:center;
}

.olhar-foto img{
max-width:320px;
}

}