/* /Components/Dashboards/ChartCardMobile.razor.rz.scp.css */
/* ============================================
   CHART CARD MOBILE - Glassmorphism Container
   ============================================ */

.chart-card-mobile[b-zvg1gzisyo] {
    position: relative;
    margin: 0 16px 12px;
    padding: 12px 12px 0px 8px;

    /* Glassmorphism */
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;

    overflow: hidden;
}

/* Top highlight */
.chart-card-mobile[b-zvg1gzisyo]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

/* Header */
.chart-header[b-zvg1gzisyo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.chart-title[b-zvg1gzisyo] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-period[b-zvg1gzisyo] {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    padding: 4px 10px;
    background: var(--glass-bg);
    border-radius: 20px;
    font-weight: 500;
}

/* Content */
.chart-content[b-zvg1gzisyo] {
    min-height: 280px;
    width: 100%;
}

/* ============================================
   Syncfusion Charts - Override for Premium Look
   ============================================ */

/* Remove backgrounds padrão do Syncfusion e força largura responsiva */
[b-zvg1gzisyo] .e-chart {
    background: transparent !important;
    width: 100% !important;
}

/* Estilização das linhas do gráfico com glow effect */
[b-zvg1gzisyo] .e-chart .e-series-group path {
    filter: drop-shadow(0 2px 4px rgba(0, 122, 255, 0.3));
}

/* Legenda centralizada */
[b-zvg1gzisyo] .e-chart-legend {
    justify-content: center !important;
}

/* Tooltip com tema escuro */
[b-zvg1gzisyo] .e-chart-tooltip {
    background: var(--bg-elevated) !important;
    border: 1px solid var(--glass-border-hover) !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px);
}

[b-zvg1gzisyo] .e-chart-tooltip .e-tooltip-text {
    color: var(--text-primary) !important;
    font-size: 12px !important;
}

/* ============================================
   MudBlazor Charts - Fallback para Desktop
   ============================================ */

[b-zvg1gzisyo] .mud-card {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

[b-zvg1gzisyo] .mud-card-content {
    padding: 0 !important;
}

[b-zvg1gzisyo] .thcards {
    display: none !important;
}

[b-zvg1gzisyo] svg.mud-chart-line,
[b-zvg1gzisyo] svg.mud-chart-bar {
    width: 100% !important;
    height: 200px !important;
}

[b-zvg1gzisyo] .mud-charts-yaxis text,
[b-zvg1gzisyo] .mud-charts-xaxis-text {
    font-size: 10px !important;
    fill: var(--text-tertiary) !important;
}

[b-zvg1gzisyo] .mud-chart-legend {
    margin-top: 8px !important;
    padding: 0 !important;
    justify-content: center !important;
}

[b-zvg1gzisyo] .mud-chart-legend-item {
    font-size: 0.75rem !important;
    color: var(--text-secondary) !important;
}
/* /Components/Dashboards/DashboardMobileHeroSection.razor.rz.scp.css */
/* ============================================
   HERO SECTION MOBILE - Integrated Filters
   ============================================ */
.hero-section-mobile[b-q2bltba31y] {
    position: relative;
    padding: 16px 16px 24px;
    background: var(--gradient-hero);
    overflow: visible;
}

.hero-glow[b-q2bltba31y] {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse-glow-b-q2bltba31y 4s ease-in-out infinite;
}

/* Greeting Row with Integrated Filters */
.greeting-row-mobile[b-q2bltba31y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    position: relative;
    z-index: 10;
}

.greeting-left[b-q2bltba31y] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.greeting-emoji[b-q2bltba31y] {
    font-size: 1.4rem;
    line-height: 1;
    margin-left: -10px;
}

.greeting-info[b-q2bltba31y] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.greeting-time[b-q2bltba31y] {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Vendedor Dropdown Trigger */
.vendedor-selector[b-q2bltba31y] {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0px 8px 4px 0;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.vendedor-selector:active[b-q2bltba31y] {
    transform: scale(0.97);
    background: var(--glass-bg);
}

.vendedor-name[b-q2bltba31y] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow[b-q2bltba31y] {
    color: var(--text-tertiary);
    transition: transform 0.2s ease;
    font-size: 1rem !important;
}

.dropdown-arrow.open[b-q2bltba31y] {
    transform: rotate(180deg);
}

/* Right Side - Mes Badge, Streak, Refresh */
.greeting-right[b-q2bltba31y] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Month Badge */
.mes-badge[b-q2bltba31y] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--glass-bg-hover);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: capitalize;
}

.mes-badge:active[b-q2bltba31y] {
    transform: scale(0.95);
    background: var(--glass-bg-active);
}

.mes-badge[b-q2bltba31y]  .mud-icon-root {
    font-size: 0.9rem !important;
    color: var(--text-tertiary);
}

/* Loja Badge */
.loja-badge[b-q2bltba31y] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--glass-bg-hover);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loja-badge:active[b-q2bltba31y] {
    transform: scale(0.95);
    background: var(--glass-bg-active);
}

.loja-badge[b-q2bltba31y]  .mud-icon-root {
    font-size: 0.9rem !important;
    color: var(--text-tertiary);
}

/* Streak Badge */
.streak-badge-mobile[b-q2bltba31y] {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px 8px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15), rgba(255, 69, 58, 0.15));
    border: 1px solid rgba(255, 149, 0, 0.2);
    border-radius: 16px;
    animation: streak-pulse-b-q2bltba31y 2s ease-in-out infinite;
}

.streak-icon[b-q2bltba31y] {
    font-size: 0.9rem;
    line-height: 1;
}

.streak-count[b-q2bltba31y] {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-variant-numeric: tabular-nums;
}

/* Refresh Button Compact */
.refresh-btn-compact[b-q2bltba31y] {
    color: var(--text-tertiary) !important;
    padding: 6px !important;
    min-width: 32px !important;
    width: 32px !important;
    height: 32px !important;
}

.refresh-btn-compact.rotating[b-q2bltba31y]  .mud-icon-root {
    animation: rotate-b-q2bltba31y 1s linear infinite;
}

/* ============================================
   FILTER DROPDOWNS
   ============================================ */
.filter-dropdown-overlay[b-q2bltba31y] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    animation: fade-in-b-q2bltba31y 0.2s ease;
}

.filter-dropdown[b-q2bltba31y] {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 60px;
    z-index: 100;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border-hover);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    animation: slide-down-b-q2bltba31y 0.2s ease;
}

/* Vendedor Dropdown Autocomplete Styling */
.filter-autocomplete[b-q2bltba31y] {
    width: 100%;
}

.filter-autocomplete[b-q2bltba31y]  .mud-input-control {
    margin: 0 !important;
}

.filter-autocomplete[b-q2bltba31y]  .mud-input {
    color: var(--text-primary) !important;
    font-size: 0.9rem !important;
    background: var(--glass-bg) !important;
    border-radius: 8px;
}

.filter-autocomplete[b-q2bltba31y]  .mud-input-outlined .mud-input-outlined-border {
    border-color: var(--glass-border-hover) !important;
}

.filter-autocomplete[b-q2bltba31y]  .mud-input-adorned-start .mud-input-adornment-start {
    color: var(--text-tertiary) !important;
}

.filter-autocomplete[b-q2bltba31y]  input::placeholder {
    color: var(--text-quaternary) !important;
}

/* Month Dropdown Options */
.mes-dropdown[b-q2bltba31y] {
    padding: 8px;
}

.mes-options[b-q2bltba31y] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mes-option[b-q2bltba31y] {
    padding: 10px 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mes-option:hover[b-q2bltba31y],
.mes-option:active[b-q2bltba31y] {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    color: var(--text-primary);
}

.mes-option.selected[b-q2bltba31y] {
    background: #007AFF;
    border-color: #007AFF;
    color: #FFFFFF;
    font-weight: 600;
}

/* Loja Dropdown Options */
.loja-dropdown[b-q2bltba31y] {
    padding: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.loja-options[b-q2bltba31y] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.loja-option[b-q2bltba31y] {
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.loja-option:hover[b-q2bltba31y],
.loja-option:active[b-q2bltba31y] {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    color: var(--text-primary);
}

.loja-option.selected[b-q2bltba31y] {
    background: #007AFF;
    border-color: #007AFF;
    color: #FFFFFF;
    font-weight: 600;
}

/* Animations */
@keyframes pulse-glow-b-q2bltba31y {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes streak-pulse-b-q2bltba31y {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(255, 149, 0, 0);
    }
}

@keyframes fade-in-b-q2bltba31y {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-down-b-q2bltba31y {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate-b-q2bltba31y {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* /Components/Dashboards/HeroSection.razor.rz.scp.css */
/* ============================================
   HERO SECTION - Premium Mobile Dashboard
   ============================================ */

.hero-section[b-es1t6n02vw] {
    position: relative;
    padding: 16px 16px 20px;
    background: var(--gradient-hero);
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* Glow Effect */
.hero-glow[b-es1t6n02vw] {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.8;
    pointer-events: none;
    animation: pulse-glow-b-es1t6n02vw 4s ease-in-out infinite;
}

@keyframes pulse-glow-b-es1t6n02vw {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Greeting Row */
.greeting-row[b-es1t6n02vw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.greeting-container[b-es1t6n02vw] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.greeting-emoji[b-es1t6n02vw] {
    font-size: 1.75rem;
    line-height: 1;
}

.greeting-text[b-es1t6n02vw] {
    display: flex;
    flex-direction: column;
}

.greeting-time[b-es1t6n02vw] {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.greeting-name[b-es1t6n02vw] {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Streak Badge */
.streak-badge[b-es1t6n02vw] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 149, 0, 0.12);
    border: 1px solid rgba(255, 149, 0, 0.25);
    border-radius: 20px;
    animation: streak-pulse-b-es1t6n02vw 2s ease-in-out infinite;
}

@keyframes streak-pulse-b-es1t6n02vw {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 149, 0, 0);
    }
}

.streak-icon[b-es1t6n02vw] {
    font-size: 1rem;
}

.streak-count[b-es1t6n02vw] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FF9F0A;
}

/* Gauge Wrapper */
.gauge-wrapper[b-es1t6n02vw] {
    position: relative;
    width: 100%;
    max-width: 260px;
    height: 150px;
    margin: 0 auto 8px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gauge-svg[b-es1t6n02vw] {
    width: 100%;
    height: auto;
    overflow: visible;
}

.gauge-progress[b-es1t6n02vw] {
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gauge Center */
.gauge-center[b-es1t6n02vw] {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-percentage[b-es1t6n02vw] {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.percentage-symbol[b-es1t6n02vw] {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.gauge-subtitle[b-es1t6n02vw] {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 2px;
    font-weight: 500;
}

/* Hero Value */
.hero-value[b-es1t6n02vw] {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.currency-symbol[b-es1t6n02vw] {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-tertiary);
    vertical-align: super;
    margin-right: 2px;
}

.value-amount[b-es1t6n02vw] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

/* Meta Info Cards */
.meta-info-cards[b-es1t6n02vw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.meta-info-card[b-es1t6n02vw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.meta-info-card[b-es1t6n02vw]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

.meta-info-label[b-es1t6n02vw] {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 4px;
}

.meta-info-value[b-es1t6n02vw] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.meta-info-card.falta .falta-valor[b-es1t6n02vw] {
    color: #FF453A;
}

.meta-info-card.atingida .atingida-valor[b-es1t6n02vw] {
    color: #30D158;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Projecao Section */
.projecao-section[b-es1t6n02vw] {
    padding: 8px 12px;
    margin-bottom: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.projecao-row[b-es1t6n02vw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projecao-item[b-es1t6n02vw] {
    display: flex;
    align-items: center;
    gap: 8px;
}

[b-es1t6n02vw] .projecao-icon {
    color: var(--text-tertiary);
    font-size: 18px !important;
}

.projecao-label[b-es1t6n02vw] {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.projecao-value[b-es1t6n02vw] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #007AFF;
    font-variant-numeric: tabular-nums;
}

.projecao-status[b-es1t6n02vw] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
}

.projecao-status.status-success[b-es1t6n02vw] {
    background: rgba(48, 209, 88, 0.12);
    color: #30D158;
}

.projecao-status.status-info[b-es1t6n02vw] {
    background: rgba(0, 122, 255, 0.12);
    color: #007AFF;
}

.projecao-status.status-warning[b-es1t6n02vw] {
    background: rgba(255, 159, 10, 0.12);
    color: #FF9F0A;
}

.status-icon[b-es1t6n02vw] {
    font-size: 0.9rem;
}

/* Daily Target Section - DESTAQUE PRINCIPAL */
.daily-target-section[b-es1t6n02vw] {
    position: relative;
    z-index: 1;
}

.daily-target-card[b-es1t6n02vw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(100, 210, 255, 0.08) 100%);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.15);
}

.daily-target-header[b-es1t6n02vw] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

[b-es1t6n02vw] .target-icon {
    color: #007AFF;
    font-size: 18px !important;
}

.daily-target-title[b-es1t6n02vw] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.daily-target-value[b-es1t6n02vw] {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}

.target-currency[b-es1t6n02vw] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-tertiary);
}

.target-amount[b-es1t6n02vw] {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.target-period[b-es1t6n02vw] {
    font-size: 1rem;
    font-weight: 600;
    color: #007AFF;
}

.daily-target-context[b-es1t6n02vw] {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}
/* /Components/Dashboards/HeroSectionContent.razor.rz.scp.css */
/* ============================================
   HERO SECTION CONTENT - Gauge & Values
   ============================================ */

/* Gauge Wrapper */
.gauge-wrapper[b-phji3ihra4] {
    position: relative;
    width: 250px;
    height: 150px;
    margin: 0 auto 16px;
}

.gauge-svg[b-phji3ihra4] {
    width: 100%;
    height: 100%;
}

.gauge-progress[b-phji3ihra4] {
    transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Center Content in Gauge */
.gauge-center[b-phji3ihra4] {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.gauge-percentage[b-phji3ihra4] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.percentage-symbol[b-phji3ihra4] {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 2px;
}

.gauge-subtitle[b-phji3ihra4] {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.gauge-meta-valor[b-phji3ihra4] {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-quaternary);
    margin-top: 2px;
    font-variant-numeric: tabular-nums;
}

/* Main Value Display */
.hero-value[b-phji3ihra4] {
    text-align: center;
    margin-bottom: 16px;
}

.currency-symbol[b-phji3ihra4] {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-tertiary);
    vertical-align: top;
    margin-right: 4px;
}

.value-amount[b-phji3ihra4] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

/* Projection Section */
.projecao-section[b-phji3ihra4] {
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: -12px;
}

.projecao-row[b-phji3ihra4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
}

.projecao-item[b-phji3ihra4] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.projecao-icon[b-phji3ihra4] {
    color: var(--text-tertiary) !important;
    font-size: 1rem !important;
}

.projecao-label[b-phji3ihra4] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
}

.projecao-value[b-phji3ihra4] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    /* Impede quebra entre R$ e valor */
}

/* Projection Status */
.projecao-status[b-phji3ihra4] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.projecao-status .status-icon[b-phji3ihra4] {
    font-size: 0.85rem;
    line-height: 1;
}

.projecao-status.status-success[b-phji3ihra4] {
    background: rgba(48, 209, 88, 0.15);
    color: #30D158;
}

.projecao-status.status-info[b-phji3ihra4] {
    background: rgba(0, 122, 255, 0.15);
    color: #007AFF;
}

.projecao-status.status-warning[b-phji3ihra4] {
    background: rgba(255, 159, 10, 0.15);
    color: #FF9F0A;
}

/* Daily Target Section */
.daily-target-section[b-phji3ihra4] {
    margin-top: 16px;
}

.daily-target-card[b-phji3ihra4] {
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08), rgba(100, 210, 255, 0.04));
    border: 1px solid rgba(0, 122, 255, 0.15);
    border-radius: 12px;
    text-align: center;
}

.daily-target-header[b-phji3ihra4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.target-icon[b-phji3ihra4] {
    color: #007AFF !important;
    font-size: 1rem !important;
}

.daily-target-title[b-phji3ihra4] {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.daily-target-value[b-phji3ihra4] {
    margin-bottom: 6px;
}

.target-currency[b-phji3ihra4] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-tertiary);
}

.target-amount[b-phji3ihra4] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007AFF;
    font-variant-numeric: tabular-nums;
}

.target-period[b-phji3ihra4] {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-quaternary);
    margin-left: 2px;
}

.daily-target-context[b-phji3ihra4] {
    font-size: 0.7rem;
    color: var(--text-quaternary);
}
/* /Components/Dashboards/InsightCard.razor.rz.scp.css */
/* ============================================
   INSIGHT CARD - Mensagens Motivacionais
   ============================================ */

.insight-card[b-98cqkwhomy] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin: 0 16px 16px;

    /* Glassmorphism */
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;

    overflow: hidden;
    animation: insight-slide-in-b-98cqkwhomy 0.5s ease both;
}

@keyframes insight-slide-in-b-98cqkwhomy {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Top highlight */
.insight-card[b-98cqkwhomy]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

/* Left accent bar */
.insight-accent[b-98cqkwhomy] {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--insight-color);
    border-radius: 4px 0 0 4px;
}

/* Icon */
.insight-icon[b-98cqkwhomy] {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Content */
.insight-content[b-98cqkwhomy] {
    flex: 1;
    min-width: 0;
}

.insight-title[b-98cqkwhomy] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.insight-message[b-98cqkwhomy] {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}

/* Variant: Success */
.insight-card.insight-success[b-98cqkwhomy] {
    --insight-color: #30D158;
    background: rgba(48, 209, 88, 0.08);
    border-color: rgba(48, 209, 88, 0.2);
}

.insight-card.insight-success .insight-title[b-98cqkwhomy] {
    color: #30D158;
}

/* Variant: Info */
.insight-card.insight-info[b-98cqkwhomy] {
    --insight-color: #007AFF;
    background: rgba(0, 122, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.2);
}

/* Variant: Warning */
.insight-card.insight-warning[b-98cqkwhomy] {
    --insight-color: #FFD60A;
    background: rgba(255, 214, 10, 0.08);
    border-color: rgba(255, 214, 10, 0.2);
}

/* Variant: Attention */
.insight-card.insight-attention[b-98cqkwhomy] {
    --insight-color: #FF9F0A;
    background: rgba(255, 159, 10, 0.08);
    border-color: rgba(255, 159, 10, 0.2);
}
/* /Components/Dashboards/KpiGridCompact.razor.rz.scp.css */
/* ============================================
   KPI GRID COMPACT - Glassmorphism Design
   ============================================ */

.kpi-grid-compact[b-soi8055513] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 16px;
}

/* Individual KPI Card */
.kpi-item[b-soi8055513] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;

    /* Glassmorphism */
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;

    transition: all 0.25s ease;
    overflow: hidden;
}

/* Top highlight */
.kpi-item[b-soi8055513]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

/* Left accent bar */
.kpi-item[b-soi8055513]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--kpi-accent);
    opacity: 0.9;
    border-radius: 3px 0 0 3px;
}

/* Active state */
.kpi-item:active[b-soi8055513] {
    transform: scale(0.98);
    background: var(--glass-bg-hover);
}

/* Icon Container */
.kpi-icon-wrap[b-soi8055513] {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 10px;
    flex-shrink: 0;
}

[b-soi8055513] .kpi-icon {
    font-size: 20px !important;
    color: var(--kpi-accent);
}

/* Content */
.kpi-content[b-soi8055513] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.kpi-label[b-soi8055513] {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

.kpi-value[b-soi8055513] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* KPI Variants - Accent Colors */
.kpi-desconto[b-soi8055513] {
    --kpi-accent: #BF5AF2;
}

.kpi-itens[b-soi8055513] {
    --kpi-accent: #64D2FF;
}

.kpi-ticket[b-soi8055513] {
    --kpi-accent: #007AFF;
}

.kpi-vendas[b-soi8055513] {
    --kpi-accent: #FFD60A;
}

/* Stagger Animation */
@keyframes kpi-slide-in-b-soi8055513 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kpi-item:nth-child(1)[b-soi8055513] { animation: kpi-slide-in-b-soi8055513 0.4s ease 0.05s both; }
.kpi-item:nth-child(2)[b-soi8055513] { animation: kpi-slide-in-b-soi8055513 0.4s ease 0.1s both; }
.kpi-item:nth-child(3)[b-soi8055513] { animation: kpi-slide-in-b-soi8055513 0.4s ease 0.15s both; }
.kpi-item:nth-child(4)[b-soi8055513] { animation: kpi-slide-in-b-soi8055513 0.4s ease 0.2s both; }
/* /Components/Dashboards/MetaChipsHorizontal.razor.rz.scp.css */
/* ============================================
   META CHIPS - Glassmorphism Design
   ============================================ */

.meta-chips-container[b-kgpxvz0noz] {
    padding: 0 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.meta-chips-scroll[b-kgpxvz0noz] {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 1px 1px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    /* Fade edges */
    mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}

.meta-chips-scroll[b-kgpxvz0noz]::-webkit-scrollbar {
    display: none;
}

/* Individual Chip */
.meta-chip[b-kgpxvz0noz] {
    flex-shrink: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 8px;
    min-width: 85px;

    /* Glassmorphism */
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;

    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top highlight */
.meta-chip[b-kgpxvz0noz]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

/* Active state */
.meta-chip:active[b-kgpxvz0noz] {
    transform: scale(0.95);
}

/* Selected state */
.meta-chip.selected[b-kgpxvz0noz] {
    background: rgba(0, 122, 255, 0.12);
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.15),
        inset 0 0 30px rgba(0, 122, 255, 0.05);
}

/* Atingida state */
.meta-chip.atingida[b-kgpxvz0noz] {
    background: rgba(48, 209, 88, 0.08);
    border-color: rgba(48, 209, 88, 0.3);
}

.meta-chip.atingida.selected[b-kgpxvz0noz] {
    background: rgba(48, 209, 88, 0.15);
    border-color: rgba(48, 209, 88, 0.5);
    box-shadow: 0 0 20px rgba(48, 209, 88, 0.15);
}

/* Chip Top Row */
.chip-top[b-kgpxvz0noz] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.chip-label[b-kgpxvz0noz] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.check-badge[b-kgpxvz0noz] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(48, 209, 88, 0.2);
    border-radius: 50%;
}

[b-kgpxvz0noz] .check-icon {
    color: #30D158 !important;
    font-size: 14px !important;
    animation: check-pop-b-kgpxvz0noz 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes check-pop-b-kgpxvz0noz {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

/* Chip Main Value */
.chip-main[b-kgpxvz0noz] {
    margin-bottom: 4px;
}

.chip-percent[b-kgpxvz0noz] {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.chip-status.atingida[b-kgpxvz0noz] {
    font-size: 1rem;
    font-weight: 800;
    color: #30D158;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Meta Value */
.chip-meta-valor[b-kgpxvz0noz] {
    font-size: 0.7rem;
    color: var(--text-quaternary);
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

/* Daily Target - DESTAQUE */
.chip-daily[b-kgpxvz0noz] {
    display: flex;
    align-items: baseline;
    gap: 2px;
    padding: 6px 10px;
    background: rgba(0, 122, 255, 0.15);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 8px;
    margin-top: 2px;
}

.daily-value[b-kgpxvz0noz] {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.daily-suffix[b-kgpxvz0noz] {
    font-size: 0.65rem;
    font-weight: 600;
    color: #007AFF;
}

/* Check na area inferior (meta atingida) */
.chip-check[b-kgpxvz0noz] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    padding: 4px 0;
}

.check-badge-lg[b-kgpxvz0noz] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(48, 209, 88, 0.2);
    border-radius: 50%;
}

[b-kgpxvz0noz] .check-icon-lg {
    color: #30D158 !important;
    font-size: 20px !important;
    animation: check-pop-b-kgpxvz0noz 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Selected chip daily highlight */
.meta-chip.selected .chip-daily[b-kgpxvz0noz] {
    background: rgba(0, 122, 255, 0.25);
    border-color: rgba(0, 122, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.2);
}
/* /Components/Dashboards/MetaProgressRing.razor.rz.scp.css */
.meta-gauge-container[b-0q4fvbj9b2] {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px;
	margin-bottom: 0px;
}

.gauge-wrapper[b-0q4fvbj9b2] {
	position: relative;
	width: 100%;
	max-width: 240px;
	height: 140px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.gauge-svg[b-0q4fvbj9b2] {
	width: 100%;
	height: auto;
	overflow: visible;
}

.gauge-progress[b-0q4fvbj9b2] {
	transition: stroke-dashoffset 0.6s ease-out;
}

.gauge-center[b-0q4fvbj9b2] {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gauge-percentage[b-0q4fvbj9b2] {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--mud-palette-text-primary);
	line-height: 1;
}

.gauge-subtitle[b-0q4fvbj9b2] {
	font-size: 0.85rem;
	color: var(--mud-palette-text-secondary);
	margin-top: 2px;
}

.info-section[b-0q4fvbj9b2] {
	width: 100%;
	text-align: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--mud-palette-lines-default);
}

.faturamento-atual[b-0q4fvbj9b2] {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--mud-palette-text-primary);
	margin-bottom: 8px;
}

.meta-info-line[b-0q4fvbj9b2] {
	color: var(--mud-palette-text-secondary);
	font-size: 0.9rem;
	margin-bottom: 6px;
}

.meta-label[b-0q4fvbj9b2] {
	margin-right: 4px;
}

.meta-valor[b-0q4fvbj9b2] {
	font-weight: 600;
	color: var(--mud-palette-text-primary);
}

.falta-line[b-0q4fvbj9b2] {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-size: 0.9rem;
}

.falta-label[b-0q4fvbj9b2] {
	color: var(--mud-palette-text-secondary);
}

.falta-valor.pendente[b-0q4fvbj9b2] {
	color: #e63946;
	font-weight: 600;
}

.meta-atingida[b-0q4fvbj9b2] {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #4CAF50;
	font-weight: 600;
}

.projecao-section[b-0q4fvbj9b2] {
	width: 100%;
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.projecao-header[b-0q4fvbj9b2] {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--mud-palette-text-primary);
	font-size: 0.95rem;
}

.projecao-header strong[b-0q4fvbj9b2] {
	color: #318CE7;
}

.projecao-meta-info[b-0q4fvbj9b2] {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	color: var(--mud-palette-text-secondary);
}

.projecao-meta-info strong[b-0q4fvbj9b2] {
	color: var(--mud-palette-text-primary);
}

[b-0q4fvbj9b2] .trophy-icon {
	color: #f7b801;
}

[b-0q4fvbj9b2] .warning-icon {
	color: #ff6d00;
}

[b-0q4fvbj9b2] .star-icon {
	color: #4CAF50;
}

[b-0q4fvbj9b2] .check-icon {
	color: #4CAF50;
}

.necessario-section[b-0q4fvbj9b2] {
	width: 100%;
	padding-top: 12px;
	margin-top: 6px;
	border-top: 1px solid var(--mud-palette-lines-default);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.necessario-header[b-0q4fvbj9b2] {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--mud-palette-text-primary);
	font-size: 0.95rem;
}

.necessario-header strong[b-0q4fvbj9b2] {
	color: #318CE7;
}

.necessario-context[b-0q4fvbj9b2] {
	font-size: 0.8rem;
	color: var(--mud-palette-text-secondary);
}

[b-0q4fvbj9b2] .calendar-icon {
	color: #318CE7;
}
/* /Components/Dashboards/RankingVendedoresMobileComponent.razor.rz.scp.css */
.ranking-section[b-413rhhrf0p] {
    padding: 16px;
    margin-top: 8px;
}

.ranking-header[b-413rhhrf0p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ranking-title[b-413rhhrf0p] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ranking-loja[b-413rhhrf0p] {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ranking-list[b-413rhhrf0p] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ranking-item[b-413rhhrf0p] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--glass-bg);
    border-radius: 12px;
    transition: all 0.2s ease;
    animation: fadeInUp-b-413rhhrf0p 0.3s ease forwards;
    opacity: 0;
}

    .ranking-item:hover[b-413rhhrf0p] {
        background: var(--glass-bg-hover);
        transform: translateX(4px);
    }

    .ranking-item:active[b-413rhhrf0p] {
        transform: scale(0.98);
    }

@keyframes fadeInUp-b-413rhhrf0p {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ranking-position[b-413rhhrf0p] {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--glass-bg-active);
    color: var(--text-secondary);
}

/* Medalhas: Ouro, Prata e Bronze */
.ranking-position.gold[b-413rhhrf0p] {
    background: linear-gradient(135deg, #FFD60A 0%, #FF9F0A 100%);
    color: #000;
}

.ranking-position.silver[b-413rhhrf0p] {
    background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%);
    color: #000;
}

.ranking-position.bronze[b-413rhhrf0p] {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
    color: #fff;
}

.ranking-info[b-413rhhrf0p] {
    flex: 1;
    min-width: 0;
}

.ranking-name[b-413rhhrf0p] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.ranking-loja-vendedor[b-413rhhrf0p] {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-progress-container[b-413rhhrf0p] {
    width: 100%;
    height: 4px;
    background: var(--glass-bg-active);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.ranking-progress-bar[b-413rhhrf0p] {
    height: 100%;
    background: linear-gradient(90deg, #007AFF 0%, #64D2FF 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Barras de progresso dos top 3 - Medalhas */
.ranking-item:nth-child(1) .ranking-progress-bar[b-413rhhrf0p] {
    background: linear-gradient(90deg, #FFD60A 0%, #FF9F0A 100%);
}

.ranking-item:nth-child(2) .ranking-progress-bar[b-413rhhrf0p] {
    background: linear-gradient(90deg, #C0C0C0 0%, #A0A0A0 100%);
}

.ranking-item:nth-child(3) .ranking-progress-bar[b-413rhhrf0p] {
    background: linear-gradient(90deg, #CD7F32 0%, #B87333 100%);
}

.ranking-meta-info[b-413rhhrf0p] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-percent[b-413rhhrf0p] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.meta-atingida[b-413rhhrf0p] {
    background: rgba(48, 209, 88, 0.2);
    color: #30D158;
}

.meta-em-andamento[b-413rhhrf0p] {
    background: rgba(0, 122, 255, 0.2);
    color: #007AFF;
}

.meta-atencao[b-413rhhrf0p] {
    background: rgba(255, 214, 10, 0.2);
    color: #FFD60A;
}

.meta-critico[b-413rhhrf0p] {
    background: rgba(255, 69, 58, 0.2);
    color: #FF453A;
}

.meta-label[b-413rhhrf0p] {
    font-size: 0.65rem;
    color: var(--text-tertiary);
}

.ranking-value[b-413rhhrf0p] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}
/* /Components/Dashboards/VendasPorFamiliaMobileComponent.razor.rz.scp.css */
/* ============================================
   FAMILIAS SECTION - Modern List with Progress
   ============================================ */

.familias-section[b-k21s63uc47] {
    margin: 0 16px 24px;
}

/* Header */
.familias-header[b-k21s63uc47] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
}

.familias-title[b-k21s63uc47] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.familias-total[b-k21s63uc47] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #007AFF;
    font-variant-numeric: tabular-nums;
}

/* List */
.familias-list[b-k21s63uc47] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Individual Item */
.familia-item[b-k21s63uc47] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;

    /* Glassmorphism */
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;

    transition: all 0.2s ease;
    animation: familia-slide-in-b-k21s63uc47 0.4s ease both;
}

@keyframes familia-slide-in-b-k21s63uc47 {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.familia-item:active[b-k21s63uc47] {
    transform: scale(0.98);
    background: var(--glass-bg-hover);
}

/* Rank Badge */
.familia-rank[b-k21s63uc47] {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-tertiary);
    background: var(--glass-bg);
    border-radius: 8px;
    flex-shrink: 0;
}

.familia-rank.top-3[b-k21s63uc47] {
    color: #FFD60A;
    background: rgba(255, 214, 10, 0.1);
}

/* Info Section */
.familia-info[b-k21s63uc47] {
    flex: 1;
    min-width: 0;
}

.familia-name[b-k21s63uc47] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

/* Progress Bar */
.familia-progress-container[b-k21s63uc47] {
    height: 4px;
    background: var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
}

.familia-progress-bar[b-k21s63uc47] {
    height: 100%;
    background: linear-gradient(90deg, #007AFF 0%, #64D2FF 100%);
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: progress-fill-b-k21s63uc47 0.8s ease both;
}

@keyframes progress-fill-b-k21s63uc47 {
    from {
        width: 0 !important;
    }
}

/* Value */
.familia-value[b-k21s63uc47] {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    text-align: right;
    min-width: 75px;
}

/* Top 3 special styling */
.familia-item:nth-child(1) .familia-progress-bar[b-k21s63uc47] {
    background: linear-gradient(90deg, #FFD60A 0%, #FF9F0A 100%);
}

.familia-item:nth-child(2) .familia-progress-bar[b-k21s63uc47] {
    background: linear-gradient(90deg, #C0C0C0 0%, #A0A0A0 100%);
}

.familia-item:nth-child(3) .familia-progress-bar[b-k21s63uc47] {
    background: linear-gradient(90deg, #CD7F32 0%, #B87333 100%);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-y5x11xesf4] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-y5x11xesf4] {
    flex: 1;
}

.sidebar[b-y5x11xesf4] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-y5x11xesf4] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-y5x11xesf4]  a, .top-row[b-y5x11xesf4]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-y5x11xesf4]  a:hover, .top-row[b-y5x11xesf4]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-y5x11xesf4]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-y5x11xesf4] {
        justify-content: space-between;
    }

    .top-row[b-y5x11xesf4]  a, .top-row[b-y5x11xesf4]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-y5x11xesf4] {
        flex-direction: row;
    }

    .sidebar[b-y5x11xesf4] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-y5x11xesf4] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-y5x11xesf4]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-y5x11xesf4], article[b-y5x11xesf4] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ic2tuldaxq] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-ic2tuldaxq] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ic2tuldaxq] {
    font-size: 1.1rem;
}

.bi[b-ic2tuldaxq] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ic2tuldaxq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ic2tuldaxq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ic2tuldaxq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ic2tuldaxq] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ic2tuldaxq] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ic2tuldaxq] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ic2tuldaxq]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-ic2tuldaxq]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ic2tuldaxq]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ic2tuldaxq] {
        display: none;
    }

    .collapse[b-ic2tuldaxq] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-ic2tuldaxq] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Ai/AiChatPage.razor.rz.scp.css */
/* ============================================
   AI CHAT PAGE - Mobile Responsive Styles
   Only applies layout adjustments for mobile.
   Desktop uses default MudBlazor theming.
   ============================================ */

/* Suggestion chips wrapping */
[b-hmlq3vo56o] .suggestion-chips .mud-stack-row {
    flex-wrap: wrap;
    justify-content: center;
}
/* /Pages/Ai/AiModelPage.razor.rz.scp.css */
/* ============================================
   AI MODELS PAGE - Mobile Responsive Styles
   Desktop uses default MudBlazor theming.
   Mobile switches from table to card layout.
   ============================================ */

/* Default: show table, hide cards */
.models-table-desktop[b-3tb34srr5s] {
    display: block;
}

.models-cards-mobile[b-3tb34srr5s] {
    display: none;
}

/* ============================================
   MOBILE RESPONSIVE - Switch to Cards
   ============================================ */
@media (max-width: 960px) {
    .models-table-desktop[b-3tb34srr5s] {
        display: none;
    }

    .models-cards-mobile[b-3tb34srr5s] {
        display: block;
    }
}
/* /Pages/Dashboards/AdminDashboardPage.razor.rz.scp.css */

svg.mud-chart-line[b-z207gbznto] {
	width: 90% !important;
	height: 90% !important;
	align-self: center !important;
	font-size: xx-small;
}

.mud-charts-yaxis text[b-z207gbznto] {
	font-size: xx-small;
	text-anchor: end !important;
}

.mud-charts-xaxis-text[b-z207gbznto] {
	font-size: xx-small;
}

.mud-chart-legend-item[b-z207gbznto] {
	min-width: 50px !important;
}

svg.mud-chart-line.mud-ltr[b-z207gbznto] {
	margin: 0px !important;
}
/* /Pages/Dashboards/VendedorDashboardPage.razor.rz.scp.css */

svg.mud-chart-line[b-bei2y2tn15] {
	width: 90% !important;
	height: 90% !important;
	align-self: center !important;
	font-size: xx-small;
}

.mud-charts-yaxis text[b-bei2y2tn15] {
	font-size: xx-small;
	text-anchor: end !important;
}

.mud-charts-xaxis-text[b-bei2y2tn15] {
	font-size: xx-small;
}

.mud-chart-legend-item[b-bei2y2tn15] {
	min-width: 50px !important;
}

svg.mud-chart-line.mud-ltr[b-bei2y2tn15] {
	margin: 0px !important;
}
/* /Popups/ProdutosPorFamiliaPopup.razor.rz.scp.css */
/* ============================================
   PRODUTOS POR FAMILIA POPUP - Mobile Premium Style
   ============================================ */

/* Header */
.popup-header[b-u7pyz34p0w] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 20px;
}

.popup-title[b-u7pyz34p0w] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
    text-transform: capitalize;
}

.popup-total[b-u7pyz34p0w] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #007AFF;
    font-variant-numeric: tabular-nums;
}

/* Summary Bar */
.popup-summary[b-u7pyz34p0w] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.popup-summary-label[b-u7pyz34p0w] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Loading */
.loading-container[b-u7pyz34p0w] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Empty State */
.empty-state[b-u7pyz34p0w] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    gap: 12px;
}

.empty-icon[b-u7pyz34p0w] {
    color: var(--text-quaternary);
}

.empty-text[b-u7pyz34p0w] {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* List */
.produtos-list[b-u7pyz34p0w] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
    padding: 4px;
    min-height: 0; /* Importante para flex scroll */
}

/* Individual Item - Glassmorphism */
.produto-item[b-u7pyz34p0w] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;

    /* Glassmorphism */
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;

    transition: all 0.2s ease;
    animation: produto-slide-in-b-u7pyz34p0w 0.4s ease both;
}

@keyframes produto-slide-in-b-u7pyz34p0w {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.produto-item:active[b-u7pyz34p0w] {
    transform: scale(0.98);
    background: var(--glass-bg-hover);
}

/* Rank Badge */
.produto-rank[b-u7pyz34p0w] {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-tertiary);
    background: var(--glass-bg);
    border-radius: 8px;
    flex-shrink: 0;
}

.produto-rank.top-3[b-u7pyz34p0w] {
    color: #FFD60A;
    background: rgba(255, 214, 10, 0.1);
}

/* Info Section */
.produto-info[b-u7pyz34p0w] {
    flex: 1;
    min-width: 0;
}

.produto-nome[b-u7pyz34p0w] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mud-palette-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.produto-qtd[b-u7pyz34p0w] {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

/* Progress Bar */
.produto-progress-container[b-u7pyz34p0w] {
    height: 4px;
    background: var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
}

.produto-progress-bar[b-u7pyz34p0w] {
    height: 100%;
    background: linear-gradient(90deg, #007AFF 0%, #64D2FF 100%);
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: progress-fill-b-u7pyz34p0w 0.8s ease both;
}

@keyframes progress-fill-b-u7pyz34p0w {
    from {
        width: 0 !important;
    }
}

/* Value */
.produto-valor[b-u7pyz34p0w] {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
    font-variant-numeric: tabular-nums;
    text-align: right;
    min-width: 80px;
}

/* Top 3 special styling */
.produto-item:nth-child(1) .produto-progress-bar[b-u7pyz34p0w] {
    background: linear-gradient(90deg, #FFD60A 0%, #FF9F0A 100%);
}

.produto-item:nth-child(2) .produto-progress-bar[b-u7pyz34p0w] {
    background: linear-gradient(90deg, #C0C0C0 0%, #A0A0A0 100%);
}

.produto-item:nth-child(3) .produto-progress-bar[b-u7pyz34p0w] {
    background: linear-gradient(90deg, #CD7F32 0%, #B87333 100%);
}

/* Dialog customization for mobile */
.produtos-familia-dialog[b-u7pyz34p0w] {
    max-width: 100vw;
    width: 100%;
    max-height: calc(100vh - 32px) !important;
    height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    margin: 16px auto;
}

[b-u7pyz34p0w] .mud-dialog-content {
    padding: 16px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

[b-u7pyz34p0w] .mud-dialog-actions {
    padding: 8px 16px 16px !important;
    flex-shrink: 0;
}

[b-u7pyz34p0w] .mud-dialog-title {
    flex-shrink: 0;
}
