/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tema claro */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

/* Banner topo */
.banner-topo {
  width: 100vw;
  overflow: hidden;
}
.imagem-banner {
  width: 100vw;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mapa */
.map-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
iframe {
  width: 90%;
  max-width: 960px;
  height: 500px;
  border: none;
}


/* Botão Alcateia */
.botao-voltar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #2E312F;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.botao-voltar:hover {
  background-color: #444;
  transform: scale(1.05);
}
.icone-lobo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Botão tema escuro */
.toggle-theme {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2E312F;
  color: white;
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.toggle-theme:hover {
  background-color: #444;
  transform: scale(1.1);
}

/* Rodapé */
.rodape-site {
  background-color: #001226;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Animação */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tema escuro */
body.dark-mode {
  background-color: #1e1e1e;
  color: #eee;
}
body.dark-mode .rodape-site {
  background-color: #111;
}
body.dark-mode .botao-voltar,
body.dark-mode .toggle-theme {
  background-color: #555;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}