/* Fundo geral */
body {
  background-color: #e0e0e0; /* Cinza claro um pouco mais escuro */
  padding-top: 70px;
  scroll-behavior: smooth;
}


/* Navbar */
.nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #28a745;
}

/* HERO / Banner principal */
.hero {
  background: url('https://images.unsplash.com/photo-1590845947703-0d49e0db395e?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
  height: 300px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 5px #000;
}

.hero h2 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
    text-align: center;
    padding: 0 15px;
  }
}

/* Títulos das seções */
#galeria h2,
#contato h2 {
  font-weight: 600;
  color: #343a40;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* Galeria */
img.shadow-sm {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

img.shadow-sm:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.img-wrapper {
  background-color: #111;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.3s;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.galeria-img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #000;
  border-radius: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.img-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.img-wrapper:hover .galeria-img,
.galeria-img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* Botão "Ver mais" */
.btn-ver-mais {
  display: inline-block;
  padding: 12px 24px;
  background-color: #222;
  color: #f1f1f1;
  border: 2px solid #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s;
}

.btn-ver-mais:hover {
  background-color: #444;
  color: #fff;
  transform: scale(1.05);
}

/* Botão de envio mais estilizado */
.btn-success {
  font-weight: 600;
  padding: 12px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  box-shadow: 0 4px 10px rgba(33, 136, 56, 0.6);
}

#contato button:focus {
  outline: 3px solid #28a745;
  outline-offset: 2px;
}

/* Seção de Contato com novo visual */
#contato {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 60px auto;
}

@media (max-width: 576px) {
  #contato {
    padding: 20px;
    margin: 30px 10px;
  }
}

#contato form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contato input,
#contato textarea {
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#contato input::placeholder,
#contato textarea::placeholder {
  font-style: italic;
  color: #999;
}

#contato input:focus,
#contato textarea:focus {
  border-color: #28a745;
  box-shadow: 0 0 4px rgba(40, 167, 69, 0.4);
}

#contato button {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

/* Mensagens de ajuda */
.form-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
}

/* Rodapé */
footer {
  background-color: #111;
  font-size: 0.9rem;
  color: #f1f1f1;
  text-align: center;
  padding: 1rem 0;
}

/* Botão flutuante de contato (WhatsApp, etc.) */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-contact:hover {
  transform: scale(1.1);
}
/* HERO responsivo para mobile */
@media (max-width: 576px) {
  .hero-banner {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    padding: 0 10px;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 15px;
  }
}

