*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#111;
color:#fff;
}

.container{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

h2{
text-align:center;
margin-bottom:40px;
font-size:32px;
}

/* NAV */

nav{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,.7);
backdrop-filter:blur(10px);
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
z-index:999;
}

nav img{
height:45px;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
color:#fff;
text-decoration:none;
}

nav a:hover{
color:#d4a64d;
}

/* HERO */

.hero{
height:90vh;
background:url("img/madera-1.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero h1{
font-size:50px;
}

.hero p{
margin-top:20px;
font-size:18px;
}

/* TARJETAS */

.card{
background:rgba(255,255,255,.05);
padding:40px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.4);
}

/* PRODUCTOS */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.product{
height:200px;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-weight:bold;
font-size:20px;
}

/* MAPA */

.map-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

/* FORM */

form{
display:grid;
gap:15px;
}

input,textarea{
padding:12px;
border-radius:8px;
border:none;
}

textarea{
height:120px;
}

button{
padding:14px;
background:#d4a64d;
border:none;
border-radius:8px;
cursor:pointer;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.whatsapp img{
width:35px;
}

/* FOOTER */

footer{
background:#000;
text-align:center;
padding:25px;
margin-top:60px;
}