/* =========================
   DESCONTOS POR QUANTIDADE
   ========================= */

.descontos-section {
    margin: 1.25rem 0;
    border: 1px solid #e2f0e9;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.descontos-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, #f0faf4, #e8f5ee);
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f5c38;
    border-bottom: 1px solid #e2f0e9;
}

.descontos-header i {
    color: #2a7a4b;
}

.descontos-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.descontos-table th {
    background: #f8faf9;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 0.72rem;
    padding: 0.5rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid #eef2f0;
}

.descontos-table td {
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid #f4f6f5;
    color: #444;
}

.descontos-table tr:last-child td {
    border-bottom: none;
}

.descontos-table tr.escalao-ativo {
    background: #f0faf4;
}

.descontos-table tr.escalao-ativo td {
    font-weight: 600;
    color: #1f5c38;
}

.desconto-badge {
    display: inline-block;
    background: #2a7a4b;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
}

.desconto-badge.zero {
    background: #e2e8f0;
    color: #718096;
}

.preco-desconto {
    color: #2a7a4b;
    font-weight: 700;
}

/* Caixa de resumo do desconto atual */
.desconto-resumo {
    display: none;
    margin: 0.85rem 0 0.25rem;
    padding: 0.75rem 1rem;
    background: #f0faf4;
    border: 1px solid #c3e6d0;
    border-radius: 10px;
    font-size: 0.85rem;
}

.desconto-resumo.visivel {
    display: block;
}

.desconto-resumo-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    color: #555;
}

.desconto-resumo-linha.destaque {
    font-weight: 700;
    color: #1f5c38;
    font-size: 1rem;
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px solid #c3e6d0;
}

.desconto-poupanca {
    color: #2a7a4b;
    font-weight: 700;
}
