/* ========================
   MIX DE PRODUTOS
   ======================== */
.mix {
    background: #AE1414;
    min-height: var(--section-min-height);
    display: flex;
    align-items: center;
    padding: var(--section-padding);
    overflow: hidden;
}

.mix-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: var(--container-padding);
    z-index: 9;
}

/* Header */
.mix-header {
    text-align: center;
    color: #fff;
    font-family: var(--font-family);
    padding: 0;
}

.mix-titulo {
    font-size: var(--title-size);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}

.mix-subtitulo {
    font-size: var(--subtitle-size);
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 6px;
}

/* Contador */
.mix-contador {
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--text-size);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
}

.mix-contador strong {
    font-size: var(--title-size);
    font-weight: 800;
}

/* Grid */
.mix-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mix-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.mix-card {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    background: #C1121F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
}

.mix-card.mix-vermelho {
    background: rgba(212, 38, 49, 1);
}

.mix-card.mix-escuro {
    background: rgba(139, 0, 0, 1);
}

.mix-card.vazio {
    background: #9B0000;
}

.mix-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mix-card span {
    color: #fff;
    font-family: var(--font-family);
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Rodapé */
.mix-rodape {
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--text-size);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
}

.mix-rodape strong {
    font-size: var(--title-size);
    font-weight: 800;
}

/* Tags */
.mix-tags {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-family);
    font-size: var(--text-size);
    text-align: center;
    align-self: center;
    padding: 0;
}