/* Cards modernos estilo Windows 11 - 100% responsivo */
.wc-cards-container-v2 {
    padding: 50px 20px;
    max-width: 1600px;
    margin: 0 auto;
    font-family: 'Segoe UI Variable', 'Segoe UI', system-ui, sans-serif;
}

.wc-cards-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
}

/* Classes dinâmicas de colunas */
.d-4 { grid-template-columns: repeat(4, 1fr); }
.d-3 { grid-template-columns: repeat(3, 1fr); }
.d-2 { grid-template-columns: repeat(2, 1fr); }

.t-3 { grid-template-columns: repeat(3, 1fr); }
.t-2 { grid-template-columns: repeat(2, 1fr); }

.m-1 { grid-template-columns: 1fr; }

/* Breakpoints */
@media (min-width: 1024px) {
    .d-4 { grid-template-columns: repeat(4, 1fr); }
    .d-3 { grid-template-columns: repeat(3, 1fr); }
    .d-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .t-3 { grid-template-columns: repeat(3, 1fr); }
    .t-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .wc-cards-container-v2 { padding: 30px 15px; }
}

.wc-card-v2 {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
}

.wc-card-v2:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}

.wc-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.wc-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.wc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wc-card-v2:hover .wc-card-img img {
    transform: scale(1.1);
}

/* PREÇO SEMPRE BRANCO NO HOVER — FUNCIONA COM QUALQUER PLUGIN */
.wc-card-price-overlay,
.wc-card-price-overlay * {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8) !important;
}

/* Garante que del/ins (preço riscado e promocional) também fiquem brancos e bonitos */
.wc-card-price-overlay del,
.wc-card-price-overlay del span,
.wc-card-price-overlay ins,
.wc-card-price-overlay ins span {
    color: rgba(255,255,255,0.75) !important;
    opacity: 0.9 !important;
}

.wc-card-price-overlay ins,
.wc-card-price-overlay ins span {
    color: white !important;
    text-decoration: none !important;
}

/* Fundo e animação (mantém tudo que você já tinha) */
.wc-card-price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 34px 20px 16px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 5;
}

.wc-card-v2:hover .wc-card-price-overlay {
    opacity: 1;
}

.wc-card-body {
    padding: 22px;
    background: white;
}

.wc-card-title {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BOTÃO VER DETALHES — 100% CORRIGIDO E PERFEITO */
.wc-card-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: #ff6a00;
    color: white !important;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.35);
    z-index: 20;
    text-decoration: none !important;
    transform: scale(1);
}

/* Texto e seta SEMPRE brancos (nunca ficam transparentes) */
.wc-card-btn,
.wc-card-btn * {
    color: white !important;
}

/* Seta SVG branca e visível sempre */
.wc-card-btn .arrow {
    stroke: white !important;
    fill: none;
    transition: transform 0.4s ease;
}

/* Brilho infinito (passando o tempo todo) */
.wc-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shine 3.5s infinite linear;
    z-index: -1;
}

/* HOVER: grow + elevação + sombra forte */
.wc-card-btn:hover {
    background: #000;                                    /* fundo preto no hover */
    transform: scale(1.08) translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Sêmen desliza no hover */
.wc-card-btn:hover .arrow {
    transform: translateX(10px);
}

/* Animação do brilho */
@keyframes shine {
    0%   { left: -150%; }
    100% { left: 150%; }
}