html {
  scroll-behavior: smooth;
}

body {
  background-color: #f5fcff;
  font-family: 'PT Sans', sans-serif;
}

::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(255, 241, 223);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #00878A;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #7BBDD6;
}

* {
    margin: 0px;
    box-sizing: border-box;
  }
  
  nav {
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    font-family: 'Questrial', sans-serif;
    background-color: #cce8ff;
    padding-top: 1%;
    padding-bottom: 1%;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
  }
  
  .logo {
    z-index: 1;
  }
  
  .nav-links {
    display: flex;
    justify-content: space-around;
    width: 35%;
  }
  
  .nav-links li{
    list-style: none;
  }
  
  .nav-links a{
    color: #00878A;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 18px;
  }
  
  .nav-links a:hover{
    color: #7BBDD6;
    transition: 0.5s;
    border-bottom: 1px solid rgb(117, 96, 69);
  }
  
  .burguer div{
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: rgb(23, 36, 59);
  }
  
  .burguer {
    display: none;
  }
  
  .nav-active{
    transform: translateX(0%);
  }

  .sidenav {
    width: 400px;
    position: fixed;
    z-index: 1;
    top: 140px;
    left: 0px;
    background: #cce8ff;
    overflow-x: hidden;
    padding: 8px 0;
  }
  
  .sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 18px;
    color: #00878A;
    display: block;
    font-family: 'Questrial', sans-serif;
    text-align: right;
    letter-spacing: 2px;
    font-weight: bold;
  }
  
  .sidenav a:hover {
    color: #7BBDD6;
    transition: 0.5s;
  }
  
  .main {
    font-size: 28px; /* Increased text to enable scrolling */
    margin-top: 20%;
  }

  .divisoria h2{
    text-align: center;
    font-size: 45px;
    color: #00878A;
    margin-top: 10%;
  }
  .divisoria p{
    text-align: center;
    padding-top: 20px;
    font-size: 25px;
    color: #00878A;
  }

  .produtos {
    margin-top: 5%;
    padding: 3%;
    margin-left: 20%;
    margin-right: 10%;
  }

  .produtos a {
    text-decoration: none;
  }

  .produtos img{
    width: 250px;
    border: rgb(117, 96, 69) 4px solid;
  }

  .produtos img:hover{
    opacity: 50%;
    transition: 0.5s;
  }

.redes {
    text-align: center;
    width: 100%;
    position: sticky;
    top: 0;
    float: left;
  }
  
  .icones {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    width: 70px;
    position: sticky;
    border-radius: 50%;
  }
  
  footer {
    background-color: rgb(255, 241, 223);
    padding: 3% 0 3% 0;
    text-align: center;
    font-family: 'PT Sans', sans-serif;
    color: #00878A;
    margin-top: 10%;
    
  }
  
  footer .rodape {
    font-size: 17px;
    padding-top: 2%;
  }

  @media screen and (max-width:1650px) {
    .nav-links {
      width: 40%;
    }
  }
  
  @media screen and (max-width:882px) {
    body {
      overflow-x: hidden;
    }
    
    .nav-links {
      display: flex;
      justify-content: space-around;
      flex-direction: column;
      padding-right: 2px;
    }
  
    .categorias img {
      width: 75px;
      border-radius: 50%;
      border: rgb(117, 96, 69) 4px solid;
    }
  
    .imagembotao {
      height: 100%;
      width: auto;
      z-index: 0;
    }
  
    .nav img {
      width: 15px;
      padding-left: 2px;
    }
  
    nav {
      z-index: 1;
      display: flex;
      align-items: center;
      min-height: 8vh;
      font-family: 'Questrial', sans-serif;
      background-color: #cce8ff;
      padding-top: 1%;
      padding-bottom: 1%;
      position: fixed; /* Set the navbar to fixed position */
      top: 0; /* Position the navbar at the top of the page */
      width: 100%; /* Full width */
    }
  
    .nav-links a{
      color: #00878A;
      text-decoration: none;
      letter-spacing: 2px;
      font-weight: bold;
      font-size: 12px;
    }

    .divisoria h2 {
      font-size: 30px;
      margin-top: 30%;
    }

    .produtos img{
      width: 210px;
    }
  }