/* ...existing code... */
.carrossel {
    position: relative;
    width: 100%;
    max-width: 1300px;
    /* aumente o limite máximo */
    margin: 40px auto 0;
    overflow: hidden;
    padding: 30px 0;
}

.carrossel-container {
    display: flex;
    transition: transform 0.5s;
    gap: 40px;
    /* mais espaço entre itens */
}

.carrossel-item {
    position: relative;
    min-width: 320px;
    /* aumente o tamanho mínimo */
    max-width: 320px;
    /* aumente o tamanho máximo */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

.carrossel-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.carrossel-item img {
    width: 100%;
    height: 220px;
    /* altura fixa para padronizar */
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
    transition: filter 0.3s;
}

.carrossel-item .detalhes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(40, 40, 40, 0.92);
    color: #fff;
    padding: 22px 16px 14px 16px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.35s;
    border-radius: 0 0 16px 16px;
    pointer-events: none;
}

.carrossel-item:hover img,
.carrossel-item:focus img {
    filter: brightness(0.7);
}

.carrossel-item:hover .detalhes,
.carrossel-item:focus .detalhes {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.carrossel-item .detalhes {
    h4 {
        font-family: orbitron, sans-serif;
    }

    .preco {
        font-family: "Rajdhani", sans-serif !important;
    }.btn{
        font-family: rajdhani, sans-serif !important;
        color: var(--title);
        background: var(--fundo);
        font-weight: 600;
    }
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e8491d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    font-size: 2rem;
    font-family: "exo 2", sans-serif;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.carrossel-btn.prev {
    left: 10px;
}

.carrossel-btn.next {
    right: 10px;
}

.carrossel-btn:hover {
    background: #333;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

/* Responsivo */
@media (max-width: 900px) {
    .carrossel-item {
        min-width: 240px;
        max-width: 240px;
    }

    .carrossel-item img {
        height: 150px;
    }

    .carrossel-container {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .carrossel-item {
        min-width: 90vw;
        max-width: 90vw;
    }

    .carrossel-item img {
        height: 220px;
    }

    .carrossel-container {
        gap: 10px;
    }
}

/* ...existing code... */