.home-container {
  background-color: #F5F5F5;

  width: 100%;
  min-height: 200px;
}

.home-products-category-list-title {
  color: #F49811;
  font-size: 40px;
  width: fit-content;
  /* font-weight: 400; */
  position: relative;
  padding-bottom: 15px;
}

.home-products-category-list-title::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(auto + 10px);
  bottom: 0;
  left: 25%;
  right: auto;
  width: 60px;
  height: 3px;
  background-color: #F49811;
}

.home-products-category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;

  position: relative;

  padding-bottom: 50px;

  overflow: hidden;
}

.home-products-category-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 290px);
  justify-content: center;
  gap: 30px;
  padding-left: 20px;
  padding-right: 20px;

  width: 100%;
  max-width: 980px;

  position: relative;
  z-index: 10;
}

.home-products-category-container-left-image, .home-products-category-container-right-image {
  position: absolute;
  z-index: 5;
}

.home-products-category-container-left-image {
  right: 60vw;
  top: 120px;

  width: 326.53px;
  height: 215px;
}

.home-products-category-container-right-image {
  left: 75vw;
  top: 80px;

  width: 237px;
  height: 261px;
}

.home-tip-section {
  padding-top: 34px;
}

.home-tip-list-title {
  color: #F49811;
  font-size: 30px;
  width: fit-content;
  position: relative;
  padding-bottom: 15px;
}

.home-tip-list-title::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(auto + 10px);
  bottom: 0;
  left: 30%;
  right: auto;
  width: 60px;
  height: 3px;
  background-color: #F49811;
}

.home-tip-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;

  position: relative;

  padding-bottom: 50px;

  overflow: hidden;
}

.home-tip-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 310px);
  justify-content: center;
  gap: 30px;
  padding-left: 20px;
  padding-right: 20px;

  width: 100%;
  max-width: 1050px;

  position: relative;
  z-index: 10;
}

.home-highlights-section {
  width: 100%;
  height: 460px;
}

.home-recipes-section {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;

  padding-bottom: 50px;
}

.home-recipes-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  position: relative;

  padding-bottom: 50px;

  overflow: hidden;

  padding-left: 25px;
  padding-right: 25px;
}

.home-recipes-list-title {
  color: #F49811;
  font-size: 30px;
  width: fit-content;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.home-recipes-list-title::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(auto + 10px);
  bottom: 0;
  left: 20%;
  right: auto;
  width: 60px;
  height: 3px;
  background-color: #F49811;
}


.home-home-recipe-highlight-section {
  padding-top: 34px;
}

.home-recipe-highlight-list-title {
  color: #F49811;
  font-size: 30px;
  width: fit-content;
  position: relative;
  padding-bottom: 15px;
}

.home-recipe-highlight-list-title::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(auto + 10px);
  bottom: 0;
  left: 5%;
  right: auto;
  width: 60px;
  height: 3px;
  background-color: #F49811;
}

.home-recipe-highlight-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;

  position: relative;

  overflow: hidden;
}

.home-recipe-highlight-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 310px);
  justify-content: center;
  gap: 75px;
  padding-left: 20px;
  padding-right: 20px;

  width: 100vw;
  max-width: 1050px;

  position: relative;
  z-index: 10;
}

.home-all-recipes-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 310px);
  justify-content: center;
  column-gap: 40px;
  row-gap: 75px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100vw;
  max-width: 1350px;
  position: relative;
  z-index: 10;

  padding-bottom: 60px;
}

.home-tip-see-more-button {
  margin-top: 30px;
}


@media screen and (min-width: 768px) {
  .home-products-category-container {
    row-gap: 60px;
    padding-bottom: 60px;
  }

  .home-products-category-container-left-image {
    right: 75vw;
    top: 180px;
  
    width: 471.2px;
    height: 311.4px;
  }
  
  .home-products-category-container-right-image {
    left: 80vw;
    top: 120px;
  
    width: 376.19px;
    height: 415px;
  }

  .home-tip-section {
    padding-top: 44px;
  }

  .home-tip-list-container {
    grid-template-columns: repeat(auto-fill, 400px);
    gap: 40px;
    max-width: 1320px;
  }

  .home-tip-list-title {
    font-size: 36px;
  }

  .home-tip-list-title::after {
    left: 34%;
  }

  .home-categories {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    justify-content: center;
    padding-left: 30px;
    margin-left: 25px;
    margin-right: 25px;
}

  .home-category-list {
      display: flex;
      gap: 23px;
      padding-left: 10px;
      margin: 0;
      /* justify-content: flex-start; */
      overflow-x: auto; /* Habilita o scroll horizontal */
      -webkit-overflow-scrolling: touch; /* Suporte para touch no iOS */
      scroll-behavior: smooth; /* Scroll suave */
      white-space: nowrap; /* Evita que os itens quebrem linha */
  }

  /* Oculta a barra de rolagem no navegador */
  .home-category-list::-webkit-scrollbar {
      display: none; /* Oculta a barra de rolagem no WebKit (Chrome, Safari) */
  }

  /* Para navegadores que não suportam o WebKit */
  .home-category-list {
      -ms-overflow-style: none; /* Oculta a barra de rolagem no IE e Edge */
      scrollbar-width: none; /* Oculta a barra de rolagem no Firefox */
  }

  /* Certifique-se de que os links de categoria não quebrem linha */
  .home-category-list-item,
  .home-category-list-selected {
      white-space: nowrap;
  }

  .home-recipe-products-category-container {
    row-gap: 60px;
    padding-bottom: 60px;
  }

  .home-recipe-products-category-container-left-image {
    right: 75vw;
    top: 180px;
  
    width: 471.2px;
    height: 311.4px;
  }
  
  .home-recipe-products-category-container-right-image {
    left: 80vw;
    top: 120px;
  
    width: 376.19px;
    height: 415px;
  }

  .home-recipe-highlight-list-container {
    grid-template-columns: repeat(auto-fill, 622px);
    gap: 40px;
    row-gap: 90px;
    max-width: 1440px;
  }

  .home-recipe-highlight-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      row-gap: 30px;
    
      position: relative;
      overflow: hidden;
    }

  .home-recipe-highlight-list-title {
    font-size: 36px;
  }

  .home-recipe-highlight-list-title::after {
    left: 12%;
  }

  .home-all-recipes-list-container {
    grid-template-columns: repeat(auto-fill, 400px);
  }
}