/* ==========================================================================
   TIGER TECH 3D - COMPONENTE DESTAQUES DA SEMANA (50% ALTURA)
   ========================================================================== */

.destaques-semana-section {
    width: 100%;
    min-height: 50vh; /* Ocupa exatamente metade da altura da tela */
    background: #ffffff; /* Fundo branco solicitado */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ds-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.ds-header {
    text-align: center;
    margin-bottom: 30px;
}

.ds-header h2 {
    font-size: clamp(20px, 2.5vw, 28px); /* Reduzido conforme solicitado */
    font-weight: 900;
    text-transform: uppercase;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ds-header h2 i {
    color: var(--primary-color);
}

.ds-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* =========================================
   CARDS (PADRÃO TIGER INDEX)
   ========================================= */
.ds-card {
    background: #ffffff;
    width: 100%;
    max-width: 260px; /* Levemente menor para caber melhor na altura */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 25px 20px;
    position: relative;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    border-bottom: 3px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ds-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ds-selo {
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 15px;
    margin-top: -12px;
}

.ds-img-wrapper {
    width: 100%;
    height: 140px; /* Ajustado para a altura de 50vh */
    margin-bottom: 15px;
}

.ds-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ds-title {
    font-size: 14px; /* Fonte reduzida */
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ds-price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.ds-price-main {
    font-size: 20px; /* Fonte reduzida */
    font-weight: 900;
    color: #000;
}

.ds-price-installments {
    font-size: 11px;
    font-weight: 600;
    color: #000;
}

.ds-price-pix {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
}