*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#000;
color:#fff;
overflow-x:hidden;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

.header{
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
background:#000;
border-bottom:1px solid #1f1f1f;
position:sticky;
top:0;
z-index:999;
}

.logo{
width:120px;
transition:.3s;
}

.logo:hover{
transform:scale(1.05);
}

.menu{
display:flex;
gap:40px;
}

.menu a{
color:#fff;
font-weight:600;
transition:.3s;
}

.menu a:hover{
color:#c8a55a;
}

.hero{
min-height:100vh;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
padding:80px 8%;
gap:60px;
}

.hero h1{
font-size:88px;
line-height:1.05;
color:#c8a55a;
margin-bottom:30px;
font-weight:800;
}

.hero p{
font-size:22px;
line-height:1.8;
margin-bottom:40px;
max-width:700px;
}

.btn{
display:inline-block;
padding:18px 40px;
background:#c8a55a;
color:#000;
border-radius:50px;
font-weight:700;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
background:#fff;
}

.imagen img{
border-radius:30px;
box-shadow:0 0 40px rgba(0,0,0,.5);
transition:.4s;
}

.imagen img:hover{
transform:scale(1.02);
}

.servicios{
padding:120px 8%;
background:#050505;
}

.servicios h2{
text-align:center;
font-size:52px;
margin-bottom:70px;
color:#c8a55a;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;
}

.card{
background:#0d0d0d;
border-radius:25px;
overflow:hidden;
transition:.4s;
border:1px solid #1f1f1f;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 10px 30px rgba(0,0,0,.5);
}

.card img{
width:100%;
height:240px;
object-fit:cover;
}

.card h3{
padding:20px 20px 10px;
font-size:28px;
color:#c8a55a;
}

.card p{
padding:0 20px 30px;
line-height:1.7;
}

.nosotros,
.testimonios,
.faq,
.contacto{
padding:120px 8%;
}

.nosotros h2,
.testimonios h2,
.faq h2,
.contacto h2{
font-size:52px;
text-align:center;
margin-bottom:40px;
color:#c8a55a;
}

.nosotros p{
max-width:1000px;
margin:auto;
text-align:center;
font-size:22px;
line-height:1.9;
}

.testimonios-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.testimonio{
background:#0d0d0d;
padding:40px;
border-radius:25px;
border:1px solid #1f1f1f;
transition:.3s;
}

.testimonio:hover{
transform:translateY(-8px);
}

.testimonio p{
font-size:20px;
line-height:1.8;
margin-bottom:20px;
}

.testimonio h4{
color:#c8a55a;
}

.faq-item{
background:#0d0d0d;
border-radius:20px;
margin-bottom:25px;
overflow:hidden;
border:1px solid #1f1f1f;
}

.faq-question{
padding:25px;
font-size:22px;
font-weight:600;
cursor:pointer;
}

.faq-answer{
padding:0 25px 25px;
display:none;
line-height:1.8;
color:#ccc;
}

.redes{
margin-top:40px;
display:flex;
justify-content:center;
gap:30px;
}

.redes a{
color:#fff;
font-size:20px;
transition:.3s;
display:flex;
align-items:center;
gap:10px;
}

.redes a:hover{
color:#c8a55a;
}

.footer{
padding:40px;
text-align:center;
border-top:1px solid #1f1f1f;
background:#000;
}

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:75px;
height:75px;
background:#25d366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:38px;
color:#fff;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,.4);
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}

@media(max-width:1200px){

.hero{
grid-template-columns:1fr;
text-align:center;
}

.hero p{
margin:auto auto 40px;
}

.hero h1{
font-size:70px;
}

}

@media(max-width:768px){

.menu{
gap:20px;
font-size:14px;
}

.hero h1{
font-size:52px;
}

.hero p{
font-size:18px;
}

.servicios h2,
.nosotros h2,
.testimonios h2,
.faq h2,
.contacto h2{
font-size:40px;
}

.logo{
width:90px;
}

}