/* Estilos de Preço Parcelado */
.plan-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.installments-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: -5px;
}

.highlight-price .value {
    font-size: 3.5rem; /* Um pouco menor para caber melhor */
}

.cash-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -5px;
}

/* Ajuste no card featured para destacar o preço */
.plan-featured .installments-text {
    color: var(--gold);
}

.plan-featured .cash-price {
    color: var(--text-secondary);
}

