/* Estilo geral */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfcfa;
    color: #333;
}

/* Cartões informativos do topo */
.card-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
    flex-wrap: wrap;
}

.card-item {
    background-color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width: 220px;
}

.card-item:hover {
    transform: translateY(-5px);
}

.card-item i {
    font-size: 2rem;
    color: brown;
    margin-bottom: 0.5rem;
}

/* Título principal */
.tituloProduto {
    font-size: 2.5rem;
    font-weight: bold;
    color: brown;
    text-align: center;
    margin-top: 2rem;
}

/* Slide de vaquejadas */
/* .slide-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem;
}

.slide {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.slide li {
    scroll-snap-align: center;
    background-color: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    min-width: 400px;
    text-align: center;
    transition: transform 0.3s;
}

.slide li:hover {
    transform: scale(1.02);
} */

/* Imagens das vaquejadas */
.imgProduto,
.imgProduto-mobile {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Botão de compra */
#botaoComprarSenha {
    background-color: brown;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#botaoComprarSenha:hover {
    background-color: #a0100c;
}

/* Botão ver mais */
#visualizarVaquejadas {
    background-color: brown;
    color: #fff;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#visualizarVaquejadas:hover {
    background-color: #a8140b;
}

/* Responsivo */
@media (max-width: 768px) {
    .slide li {
        min-width: 280px;
    }

    .card-item {
        width: 90%;
    }

    .imgProduto,
    .imgProduto-mobile {
        height: 250px;
    }
}