body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url('"images/aparecida-do-norte1.jpg"') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.container {
  background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro translúcido para legibilidade */
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
}

.galeria-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  max-width: 100%;
  gap: 10px;
}

.galeria-viewer {
  width: 360px; /* tamanho fixo da imagem */
  overflow: hidden;
}

.galeria-itens {
  display: flex;
  transition: transform 0.4s ease;
}

.galeria-itens img {
  min-width: 360px;
  max-width: 360px;
  height: auto;
  border-radius: 10px;
}

.item {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item img, .item video {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.btn {
  background-color: #008000;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #006400;
}


form input,
form select {
  background-color: rgba(255, 255, 255, 0.308); /* Campos ainda precisam ser visíveis */
  color: #000;
}


.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 400px;
}

.whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #006624;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp:hover {
  background-color: #006624;
}

form button,
a.whatsapp {
  background-color: #006624;
  color: white;
}
.video-galeria {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  overflow: hidden;
  margin: 20px 0;
}

.video-viewer {
  width: 360px;
  overflow: hidden;
}

.video-itens {
  display: flex;
  transition: transform 0.4s ease;
}

.video-wrapper {
  min-width: 360px;
  height: 215px;
  position: relative;
}

.custom-video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1;
}
