*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


header {
    background-color: #202020;
    position: fixed;
    top: 0;
    width: 100%; 
    z-index: 10;
}

.logo {
    margin-left: -50px;
}

.logo img {
    height: 100px; /* controla o tamanho da imagem */
    width: auto;
    display: block;
    
}

.logo img {
    transition: transform 0.9s ease; /* Transição suave */
}

.logo img:hover {
    transform: scale(1.2); /* Aumenta o logo */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 10rem;
    max-width: 1200px;
    margin: 0 auto;
    
    
}


.logo {
    display: flex;
    align-items: center;
    
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 50px;
    
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF0000;
    
}


.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(fundo.jpg) center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 60px;
    height: 100vh;
}

.hero-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-conteudo h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-conteudo p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgb(116, 0, 0);
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.btn:hover {
    background-color: rgba(116, 0, 0, 0.322);
}

.sobre {
    padding: 5rem 2rem;
    background-color: #81818144;
    text-align: center;
    
}


.sobre h2 {
    
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 1rem;
    color: #000000;
}

.terreno {
   margin-top: 50px; 
}

.onde {
    margin-top: -100px;
}

.sobre p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: #000000;
}

.produtos {
    padding: 5rem 2rem;
    background-color: #fff;
}

.produtos h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c1810;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.produto-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.5s;
    cursor: pointer;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.produto-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.produto-icon img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.preco {
    font-weight: bold;
    color: burlywood;
    font-size: 1.5rem;
}


.localizacao {
    padding:  5rem 2 rem;
    background-color: #f9f9f9;
    
}

.localizacao h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c1810;
}


.contato-info {
    text-align: center;
    margin-bottom: 2rem;
}


.mapa {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
}

.mapa iframe {
    display: block;
    border-radius: 10px;
}

footer {
    display: flex;
    justify-content: center;
    background-color: #202020;
    color: white;
    height: 100px;
    align-items: center;
    
}


#btn-mobile {
    display: none;
    
}




@media (max-width: 670px) {
    
    #menu {
        display: none;
        position: absolute;
        width: 100%;
        top: 149px;
        right: 0px;
        background: rgb(77, 76, 76);
        
        
        
    }
    #nav.active #menu {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -49px ;
        
    }
    #btn-mobile {
        display: flex;
        padding: .5rem 1rem;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: .5rem;
    }
    #hamburger {
        color: white;
        display: block;
        border-top: 2px solid;
        width: 20px;
    }
    #hamburger::after, #hamburger::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: .3s;
        position: relative;
    }
    #nav.active #hamburger {
        border-top-color: transparent;
    }
    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }
    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

}


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Botões WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-family: Arial, sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  z-index: 9999;
}

.whatsapp-btn img {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}

/* Cores diferentes */
.whatsapp-btn.rafael {
  background-color: #25D366; /* Verde claro WhatsApp */
  left: 10px;
}

.whatsapp-btn.guilherme {
  background-color: #128C7E; /* Verde escuro WhatsApp */
  left: 140px;
}

/* Efeito hover */
.whatsapp-btn:hover {
  opacity: 1;
}

/* Texto visível no desktop só no hover */
.whatsapp-btn span {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.3s ease, opacity 0.3s ease;
}

.whatsapp-btn:hover span {
  max-width: 100px;
  opacity: 1;
}

/* Mobile: texto sempre visível, botões menores e empilhados */
@media (max-width: 670px) {
  .whatsapp-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
    opacity: 0.7;
  }

  .whatsapp-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .whatsapp-btn span {
    max-width: 120px;
    opacity: 1;
  }

  /* Empilha os botões à esquerda, com espaçamento vertical */
  .whatsapp-btn.rafael {
    left: 15px;
    bottom: 70px;
  }

  .whatsapp-btn.guilherme {
    left: 15px;
    bottom: 15px;
  }
}

