/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

/* Cabeçalho */
.header {
  background: url("https://images.unsplash.com/photo-1549921296-3ecf4a8b469f?auto=format&fit=crop&w=1600&q=80") no-repeat center center/cover;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.header .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}
.header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}
.header p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.btn {
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: #1ebe5c;
}

/* Seções */
.section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}
.section.dark {
  background: #f5f5f5;
  border-radius: 8px;
}
.section h2 {
  color: #006414;
  text-align: center;
  margin-bottom: 20px;
}
.section p, .section ul {
  text-align: center;
  font-size: 1.1em;
}
.section ul {
  list-style: none;
  padding: 0;
}
.section ul li {
  margin: 10px 0;
}

/* Galeria */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.galeria img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.galeria img:hover {
  transform: scale(1.05);
}

/* Mapas */
iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

/* Rodapé */
footer {
  background: #006414;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 16px 20px;
  border-radius: 50%;
  font-size: 1.6em;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  z-index: 1000;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
