/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fontes e Cores */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #333;
}

/* Utilitário .container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #006400; /* Verde para destacar a marca */
  text-decoration: none;
}

.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #006400;
}

/* Banner */
.banner {
  background: url(../images/banner.png) 
              no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 2rem;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.banner p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #006400;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #004c00;
}

/* Seção Produtos */
.produtos {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}

.produtos h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #006400;
}

.secao-descricao {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.produto-card {
  background-color: #fdfdfd;
  border-radius: 8px;
  padding: 1rem;
  transition: box-shadow 0.3s ease;
}

.produto-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.produto-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.produto-card h3 {
  font-size: 1.2rem;
  color: #006400;
  margin-bottom: 0.5rem;
}

.price {
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Sobre Nós */
.sobre-nos {
  padding: 3rem 0;
  background-color: #fafafa;
}

.sobre-nos h2 {
  text-align: center;
  font-size: 2rem;
  color: #006400;
  margin-bottom: 1rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.sobre-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-texto h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.sobre-texto p {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.5;
}

.sobre-img img {
  width: 100%;
  border-radius: 8px;
}

/* Depoimentos */
.depoimentos {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}

.depoimentos h2 {
  font-size: 2rem;
  color: #006400;
  margin-bottom: 2rem;
}

.depoimentos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.depoimento-card {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.depoimento-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.depoimento-author {
  font-weight: 600;
  color: #333;
}

/* Blog */
.blog {
  padding: 3rem 0;
  background-color: #fafafa;
}

.blog h2 {
  text-align: center;
  color: #006400;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-post {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.blog-post:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-post img {
  width: 100%;
  height: auto;
}

.blog-post h3 {
  font-size: 1.2rem;
  margin: 1rem;
  color: #006400;
}

.blog-post p {
  margin: 0 1rem 1rem 1rem;
  color: #666;
}

.btn-leia-mais {
  margin: 0 1rem 1rem 1rem;
  display: inline-block;
  color: #006400;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btn-leia-mais:hover {
  color: #004c00;
}

/* Contato */
.contato {
  padding: 3rem 0;
  background-color: #fff;
  text-align: center;
}

.contato h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #006400;
}

.contato-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
  justify-items: center;
}

.contato-endereco, .contato-redes {
  background-color: #fafafa;
  padding: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
}

.contato-endereco h3, .contato-redes h3 {
  color: #333;
  margin-bottom: 1rem;
}

.contato-endereco p, .contato-redes p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: left;
}

.contato-redes a {
  color: #006400;
  text-decoration: none;
}

.icon {
  margin-right: 8px;
}

/* Rodapé */
footer {
  background-color: #006400;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .sobre-grid, .depoimentos-wrapper, .blog-grid, .contato-info {
    grid-template-columns: 1fr;
  }
  
  .nav-menu ul {
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border: 1px solid #ccc;
    display: none; /* Exemplo de menu mobile oculto */
  }
  
  .nav-menu ul.show {
    display: flex;
  }
  
  .nav-menu li {
    margin: 1rem;
  }
}
