body {
    display: flex;
    height: 100vh;
    flex-direction: column;
    background-color: #020202;
    overflow: hidden;
  }
  
  main {
    flex: 1;
    min-width: 620px;
    height: 100vh;
    background-color: #fff;
    overflow: hidden;
  }


  /*sessão hero-menu*/

.hero-menu {
  position: absolute;
  margin-top: 0;
  padding: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #333333;
}

.item-logo img {
  padding: 10px 0;
  width: 200px;
}


.item-search input {
  border-radius: 20px;
  padding: 12px;
  /* width: 150%; */
  outline: none;
  border: none;
}

.search-container {
  position: relative;
  display: inline-block;
}

.search-container input[type="search"] {
  padding-left: 50px; /* Espaço para acomodar o ícone */
}

.search-container i.bi-search {
  position: absolute;
  left: 20px; /* Posição do ícone em relação ao canto esquerdo */
  top: 50%; /* Posição vertical do ícone */
  transform: translateY(-50%);
}

.item-atendimento {
  padding-right: 3%;
}

.item-atendimento button{
  border-radius: 20px;
  border: none;
  padding: 12px;
  font-weight: 500;
  transition: 1s ease-out;
}

.item-atendimento button:hover {
  background-color: #eebc31;
  color: #333;
  transition: 1s ease-in;
}

  /*Fim sessão hero-menu*/

  header {
    position: relative;
    top: 0px;
  }

  .nav {
    position: absolute;
    top: 90px;
    width: 100%;
  }
  
  .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: 1s ease;
}

.nav-link.ativo {
    background-color: #eba630;
    border-radius: 0;
    color: #333;
}
  
  .tab-content {
  background-color: #333333;
  }

  a.ativo {
    border-radius: 0 10px 10px 0 !important;
  }

  a.produtos,
  .catalogo,
  .contato,
  .quemsomos {
    border-radius: 10px !important;
  }

  .nav.nav-pills.nav-fill {
    color: aliceblue;
    text-decoration: none;
    background-color: #f7d935;
    transition: 1s ease;
  }

  .nav-link:hover {
    background-color: #ffffff;
    color: #333;
    border: none;
    transition: 1s ease;
    border-radius: 0;
  }
  

  /*Sessão Footer*/

  footer {
    display: flex;
    height: 30px;
    justify-content: center;
    bottom: 0;
    margin: 0;
    padding: 0;
    border: none;
  }

  .container-footer {
    background-color: #333333;
    height: 45px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-text {
    color: white;
  }




  /* SESSÃO DO CARROSSEL */

  .carousel {
    position: absolute;
    top: 150px;
    width: 100%;
    height: 40%;
  }
  
  .carousel-inner {
    height: 100%;
  }
  
  .carousel-item img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  
  /* Estiliza os controles do carrossel (próximo e anterior) */
  main .carousel .carousel-control-prev,
  main .carousel .carousel-control-next {
    background-color: rgba(36, 36, 36, 0);
  }

    /* Estiliza os indicadores do carrossel */
    main .carousel .carousel-indicators button {
      border: 1px solid rgb(255, 255, 255); /* Substitua pelo tamanho e cor de borda desejada */
      border-radius: 50%;
      width: 10px;
      height: 10px;
      background-color: #F7D935; /* Substitua pela cor de fundo desejada */
    }

    .carousel-control-next,
    .carousel-control-prev {
      height: 40%;
      position: absolute;
      top: 25%;
    }
  