.secao-carrossel-produtos {
    padding: 40px 20px;
    background: #f5f5f5;
  }
  .container-carrossel {
    max-width: 1200px;
    margin: auto;
  }
  .carrossel-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  .topo-carrossel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
  }
  .titulo-carrossel {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
  }
  .ver-mais {
    font-size: 0.9rem;
    color: #d41405;
    text-decoration: none;
    margin-left: 5px;
  }
  .indicadores-carrossel {
    display: flex;
    align-items: center;
  }
  .indicadores-carrossel span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    margin-left: 4px;
  }
  .indicadores-carrossel span.ativo {
    background: #d41405;
  }
  .carrossel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .carrossel-itens {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding: 15px 10px;
  }
  .carrossel-itens::-webkit-scrollbar {
    display: none;
  }
  .card-produto-horizontal {
    flex: 0 0 calc(20% - 20px); /* 5 cards por linha */
    width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    padding: 10px;
    text-align: center;
  }
  .card-produto-horizontal img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 8px;
  }
  .card-produto-horizontal h3 {
    font-size: 0.95rem;
    color: #333;
    margin: 6px 0;
  }
  .preco-produto-horizontal {
    font-size: 1.1rem;
    font-weight: bold;
    color: #d41405;
  }
  .btn-scroll {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 0.8px solid #eee;
    color: #d41405;
    font-size: 1.6rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    font-weight: 300;
    line-height: 1;
  }

  .btn-scroll:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.05);
  }

  .btn-scroll.left { left: 5px; }
  .btn-scroll.right { right: 5px; }
  