*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#0b0b0b;
color:#ffffff;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 50px;
background:#000;
position:fixed;
width:100%;
top:0;
z-index:1000;
border-bottom:2px solid #d4af37;
}

.logo img{
height:120px;
}

.navbar ul{
display:flex;
list-style:none;
gap:25px;
}

.navbar a{
text-decoration:none;
color:#fff;
font-weight:600;
transition:.3s;
}

.navbar a:hover{
color:#d4af37;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('imagenes/portada.jpg');
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:70px;
color:#d4af37;
margin-bottom:15px;
}

.hero h2{
font-size:32px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:25px;
}

.btn{
background:#d4af37;
color:#000;
padding:15px 35px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.btn:hover{
transform:scale(1.05);
}

section{
padding:100px 10%;
}

section h2{
text-align:center;
font-size:42px;
color:#d4af37;
margin-bottom:40px;
}

#nosotros p{
max-width:900px;
margin:auto;
text-align:center;
font-size:20px;
line-height:1.8;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#151515;
border:2px solid #d4af37;
padding:30px;
border-radius:15px;
text-align:center;
font-size:20px;
font-weight:600;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
border:2px solid #d4af37;
}

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

form input,
form textarea{
padding:15px;
border:none;
border-radius:10px;
font-size:16px;
}

form textarea{
height:150px;
resize:none;
}

form button{
background:#d4af37;
color:#000;
border:none;
padding:15px;
font-size:18px;
font-weight:bold;
border-radius:10px;
cursor:pointer;
}

.datos{
text-align:center;
margin-top:40px;
font-size:20px;
line-height:2;
}

footer{
background:#000;
padding:30px;
text-align:center;
border-top:2px solid #d4af37;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:70px;
height:70px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:35px;
text-decoration:none;
color:#fff;
box-shadow:0 0 15px rgba(0,0,0,.4);
}

@media(max-width:768px){

.navbar{
flex-direction:column;
padding:15px;
}

.navbar ul{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

.hero h2{
font-size:24px;
}

section{
padding:80px 5%;
}

}