@import url('base.css');

.corpo {
    position: relative;
    z-index: 1;
    background-size: cover;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 100px 20px;
}

.corpo h2 {
    font-size: 3em;
    margin: 0;
}

.corpo p {
    font-size: 1.5em;
    margin-top: 10px;
}

.titulo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    max-width: 1300px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.titulo img {
    max-width: 100%;
    height: auto;
    width: 40%;
    /* Ajuste conforme necessário */
    margin-right: 20px;
    /* Espaçamento entre a imagem e o texto */
}

.texto {
    flex: 1;
    /* Faz com que o texto ocupe o restante do espaço */
}

.texto h1 {
    margin-top: 0;
    color: #333;
}

.texto p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    margin-bottom: 40px;
}

.section h3 {
    font-size: 2.5em;
    color: #8c6239;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2em;
    line-height: 1.6;
}


.produtos_lista {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.produtos {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
}

.produtos img {
    width: 70%;
    height: auto;
}

.produtos h4 {
    margin: 10px 0;
    font-size: 1.5em;
}

.produtos p {
    padding: 0 10px;
    font-size: 1.1em;
}

/* botões de login */
#barra {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  @media (max-width: 768px){
    .corpo{
        flex-direction: column;
    }
    
    .titulo{
        flex-direction: column;
        width: 100%;
    }

    .titulo h2{
        font-size: 1.5em;
    }
    .titulo p{
        text-align: justify;
        margin: 10px;
    }

    .titulo img{
        width: 80%;
        margin: 0 auto;
        
    }
    
    .section{
        text-align: justify;
    }

}




  /* .item {
    position: relative;
    display: inline-block;
  }
  
  .link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    border-radius: 5px;
  }
  
  .link:hover {
    background-color: #131416;
  } */
  
  /* Estilos para o submenu */
  /* .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    top: -200px;
    left: 0;
    background-color: #111213;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 200px;
    z-index: 4;
  }
  
  .submenu li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
  }
  
  .submenu li a:hover {
    background-color: #e2e6ea;
  }
  
  .submenu li a.text-danger {
    color: #dc3545;
  }
  
  .nav-item:hover .submenu {
    display: block;
  }

  .sub{

  } */