 /* SEÇÃO DE PRODUTOS */
 .cx-products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .cx-products-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    padding: 10px 0;
  }

  /* CARROSSEL */
  .cx-carousel-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
  }

  .cx-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .cx-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
    padding: 10px 0;
  }

  .cx-product-item {
    flex: 0 0 auto;
    width: 100%;
    border: 2px solid var(--cor-menu);
    border-radius: 8px;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
  }

  .cx-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .cx-product-item img {
    width: 100%;
    height: 290px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .cx-product-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    height: 40px;
    overflow: hidden;
  }
  

  .cx-product-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
  }

  .cx-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  

  /* BOTÕES DE NAVEGAÇÃO */
  .cx-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ec4401;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .cx-carousel-btn:hover {
    background-color: #f0f0f0;
  }

  .cx-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .cx-prev {
    left: -17px;
    z-index: 1;
  }

  .cx-next {
    right: -17px;
    z-index: 1;
  }

  /* RESPONSIVO */
  @media (min-width: 1025px) {
    .cx-product-item {
      flex: 0 0 calc(25% - 15px);
      min-width: calc(25% - 15px);
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .cx-product-item {
      flex: 0 0 calc(33.33% - 15px);
      min-width: calc(33.33% - 15px);
    }
  }

  @media (min-width: 481px) and (max-width: 768px) {
    .cx-product-item {
      flex: 0 0 calc(50% - 15px);
      min-width: calc(50% - 15px);
    }
  }

  @media (max-width: 480px) {
    .cx-product-item {
      flex: 0 0 calc(100% - 15px);
      min-width: calc(100% - 15px);
    }
    
    .cx-carousel-btn {
      width: 30px;
      height: 30px;
      font-size: 16px;
    }
  }