/* Reset básico */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Estilo do corpo */
body {
  background-image: url('https://i.postimg.cc/65r7VXSf/Whats-App-Image-2025-06-12-at-13-26-01.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: black;
  font-family: Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); /* melhor contraste do texto */
}

/* Menu de navegação */
nav {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}

nav a {
  text-decoration: none;
  color: black;
  margin: 0 10px;
  font-weight: bold;
}

nav a:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* Conteúdo principal */
section {
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  margin: 20px;
  border-radius: 8px;
  min-height: 60vh;
}

/* Responsividade */
@media (max-width: 768px) {
  body {
    background-size: contain;
    background-attachment: scroll;
  }
}

/* Formulário de contato */
.form-contato {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.form-contato label {
  font-weight: bold;
}

.form-contato input,
.form-contato textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
  width: 100%;
  max-width: 600px;
}

.form-contato button {
  width: 150px;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.form-contato button:hover {
  background-color: #0056b3;
}

.form-contato button:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* Lightbox para galeria de imagens */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  padding: 0 15px;
}

.nav.esquerda { left: 10px; }
.nav.direita { right: 10px; }

.nav:hover,
.fechar:hover {
  color: #ccc;
}
.legenda {
  color: #fff;
  font-size: 1.1em;
  margin-top: 15px;
  text-align: center;
  max-width: 90%;
}
/* Overlay para destacar a imagem */
.imagem-destaque-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2000;
}

.imagem-destaque-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px white;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
nav {
  display: flex;
  align-items: center;
  padding: 10px;
}

nav .logo {
  height: 50px; /* ajuste conforme necessário */
  margin-right: 15px;
}

