/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #00695c;
  color: white;
  padding: 20px;
  text-align: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: #004d40;
  border-radius: 5px;
}

.hero {
  background: url('../image/world.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.5rem;
}

.hero .btn {
  margin-top: 20px;
  background-color: #00897b;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.hero .btn:hover {
  background-color: #004d40;
}

main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
}

section {
  margin-bottom: 60px;
}

section img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 8px;
}

section h3 {
  color: #00695c;
}

section .btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #00695c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

footer {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
}

#whatsapp-float {
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  padding: 12px 15px;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

#whatsapp-float {
  right: 20px;
  background-color: #25D366;
}

#doacao-flutuante {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

#doacao-flutuante input[type="image"] {
  width: 160px;  /* ajuste conforme necessário */
  height: auto;
  cursor: pointer;
}

#language-selector {
  position: absolute;
  right: 20px;
  top: 20px;
}

#language-selector select {
  padding: 6px;
  border-radius: 5px;
  border: none;
}

.logo {
  height: 200px;
  width: auto;
  margin-bottom: 10px;
}
