.carousel-wrapper {
            position: relative;
            max-width: 1450px;
            margin: 50px auto;
        }

        .carousel {
            overflow: hidden;
           
            
        }

        .slides-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .product {
            min-width: 25%;
            box-sizing: border-box;
            padding: 10px;
            text-align: center;
            background-color: white;
            position: relative;
            transition: all 0.3s ease-in-out;
        }

        .product img {
            width: 100%;
            border-radius: 6px;
            transition: opacity 0.3s ease-in-out;
        }

        .info {
            margin-top: 10px;
        }

        .product-name {
            font-weight: bold;
            color: #333;
        }

        .product-price {
            color:rgb(187, 32, 32);
        }

        /* Hover - troca imagem e esconde info */
        .product:hover .info {
            display: none;
        }

        .product:hover img.primary {
            display: none;
        }

        .product:hover img.secondary {
            display: block;
        }

        .product img.secondary {
            display: none;
            position: absolute;
            top: 10px;
            left: 10px;
            width: calc(100% - 20px);
        }

        /* Botões laterais */
        .btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;               /* Sem fundo */
    color: black;                   /* Cor da seta */
    border: none;                   /* Sem borda */
    font-size: 32px;                /* Aumenta o tamanho da seta */
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;      /* Suaviza o hover */
}

.btn-nav:hover {
    color: #555;                    /* Cor da seta ao passar o mouse */
    transform: translateY(-50%) scale(1.1);  /* Leve aumento */
}

.btn-prev {
    left: -40px;                    /* Ajuste opcional de posição */
}

.btn-next {
    right: -40px;
}

        @media (max-width: 768px) {
            .product {
                min-width: 50%;
            }
        }

        @media (max-width: 480px) {
            .product {
                min-width: 100%;
            }
        }

       

        .scarguetenobuffete {
  font-family: "Germania One", system-ui;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centraliza vertical e horizontal */
  text-align: center;
}

.scarguetenobuffetel{
  font-family: "Germania One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
}

.scarguetenobuffeton{
  font-family: "Germania One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
}

.scarguetenobuffetin{
  font-family: "Germania One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  color: white;
    transform: translateY(-18%);
  
}