/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #9e9f88;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Botões */
.btn {
  display: inline-block;
  background: #d4af37; /* Dourado elegante */
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #b8860b;
}

/* Cabeçalho */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
 
}


.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  color: #595A34;
  font-size: 30px;

}

.logoimg {
  
  border: 0px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 70px;
  
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hero */
.hero {
  background: url('../assets/imagens/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Seções */
.section {
  padding: 80px 0;
  /*color: white;*/
  font-size: 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.bg-light {
   background-color: #f9f9f9;  
 /* background-color: #8A8B64; */
}

/* Serviços */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.servico-card {
  /*background: white; */
  background-color: #e7e8d6;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

/* Galeria */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.galeria-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.galeria-grid img:hover {
  transform: scale(1.03);
}

/* Formulário */
.form-contato {
  max-width: 600px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;

}

.form-contato input,
.form-contato select,
.form-contato textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  

}

.contato-info {
  text-align: center;
  font-size: 1.1rem;
  
}

.contato-social {
  text-align: center;
  font-size: 1.1rem;
  display: flow-root;
  align-items: center;


}


.contato-icone{
  /*border: 0px solid #0fa614; */
  border-radius: 0px;
  padding: 0px;
  width: 40px;
  height:40px;
  
}

.flutuante-icone{
  border: 0px solid #0fa614;
  border-radius: 0px;
  padding: 0px;
  width: 50px;
  height:50px;
  
}

.img{
  height: 50px;
}



/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 10px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border: 3px solid white;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .servicos-grid,
  .galeria-grid {
    grid-template-columns: 1fr;
  }
}

  /* Container do WhatsApp flutuante */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  
 /* background-color: #25D366; */
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(91, 250, 47, 0.093); 
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.whatsapp-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Efeito hover */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Balão de fala "Fale Conosco" */
.whatsapp-bubble {
  position: absolute;
  left: -120px; /* Posiciona à esquerda do botão */
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  white-space: nowrap;
  pointer-events: none; /* Permite clicar no botão por trás */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.whatsapp-float:hover .whatsapp-bubble {
  opacity: 1;
}


/* Em telas pequenas (mobile), esconde o texto */
@media (max-width: 768px) {
  .whatsapp-text {
    display: flex;
  }
  
}







