/* === (desktop) === */

html {
  scroll-behavior: smooth;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.logo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-image img {
  width: 100%;
  height: 600px; /* usa a altura natural da imagem */
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.menu {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 25px;
  color: #333;
  display: flex;
  justify-content: center;
  gap: 30px;
}

section {
  padding: 60px 20px;
  text-align: center;
  background-color: #333;
  color: #fff;
  border-bottom: 1px solid #333;
}

section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

section p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.content section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.content section.ativo {
  display: block;
  opacity: 1;
}

.rodape {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 1px solid #333;
}

a {
  color: #a67c52; 
  text-decoration: none;
}

a:hover {
  color: #d2b48c; /
}

.contato-zap a,
.contato-email a, 
.contato-endereco a:hover {
  color: #a67c52; 
  text-decoration: none;
}

.contato-zap a:hover,
.contato-email a:hover,
.contato-endereco a:hover {
  color: #d2b48c; 
}

.botao-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; 
  color: #fff;
  font-size: 28px;
  padding: 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.botao-flutuante:hover {
  background-color: #1ebe5d;
}

.contato-email i {
  margin-right: 8px;
  color: #a67c52; 
}

.content section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.content section:target,
.content section[style*="block"] {
  opacity: 1;
}

.rodape {
  background-color: #111;
  color: #a67c52;
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  border-top: 1px solid #333;
}

.rodape a {
  margin: 0 10px;
  font-size: 24px;
  color: #a67c52;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rodape a:hover {
  color: #d2b48c;
}

/* === (mobile) === */

@media (max-width: 600px) {
  .logo img {
    width: 60px;
    height: 60px;
    margin-top: 0;
    max-width: 120px;
    margin-top: 0px;
    margin: 5px 0;
  }

  .hero-image img {
    height: 200px;
    object-position: top center;
  }

  .menu {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 25px;
  color: #333;
  display: flex;
  justify-content: center;
  gap: 15px;
  }
}
