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

body{
background:white;
color:#333;
line-height:1.6;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.1);
position:sticky;
top:0;
}

.logo{
width:120px;
}

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

.hero{
text-align:center;
padding:100px 20px;
background:#f8f8f8;
}

.hero h1{
font-size:50px;
color:#0f4d38;
margin-bottom:20px;
}

.hero p{
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.btn{
display:inline-block;
background:#0f4d38;
color:white;
padding:15px 30px;
border-radius:10px;
text-decoration:none;
}

section{
padding:70px 10%;
}

h2{
text-align:center;
margin-bottom:30px;
color:#0f4d38;
}

.galeria{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.galeria img{
width:100%;
height:300px;
object-fit:cover;
border-radius:15px;
}

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

table th{
background:#0f4d38;
color:white;
padding:15px;
}

table td{
padding:15px;
border:1px solid #ddd;
text-align:center;
}

.cta-box{
background:#f4f4f4;
padding:40px;
text-align:center;
border-radius:15px;
}

.redes{
display:flex;
justify-content:center;
gap:20px;
margin-top:20px;
}

.redes a{
text-decoration:none;
background:#0f4d38;
color:white;
padding:10px 20px;
border-radius:10px;
}

footer{
background:#0f4d38;
color:white;
text-align:center;
padding:20px;
}