@model QRRapidoApp.Models.ViewModels.SelecaoPlanoViewModel @{ ViewData["Title"] = "Escolha seu Plano Premium"; Layout = "~/Views/Shared/_Layout.cshtml"; var monthlyPlan = Model.Plans.FirstOrDefault(p => p.Interval == "month"); var yearlyPlan = Model.Plans.FirstOrDefault(p => p.Interval == "year"); var monthlyPrice = monthlyPlan?.PricesByCountry.GetValueOrDefault(Model.CountryCode)?.Amount ?? 0; var yearlyPrice = yearlyPlan?.PricesByCountry.GetValueOrDefault(Model.CountryCode)?.Amount ?? 0; var yearlySavings = (monthlyPrice * 12) - yearlyPrice; }

Desbloqueie o Poder Total do QRRápido

Acesso sem limites, sem anúncios e com recursos exclusivos para máxima produtividade.

@if (monthlyPlan != null) {

Plano Mensal

R$ @monthlyPrice.ToString("0.00") /mês

Ideal para começar a explorar os recursos premium.

} @if (yearlyPlan != null) {

Plano Anual

Recomendado

R$ @yearlyPrice.ToString("0.00") /ano
@if (yearlySavings > 0) {
Economize R$ @yearlySavings.ToString("0.00")!
}

O melhor custo-benefício para usuários frequentes.

}

Todos os planos incluem:

  • QR codes ilimitados
  • Sem anúncios
  • QR codes dinâmicos
  • Analytics em tempo real
  • Suporte prioritário
@section Scripts { }