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

body{
background:#FFFFFF;
color:#222;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#FFFFFF;
border-bottom:3px solid #D4AF37;
}

.logo img{
height:70px;
}

nav a{
text-decoration:none;
margin-left:20px;
color:#222;
font-weight:bold;
}

nav a:hover

.hero{
height:90vh;
background:
linear-gradient(rgba(255,255,255,.65),rgba(255,255,255,.65)),
url('../img/banner.jpg');

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

display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero h1{
font-size:60px;
color:#B8860B;
}

.hero p{
font-size:22px;
margin:20px 0;
}

.boton{
background:#D4AF37;
padding:15px 35px;
text-decoration:none;
color:black;
font-weight:bold;
border-radius:5px;
}

section{
padding:80px 10%;
}

h2{
text-align:center;
margin-bottom:25px;
color:#B8860B;
}

#contacto form{
max-width:600px;
margin:auto;
}

input,
textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #CCC;
}

button{
background:#D4AF37;
border:none;
padding:15px 30px;
cursor:pointer;
font-weight:bold;
}

footer{
background:#F7F7F7;
padding:20px;
text-align:center;
border-top:2px solid #D4AF37;
}
