.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4b3f2f;
    padding: 10px 20px;
}
.logo{
    display: flex;
    text-align: center;
    gap: 10px;
}
.logo img{
    height: 100px;
    width: auto;
    /* border: none;
    box-shadow: none;
    background: transparent; */
}
/* .logo span{
    color: white;
    font-size: 20px;
    font-weight: bold;
} */
.menu{
    list-style: none;
    display: flex;
    gap: 20px;
}
.menu a{
    text-decoration: none;
    color: white;
    font-weight: 500;
}
.menu a:hover {
  text-decoration: underline;
}
.menu-toggle{
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
            /* RESPONSIVIDADE DO MENU */
@media (max-width:768px){
    .menu{
        display: none;
        flex-direction: column;
        background-color: #4b3f2f;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
        border-radius: 0 0 0 10px;

    }
     .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
        /* FIM DO CABEÇALHO MENU */

.sobre{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 60px 20px;
    flex-wrap: wrap;
    background-color: #f4f4f4;
}
.sobre-img img{
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);

}
.sobretexto{
    max-width: 600px;
    color: #333;
}
.sobretexto h2{
    font-size: 28px;
    color: #4b3f2f;
    margin-bottom: 15px;
}
.sobretexto p{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}


/* CARROSSEL */
.cultura{
    padding: 60px 20px;
    text-align: center;
    background-color: #f4f4f4;
}
.carrossel{
    width: 300px;
    height: 230px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px black;
}
.carrossel figure{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    transition:  opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}
.carrossel img{
    width: 100%;
    height: auto;
    flex-grow: 1;
    object-fit: cover;
    border-radius: 10px 10px 0 0;

}
.carrossel figure.ativo {
  opacity: 1;
  z-index: 1;
}
.carrossel figcaption {
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #4b3f2f;
    border-radius: 0 0 10px 10px;
    text-align: center;
}
.introducao{
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-align: justify;

}

/* SOBRE NÓS */
.sobre-nos{
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
}
.info{
    margin-bottom: 30px;
}
.info ul{
    list-style: disc;
    text-align: left;
    max-width: 700px;
    margin: 10px auto;
    padding-left: 20px;
}
.info h4{
    color: rgb(13, 105, 13);
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;

}
.info p{
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 10px 0;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    /* EQUIPE */
.equipe{
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;

}
.equi{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.membro{
    width: 220px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px black;

}
.membro img{
    width: 100%;
    border-radius: 10px;
}

/* CONTATO */
.contato {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.contato h2 {
  color: #4b3f2f;
  margin-bottom: 10px;
}

.contato-texto {
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 16px;
  color: #333;
}

.formulario {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario label {
  text-align: left;
  font-weight: bold;
  color: #333;
}

.formulario input,
.formulario textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 100%;
}

.formulario button {
  padding: 10px;
  background-color: #4b3f2f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.formulario button:hover {
  background-color: #2f271e;
}
.contato-info {
  margin-top: 30px;
  font-size: 15px;
  color: #333;
}

.contato-info p {
  margin: 5px 0;
}

.contato-info a {
  color: #4b3f2f;
  text-decoration: none;
  font-weight: bold;
}

.contato-info a:hover {
  text-decoration: underline;
}
.contato-info i {
  margin-right: 8px;
  color: #4b3f2f;
  font-size: 20px;
}

/* RODAPE */
.rodape {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

.rodape p {
  margin: 5px 0;
}


