body {
  background: #1c1c1c;
  color: #e0e0e0;
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
}

header, footer {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
}

.logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo {
  max-height: 50px;
  width: auto;
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}


/* Ajuste para telas pequenas */
@media (max-width: 600px) {
  .logo-container {
    position: static;
    text-align: center;
    margin-bottom: 10px;
  }
  header h1 {
    margin-top: 0;
  }
}

h1 {
  color: #2196f3;
  margin-bottom: 10px;
}

nav {
  margin-top: 10px;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  padding: 10px 15px;
  background: #333;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: #2196f3;
  color: #fff;
  box-shadow: 0 0 10px #2196f3;
}

.toggle-menu {
  display: none;
  background: #2196f3;
  border: none;
  padding: 10px;
  color: white;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

main {
  margin-top: 30px;
  background: #333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

main.visible {
  opacity: 1;
  transform: translateY(0);
}

img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.05);
}

footer {
  margin-top: 40px;
  text-align: center;
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
}

/* Galeria de imagens na página inicial */
.gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  flex: 1 1 200px;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.show {
    display: flex;
  }

  .toggle-menu {
    display: inline-block;
  }
}
/* ...restante do CSS já existente... */

.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #25d366; /* verde WhatsApp */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6);
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  box-shadow: 0 6px 20px rgba(30, 190, 87, 0.8);
}
