/* style.css */ @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

/* Tipografia e cores padrão */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Containers */
.container {

  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */

.header {
   background-image: url(imagen/logo/Design\ sem\ nome.png);
   background-position: top center; 
   background-repeat: no-repeat; 
   background-size: cover; 
   min-height: 105vh; 
   display: flex; 
   align-items: center; 
   justify-content: center; 
   text-align: center; 
}

.logo { 
  color: #ffffff; 
  font-size: 35px; 
  font-weight: 900; 
  right: 18px;
  margin: 15px;
 }

.menu { 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  z-index: 1000; 
  background-color: #052502; 
  border-bottom: 1px solid #530f0f; 
  margin-top: auto;
  border-radius: 15px;

}

.menu-icono {
  width: 30px;
  cursor: pointer;
}

.menu .navbar ul li {
  position: relative;
  float: left;
}
.menu .navbar ul li a {
  font-size: 18px;
  padding: 20px;
  color: #fafafa;
  display: block;
  }

.menu .navbar ul li a:hover {
   color: #e7ff0e; 
  }

#menu { 
  display: none; 
}
  
.menu-icono {
  width: 25px; 
}

.menu label {
   display: none; 
   cursor: pointer;
   }
   
/* Conteúdo do cabeçalho */
.header-content {
  text-align: center;
  margin-top: 40px;
}

.header-info h1 {
   color: #135a0a; 
   text-transform: uppercase; 
   font-size: 70px; 
   font-weight: 800; 
   letter-spacing: 2px; 
   margin-bottom: 10px;
  }
  
.header-info h5 {
    font-size: 2rem;
  margin-bottom: 20px;
  color: #000000;

}

.header-info p { 
  color: #fafafa; 
  font-size: 35px; 
  text-transform: capitalize; 
  margin-bottom: 35px; 
}

.btn-1 {
  background: #fff;
  color: #2e7d32;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.btn-1:hover {
  background-color: #ff460e;
}

.btn-3 {
  background: #a0a0a0;
  color: #09130a;
  padding: 7px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.btn-3:hover {
  background-color: #0ca707;
}


/* Seções de conteúdo */
.rec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 80px 0;
  gap: 60px;
  
}

.rec-1, .rec-2 {
  flex: 1 1 45%;
}

.rec h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2e7d32;
  margin: 30px;

}

.rec p {
  font-size: 1rem;
  color: #555;
  margin: 30px;
}

.img-1 {
  width: 100%;
  border-radius: 10px;
  margin: 25px;
}

.img-2 {
  width: 100%;
  border-radius: 10px;
   margin: 25px;
}

/* LOGO WHATSAPP */
.img-9 {
  width: 75PX;
  border-radius: 35px;
  margin: 50px;
}

/* Formulário de contato */
.contato {
  background: #e8f5e9;
  padding: 40px 0;
  text-align: center;
}

.contato h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2e7d32;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}



button {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* Rodapé */
.footer {
  background: #1b5e20;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  border-radius: 20px;
}

.footer h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.links a {
  color: #fff;
  text-decoration: none;
}

.btn-2 {
  background: #9c9393;
  color: #1b5e20;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .rec {
    flex-direction: column;
  }
}
