/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* TIPOGRAFIA */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #000000;
  color: #000000; /* <<< AGORA ESTÁ BRANCO */
  padding-bottom: 60px;
}


a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

a:hover {
  color: #000;
}

/* HEADER E NAV */
header {
  background-color: #000;
  padding-bottom: 10px;
}

header img.hero-img {
  display: block;
  margin: 0 auto;
  max-width: 250px;
  width: 80%;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  background-color: #fafafa;
  flex-wrap: wrap;
}

nav a {
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 6px;
}

nav a.active,
nav a:hover {
  background-color: #000;
  color: #fff;
}

/* MAIN */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
}

.hero h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #7e7979;
  transform: scale(1.05);
}

/* TÍTULOS DE SERVIÇOS */
.servicos-titulo {
  text-align: center;
  margin: 40px 0 20px;
}

.servicos-titulo h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}

/* SEPARADOR DE FOTOS */
.divisor-fotos {
  width: 100%;
  text-align: center;
  margin: 30px 0 15px;
  color: #fff;
  font-size: large;
}

.divisor-fotos h3 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

/* GALERIA DE FOTOS */
.fotos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 1000px;
  align-items: center;
}

.fotos-container > div {
  flex: 1 1 30%;
  max-width: 48%;
  padding: 10px;
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.fotos-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.fotos-container > div:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

/* VÍDEOS */
.foto-container-video video {
  width: 100%;
  border-radius: 8px;
}

/* CONTATO CONOSCO CARD */
.contato-conosco {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
}

.contato-conosco h3 {
  margin-bottom: 15px;
  font-size: 1.8em;
}

.btn-whatsapp {
  display: inline-block;
  padding: 15px 30px;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5b;
  transform: translateY(-5px);
}

/* FORMULÁRIO DE CONTATO */
.form-contato {
  text-align: center;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fdfdfd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-contato input:focus,
.form-contato textarea:focus {
  border-color: #25d366;
  outline: none;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.3);
}

.form-contato button {
  background-color: #25d366;
  color: white;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.form-contato button:hover {
  background-color: #1ebe57;
  transform: scale(1.02);
}

/* FOOTER */
footer {
  width: 100%;
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 30px 10px;
  }

  .produto {
    flex-direction: column;
    align-items: flex-start;
  }

  .produto-imagem img {
    width: 100%;
    height: auto;
  }

  .fotos-container > div {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  nav a {
    font-size: 1rem;
    padding: 10px;
  }
}

/* SEÇÃO VANTAGENS */
.vantagens {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
}

.vantagens h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #000;
}

.vantagens-lista {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.vantagem {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vantagem:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.vantagem h3 {
  margin-bottom: 15px;
  color: #000;
}

.vantagem ul {
  list-style-type: disc;
  padding-left: 20px;
}

.vantagem ul li {
  margin-bottom: 8px;
}

/* SOBRE */
.sobre {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.sobre h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}
