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

html{
scroll-behavior:smooth;
}

body{
background:#fff;
overflow-x:hidden;
}


/* HEADER */

header{
background:#111;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 6%;
gap:20px;
flex-wrap:wrap;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:70px;
background:white;
padding:5px;
}

.logo h2{
color:white;
font-size:28px;
}

nav{
display:flex;
gap:25px;
flex-wrap:wrap;
}

nav a{
color:white;
text-decoration:none;
font-size:16px;
font-weight:bold;
}

.whatsapp-top{
background:#d4a323;
padding:14px 24px;
color:white;
font-weight:bold;
text-decoration:none;
border-radius:4px;
}



/* HERO */

.hero{

background:
linear-gradient(
rgba(0,0,0,.72),
rgba(0,0,0,.65)
),

url("hero.jpg");

background-size:cover;
background-position:center;

min-height:520px;

display:flex;
align-items:center;

padding:60px 6%;
}

.hero-content{
max-width:650px;
color:white;
}

.hero h1{
font-size:clamp(42px,8vw,88px);
line-height:.95;
}

.hero span{
color:#d4a323;
}

.line{
width:90px;
height:5px;
background:#d4a323;
margin:25px 0;
}

.hero p{
font-size:22px;
line-height:1.5;
}

.buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-top:30px;
}

.btn,
.btn2{
padding:16px 26px;
font-size:18px;
font-weight:bold;
text-decoration:none;
}

.btn{
background:#d4a323;
color:white;
}

.btn2{
border:2px solid white;
color:white;
}



/* BENEFITS */

.benefits{
background:#111;
color:white;

display:grid;
grid-template-columns:
repeat(3,1fr);

gap:25px;

padding:35px 6%;
}

.benefit{
display:flex;
gap:14px;
align-items:center;
}

.benefit i{
font-size:32px;
color:#d4a323;
}



/* SERVICES */

.services{
padding:60px 6%;
text-align:center;
}

.cards{
display:grid;

grid-template-columns:
repeat(3,1fr);

gap:20px;

margin-top:30px;
}

.card{
border:1px solid #ddd;
padding:35px 20px;
}

.card i{
font-size:38px;
color:#d4a323;
margin-bottom:15px;
}



/* PROJECTS */

.projects{
background:#111;
color:white;
padding:60px 6%;
text-align:center;
}

.gallery{
display:grid;
gap:35px;
margin-top:30px;
}

.beforeafter{
display:grid;
grid-template-columns:
1fr 1fr;
background:#222;
}

.beforeafter img{
width:100%;
height:240px;
object-fit:cover;
}

.label{
background:#111;
padding:12px;
font-weight:bold;
}

.gold{
background:#d4a323;
}



/* CONTACT */

.contact{

padding:60px 6%;

display:grid;

grid-template-columns:
1fr 1fr 180px;

gap:30px;

align-items:center;
}

.contact-info p{
margin:15px 0;
font-size:18px;
}

.contact-info i{
color:#d4a323;
}

.qrbox{
height:120px;
width:120px;

background:
repeating-linear-gradient(
45deg,
black 0 8px,
white 8px 16px
);
}



/* FOOTER */

footer{
background:#111;
color:white;
padding:50px 6%;
}

.footer-grid{
display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;
}

footer img{
width:90px;
background:white;
padding:5px;
}

footer p{
margin:10px 0;
color:#ddd;
}



/* TABLET */

@media(max-width:900px){

header{
flex-direction:column;
text-align:center;
}

.logo{
flex-direction:column;
}

nav{
justify-content:center;
}

.hero{
text-align:center;
justify-content:center;
}

.line{
margin:auto;
margin-top:20px;
margin-bottom:20px;
}

.buttons{
justify-content:center;
}

.cards,
.benefits,
.contact,
.footer-grid{

grid-template-columns:
1fr 1fr;

}

.beforeafter{

grid-template-columns:
1fr;

}

}



/* TELÉFONO VERTICAL */

@media(max-width:600px){

header{
padding:20px;
}

nav{
display:grid;
grid-template-columns:
1fr 1fr;
gap:15px;
width:100%;
text-align:center;
}

.whatsapp-top{
width:100%;
text-align:center;
}

.hero{
text-align:center;
justify-content:center;
padding:50px 25px;
}

.hero h1{
font-size:52px;
}

.hero p{
font-size:18px;
}

.buttons{
flex-direction:column;
}

.btn,
.btn2{
width:100%;
text-align:center;
}

.cards,
.benefits,
.contact,
.footer-grid{

grid-template-columns:
1fr;

}

.beforeafter{

grid-template-columns:
1fr;

}

.beforeafter img{
height:220px;
}

.contact{
text-align:center;
}

}



/* TELÉFONO HORIZONTAL */

@media(max-height:500px)
and
(orientation:landscape){

.hero{
min-height:420px;
}

.hero h1{
font-size:44px;
}

.hero p{
font-size:16px;
}

}