/* RESET E BASE */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: Arial, sans-serif;
background:#f6f6f6;
color:#4b4b4b;
}

img{
max-width:100%;
height:auto;
display:block;
}

/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* LOGO */

.logo{
width:250px;
margin:20px 0;
}

/* HERO */

.hero{
padding:20px 0 0 0;
background:#f3f3f3;
}

.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}

.hero-text{
max-width:520px;
}

.hero-text h1{
font-size:42px;
line-height:1.2;
margin-bottom:20px;
}

.subtitle{
color:#c36a18;
font-weight:bold;
margin-bottom:20px;
}

.orange{
color:#c36a18;
}

.hero-image img{
width:420px;
}

/* BOTÕES */

.btn{
background:#5f6347;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.btn:hover{
transform:translateY(-2px);
opacity:0.9;
}

.btn-cta{
background:#c96c1b;
color:white;
padding:16px 32px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
display:block;
margin:10px auto;
width:fit-content;
transition:0.3s;
}

.btn-cta:hover{
transform:scale(1.05);
}

/* BENEFITS */

.benefits{
background-image:url("bg2.png");
background-size:cover;
background-position:center;
padding:60px 0;
}

.benefits-grid{
display:grid;
grid-template-columns:1fr 1.5fr;
gap:40px;
align-items:center;
}

.benefits-image img{
width:100%;
}

.benefits-cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h3{
margin-bottom:10px;
}

.cta-container{
text-align:center;
margin-top:30px;
}

/* ABOUT */

.about{
background-image:url("bg.png");
background-size:cover;
background-position:center;
padding:10px 0 0 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
}

.about-box{
background:#6b7055;
color:white;
padding:40px;
border-radius:30px;
box-shadow:0 15px 30px rgba(0,0,0,0.1);
text-align:center;
}

.about-box h2{
margin-bottom:15px;
}

.about-box p{
margin-bottom:15px;
line-height:1.5;
}

.about-image img{
width:100%;
}

/* ================= RESPONSIVO ================= */

/* TABLET */
@media (max-width: 1024px){

.hero-content{
flex-direction:column;
text-align:center;
}

.hero-image img{
width:80%;
}

.benefits-grid{
grid-template-columns:1fr;
}

.benefits-cards{
grid-template-columns:1fr;
}

.about-grid{
grid-template-columns:1fr;
}

.about-image{
order:-1;
}

}

/* MOBILE */
@media (max-width: 768px){

.hero{
padding:50px 0 0 0;
}

/* LOGO MAIOR */
.logo{
width:200px;
margin:0 auto 20px auto;
}

/* TEXTO */
.hero-text{
max-width:100%;
padding:0 10px;
}

.hero-text h1{
font-size:34px;
line-height:1.2;
font-weight:bold;
}

/* SUBTÍTULO */
.subtitle{
font-size:16px;
margin-bottom:20px;
}

/* IMAGEM */
.hero-image img{
width:90%;
margin:20px auto 0;
}

/* BOTÕES */
.btn, .btn-cta{
width:100%;
text-align:center;
font-size:16px;
padding:16px;
}

/* CARDS */
.card{
padding:20px;
}

/* ABOUT */
.about-box{
padding:25px;
border-radius:20px;
}

}

/* MOBILE PEQUENO */
@media (max-width: 480px){

.hero-text h1{
font-size:28px;
}

.subtitle{
font-size:14px;
}

}