
.hero{
height:100vh;
background:url("img/hero-4.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:white;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.5));
}

.hero-content{
position:relative;
max-width:900px;
animation:fadeUp 1.2s ease;
}

.hero-subtitle{
font-style:italic;
margin-bottom:20px;
opacity:.9;
}

.hero h1{
font-size:90px;
font-weight:800;
line-height:1.1;
}

.hero h1 span{
display:block;
font-size:30px;
font-weight:400;
margin-top:10px;
}

.scroll{
font-size:14px;
opacity:.8;
cursor:pointer;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
}

body{
background:white;
color:#1a1a1a;
}

/* TITULO */

.testimonials{
width:90%;
max-width:1200px;
margin:auto;
padding:80px 0;
}

.title{
max-width:500px;
margin-bottom:50px;
}

.title span{
color:#1e73ff;
font-weight:600;
}

.title h2{
font-size:40px;
margin:15px 0;
}

.title p{
color:#666;
line-height:1.6;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:
repeat(3,1fr);
gap:25px;
}

.card{
border:1px solid #e5e5e5;
padding:25px;
border-radius:10px;
background:white;
transition:.3s;
}

.card:hover{
border-color:#1e73ff;
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,.08);
}



.stars{
color:#ff9f1c;
font-size:18px;
margin-bottom:15px;
}



.card p{
color:#555;
line-height:1.6;
margin-bottom:25px;
}

.person{
display:flex;
align-items:center;
gap:12px;
}


.person img{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
}

.person h4{
color: #272727;
font-size:15px;
}

.person span{
font-size:13px;
color:#272727;
}

/* ABOUT */

.about{
width:90%;
max-width:1200px;
margin:auto;
padding:80px 0;
display:flex;
gap:50px;
align-items:center;
}

.about-img{
width:50%;
border-radius:10px;
}

.about-text{
width:50%;
}

.about-text span{
color:#ff9f1c;
font-weight:600;
}



.about-text h2{
font-size:38px;
margin:15px 0;
}

.about-text p{
color:#555;
line-height:1.7;
}



/* BANNER */

.banner{
width:90%;
max-width:1200px;
margin:80px auto;
height:250px;
border-radius:10px;
background:
linear-gradient(
rgba(0,0,0,.5),
rgba(0,0,0,.5)
),
url(img/banner.jpg);
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}



.banner span{
color:#ff9f1c;
}



.banner h2{
font-size:32px;
margin-top:10px;
}



/* RESPONSIVE */

@media(max-width:1000px){

.grid{
grid-template-columns:
repeat(2,1fr);
}


.about{
flex-direction:column;
}
.about-img{
width:100%;
}


.about-text{
width:100%;
}
}



@media(max-width:600px){
.grid{
grid-template-columns:1fr;
}


.title h2{
font-size:30px;
}


.banner h2{
font-size:24px;
}
}