/* Vitrine de Preços - a940e1b8 */

.vp-a940e1b8-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.vp-a940e1b8-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.vp-a940e1b8-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vp-a940e1b8-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.vp-a940e1b8-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vp-a940e1b8-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.vp-a940e1b8-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e94560;
    line-height: 1.3;
}

.vp-a940e1b8-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vp-a940e1b8-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.vp-a940e1b8-price-row:nth-child(even) {
    background-color: #ffffff;
}

.vp-a940e1b8-price-row:hover {
    background-color: #fff3f5;
}

.vp-a940e1b8-label {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}

.vp-a940e1b8-price-value {
    font-size: 16px;
    font-weight: 700;
    color: #e94560;
}

.vp-a940e1b8-no-results {
    text-align: center;
    color: #888888;
    font-size: 16px;
    padding: 40px 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .vp-a940e1b8-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vp-a940e1b8-cols-3,
    .vp-a940e1b8-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vp-a940e1b8-cols-2,
    .vp-a940e1b8-cols-3,
    .vp-a940e1b8-cols-4 {
        grid-template-columns: 1fr;
    }

    .vp-a940e1b8-card {
        padding: 18px;
    }

    .vp-a940e1b8-title {
        font-size: 16px;
    }
}
