:root{
  --bg:#e8f5e9;
  --card:#ffffff;
  --green:#2e7d32;
}

body{
  margin:0;
  font-family:Arial;
  background:var(--bg);
}

/* HEADER */

.top{
  background:var(--green);
  color:white;
}

.wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
}

nav a{
  color:white;
  margin-left:15px;
  text-decoration:none;
}

/* HERO */

.hero{
  position:relative;

  height:60vh;

  background:url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=1600&auto=format') center/cover;

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

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

.hero-content{
  position:relative;
  color:white;
  text-align:center;
}

.btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 20px;
  background:#4caf50;
  color:white;
  text-decoration:none;
  border-radius:10px;
}

/* CONTAINER */

.container{
  padding:30px;
  text-align:center;
  background:white;
}

/* GALERIA */

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

.galeria img{
  width:100%;
  height:220px;
  object-fit:cover;
  cursor:pointer;
  border-radius:10px;
  transition:0.3s;
}

.galeria img:hover{
  transform:scale(1.03);
}

/* MODAL */

.modal{
  display:none;
  position:fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  top:0;
  left:0;
  justify-content:center;
  align-items:center;
}

.modal img{
  max-width:85%;
}

.fechar,.prev,.next{
  position:absolute;
  color:white;
  font-size:35px;
  cursor:pointer;
}

.fechar{
  top:20px;
  right:30px;
}

.prev{
  left:20px;
  top:50%;
}

.next{
  right:20px;
  top:50%;
}

/* STATS */

.stats{
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  gap:20px;
}

.stats h3{
  font-size:2em;
  color:#4caf50;
}

/* FOOTER */

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