/* _content/CRM/Components/Layout/MainLayout.razor.rz.scp.css */
/* MenuVertical.css - Adicione ao seu arquivo CSS principal */

/* Reset e Estilos Globais */
*[b-omfvjood7y] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-omfvjood7y] {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: #333333 !important;
    background-color: #F1F4FA !important;
    overflow-x: hidden;
}

/* Layout Principal */
.page[b-omfvjood7y] {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Top Bar para Mobile */
.top-bar-mobile[b-omfvjood7y] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-bottom: 1px solid rgba(96, 66, 255, 0.1);
}

.top-bar-content[b-omfvjood7y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
}

.mobile-menu-toggle[b-omfvjood7y] {
    font-size: 24px;
    color: #6042ff;
    cursor: pointer;
}

.mobile-logo[b-omfvjood7y] {
    height: 40px;
    cursor: pointer;
}

.mobile-profile-icon[b-omfvjood7y] {
    font-size: 28px;
    color: #6042ff;
    cursor: pointer;
}

/* Overlay para mobile */
.mobile-overlay[b-omfvjood7y] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .mobile-overlay.active[b-omfvjood7y] {
        display: block;
        opacity: 1;
    }

/* Sidebar - Estilos Gerais */
.sidebar[b-omfvjood7y] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    background: #ffffff !important;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .sidebar.close[b-omfvjood7y] {
        width: 78px;
    }

/* �rea do Logo */
.logo-details[b-omfvjood7y] {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(96, 66, 255, 0.1);
    min-height: 70px;
    position: relative;
}

.close-mobile-menu[b-omfvjood7y] {
    display: none;
    font-size: 24px;
    color: #6042ff;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.menu-toggle[b-omfvjood7y] {
    font-size: 24px;
    color: #6042ff !important;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar.close .menu-toggle[b-omfvjood7y] {
    transform: rotate(180deg);
    margin-right: 0;
}

.logo_name[b-omfvjood7y] {
    height: 60px;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.sidebar.close .logo_name[b-omfvjood7y] {
    opacity: 0;
    width: 0;
    margin: 0;
}

/* Itens do Menu */
.menu-items[b-omfvjood7y] {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    scrollbar-width: thin;
}

.nav-links[b-omfvjood7y] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .nav-links li[b-omfvjood7y] {
        position: relative;
    }

.nav-item[b-omfvjood7y] {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #6042ff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.nav-links li:hover[b-omfvjood7y] {
    background: rgba(96, 66, 255, 0.1);
}

.nav-links li.active[b-omfvjood7y] {
    background: rgba(96, 66, 255, 0.1);
    border-left: 3px solid #6042ff !important;
}

.nav-links li i[b-omfvjood7y],
.nav-links li .material-symbols-outlined[b-omfvjood7y] {
    font-size: 22px;
    min-width: 45px;
    color: #6042ff !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link_name[b-omfvjood7y] {
    font-size: 15px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    overflow: hidden;
    color: #2c2a4a !important;
}

.sidebar.close .link_name[b-omfvjood7y] {
    opacity: 0;
    width: 0;
}

/* Container do menu com seta */
.iocn-link[b-omfvjood7y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.arrow[b-omfvjood7y] {
    font-size: 16px;
    color: #6042ff !important;
    transition: transform 0.3s ease;
    margin-right: 15px;
    cursor: pointer;
}

    .arrow.rotated[b-omfvjood7y] {
        transform: rotate(180deg);
    }

.sidebar.close .arrow[b-omfvjood7y] {
    display: none;
}

/* Submenu controlado por C# (classes show/rotated) */
.sub-menu[b-omfvjood7y] {
    padding-left: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    list-style: none;
    background: #ffffff;
}

    .sub-menu.show[b-omfvjood7y] {
        max-height: 500px;
        transition: max-height 0.4s ease-in;
    }

.submenu-item[b-omfvjood7y] {
    padding: 8px 10px 8px 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c2a4a !important;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
}

    .submenu-item:hover[b-omfvjood7y] {
        color: #2c2a4a !important;
        background: rgba(96, 66, 255, 0.1);
        padding-left: 50px;
    }

    .submenu-item i[b-omfvjood7y],
    .submenu-item .material-symbols-outlined[b-omfvjood7y] {
        font-size: 18px;
        min-width: 25px;
        color: #6042ff !important;
    }

/* Se��o do Perfil */
.profile-section[b-omfvjood7y] {
    padding: 15px;
    border-top: 1px solid rgba(96, 66, 255, 0.1);
    margin-top: auto;
}

.profile-details[b-omfvjood7y] {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.profile-info[b-omfvjood7y] {
    flex: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile_name[b-omfvjood7y] {
    font-size: 14px;
    font-weight: 500;
    color: #6042ff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job[b-omfvjood7y] {
    font-size: 12px;
    color: #666666 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-icon[b-omfvjood7y] {
    font-size: 20px;
    color: #6042ff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .logout-icon:hover[b-omfvjood7y] {
        color: #4d2bd4 !important;
        transform: scale(1.1);
    }

.sidebar.close .profile-info[b-omfvjood7y],
.sidebar.close .logout-icon[b-omfvjood7y] {
    opacity: 0;
    width: 0;
    margin: 0;
}

.profile-content[b-omfvjood7y] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-icon[b-omfvjood7y] {
    font-size: 40px;
    color: #6042ff;
    background-color: rgba(96, 66, 255, 0.1);
    border-radius: 50%;
    padding: 5px;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sidebar.close .profile-icon[b-omfvjood7y] {
    font-size: 30px;
    width: 40px;
    height: 40px;
}

/* �rea de Conte�do */
.content-section[b-omfvjood7y] {
    margin-left: 260px;
    width: calc(100% - 260px);
    transition: all 0.3s ease;
    min-height: 100vh;
    background-color: #F1F4FA;
}

.sidebar.close ~ .content-section[b-omfvjood7y] {
    margin-left: 78px;
    width: calc(100% - 78px);
}

.content-container[b-omfvjood7y] {
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    min-height: 100vh;
    background-color: #ffffff;
}

.content-header[b-omfvjood7y] {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(96, 66, 255, 0.2);
}

    .content-header h2[b-omfvjood7y] {
        color: #6042ff;
        font-size: 24px;
        margin-bottom: 5px;
    }

    .content-header p[b-omfvjood7y] {
        color: #666;
        font-size: 14px;
    }

/* Menu fechado - hover exibe submenu */
.sidebar.close .nav-links > li[b-omfvjood7y] {
    position: relative;
}

    .sidebar.close .nav-links > li > .sub-menu[b-omfvjood7y] {
        position: absolute;
        left: 78px;
        top: 0;
        min-width: 200px;
        background: #ffffff;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
        border-radius: 0 8px 8px 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        padding: 8px 0;
        z-index: 1000;
        max-height: none;
        padding-left: 0;
    }

    .sidebar.close .nav-links > li:hover > .sub-menu[b-omfvjood7y] {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.sidebar.close .sub-menu .submenu-item[b-omfvjood7y] {
    padding: 10px 15px;
    white-space: nowrap;
}

    .sidebar.close .sub-menu .submenu-item i[b-omfvjood7y] {
        min-width: 30px;
    }

/* Responsividade - Mobile */
@media (max-width: 768px) {
    .top-bar-mobile[b-omfvjood7y] {
        display: block;
    }

    .sidebar[b-omfvjood7y] {
        transform: translateX(-100%);
        width: 280px;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
    }

        .sidebar.mobile-open[b-omfvjood7y] {
            transform: translateX(0);
        }

    .close-mobile-menu[b-omfvjood7y] {
        display: block;
    }

    .content-section[b-omfvjood7y] {
        margin-left: 0 !important;
        width: 100% !important;
        padding-top: 60px;
        background-color: #F1F4FA;
    }

    .content-container[b-omfvjood7y] {
        padding: 15px;
    }

    .menu-toggle[b-omfvjood7y] {
        display: none;
    }
}

/* Melhorias de acessibilidade */
.nav-item:focus[b-omfvjood7y],
.submenu-item:focus[b-omfvjood7y],
.logout-icon:focus[b-omfvjood7y] {
    outline: 2px solid #6042ff;
    outline-offset: 2px;
}
/* _content/CRM/Components/Pages/Dashboard/Dashboard.razor.rz.scp.css */
.dashboard-card[b-sr9zyls0gr] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-left: 5px solid #4e73df;
}

    .dashboard-card:hover[b-sr9zyls0gr] {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .dashboard-card.primary[b-sr9zyls0gr] {
        border-left-color: #4e73df;
    }

    .dashboard-card.success[b-sr9zyls0gr] {
        border-left-color: #1cc88a;
    }

    .dashboard-card.warning[b-sr9zyls0gr] {
        border-left-color: #f6c23e;
    }

    .dashboard-card.danger[b-sr9zyls0gr] {
        border-left-color: #e74a3b;
    }

    .dashboard-card.dark[b-sr9zyls0gr] {
        border-left-color: rgb(0, 0, 0);
    }

.card-icon[b-sr9zyls0gr] {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    opacity: 0.15;
    color: #2c3e50;
}

.card-title[b-sr9zyls0gr] {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #5a5c69;
    letter-spacing: 0.5px;
    text-align: left;
}

.card-value[b-sr9zyls0gr] {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-align: left;
    min-height: 38px;
}

    .card-value.negative[b-sr9zyls0gr] {
        color: #dc3545;
    }

.dashboard-card .card-value[b-sr9zyls0gr] {
    transition: color 0.3s ease;
}

.card-footer[b-sr9zyls0gr] {
    margin-top: 15px;
    font-size: 13px;
    display: flex;
    align-items: center;
    text-align: left;
}

.positive-change[b-sr9zyls0gr] {
    color: #1cc88a;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.negative-change[b-sr9zyls0gr] {
    color: #e74a3b;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.change-icon[b-sr9zyls0gr] {
    margin-right: 4px;
    font-size: 16px;
}

.period-text[b-sr9zyls0gr] {
    margin-left: auto;
    color: #858796;
}

.stat-card[b-sr9zyls0gr] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.2s ease;
}

    .stat-card:hover[b-sr9zyls0gr] {
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .stat-card .number[b-sr9zyls0gr] {
        font-size: 2rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 0.25rem;
    }

    .stat-card .label[b-sr9zyls0gr] {
        font-size: 0.875rem;
        color: #6c757d;
        font-weight: 500;
        margin: 0;
    }

    .stat-card .change[b-sr9zyls0gr] {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

        .stat-card .change.up[b-sr9zyls0gr] {
            color: #22c55e;
        }

        .stat-card .change.down[b-sr9zyls0gr] {
            color: #ef4444;
        }

    .stat-card .number.negative[b-sr9zyls0gr] {
        color: #ef4444;
    }


/* --- Estilos da tabela (mantidos, mas ajustados para 100% da col) --- */
.tabela-simples[b-sr9zyls0gr] {
    width: 100%; /* garante que ocupe 100% da coluna */
    border-collapse: collapse;
    font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    background: #fafcff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    overflow: hidden;
}

    /* Cabeçalho */
    .tabela-simples thead tr[b-sr9zyls0gr] {
        background: #1e2b3c;
        color: #f0f6ff;
    }

    .tabela-simples th[b-sr9zyls0gr] {
        padding: 14px 16px;
        text-align: left;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        font-size: 0.8rem;
    }

    /* Corpo da tabela */
    .tabela-simples tbody tr[b-sr9zyls0gr] {
        border-bottom: 1px solid #e6edf5;
        transition: background 0.15s;
    }

        .tabela-simples tbody tr:last-of-type[b-sr9zyls0gr] {
            border-bottom: 2px solid #d0dcec;
        }

        .tabela-simples tbody tr:hover[b-sr9zyls0gr] {
            background: #eef4fc;
        }

    .tabela-simples td[b-sr9zyls0gr] {
        padding: 14px 16px;
        vertical-align: middle;
    }

    /* --- Colunas específicas (alinhamentos) --- */
    .tabela-simples .col-qtd[b-sr9zyls0gr] {
        text-align: center;
        font-weight: 500;
    }

    .tabela-simples .col-percentual[b-sr9zyls0gr] {
        text-align: right;
        font-weight: 500;
        font-variant-numeric: tabular-nums;
        color: #0b2a41;
    }

        .tabela-simples .col-percentual span[b-sr9zyls0gr] {
            background: #e3edfb;
            padding: 2px 12px;
            border-radius: 24px;
            display: inline-block;
            font-size: 0.85rem;
        }

    /* Linha de total */
    .tabela-simples .linha-total[b-sr9zyls0gr] {
        background: #eef3fa;
        font-weight: 600;
        border-top: 2px solid #b8cade;
    }

        .tabela-simples .linha-total td[b-sr9zyls0gr] {
            padding: 16px 16px;
        }

        .tabela-simples .linha-total .col-percentual span[b-sr9zyls0gr] {
            background: #d0def0;
        }

/* Ajuste para telas menores */
@media (max-width: 576px) {
    .tabela-simples[b-sr9zyls0gr] {
        font-size: 0.85rem;
    }

        .tabela-simples th[b-sr9zyls0gr],
        .tabela-simples td[b-sr9zyls0gr] {
            padding: 10px 12px;
        }
}

/* --- Estilos extras para o exemplo com Bootstrap --- */
body[b-sr9zyls0gr] {
    background: #f2f6fc;
    padding: 2rem 0;
}

/* Container com fundo apenas para visualização */
.exemplo-container[b-sr9zyls0gr] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.descricao-tabela[b-sr9zyls0gr] {
    color: #1f3a5c;
    font-weight: 500;
    margin-bottom: 0.75rem;
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Garantia extra: a tabela nunca ultrapassa a coluna */
.row .col[b-sr9zyls0gr] {
    overflow: hidden; /* evita que elementos internos vazem */
}
/* _content/CRM/Components/Pages/Header.razor.rz.scp.css */
.page-title[b-sbrmtj54aq] {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(96, 66, 255, 0.1);
}

.title-text[b-sbrmtj54aq] {
    font-size: 18px;
    font-weight: 600;
    color: #6042ff;
    padding-left: 15px;
    border-left: 3px solid #6042ff;
}

.bloco[b-sbrmtj54aq] {
    background-color: #ffffff;
    height: auto;
    min-height: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-top: 10px;
    transition: margin-left 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%; /* Adicionado */
}

.bloco-header[b-sbrmtj54aq] {
    width: 100%; /* Adicionado */
}

.bloco-content[b-sbrmtj54aq] {
    width: 100%; /* Modificado */
    flex: 1; /* Adicionado para preencher espaço */
}

    /* Adicione estas regras para garantir que as colunas se expandam */
    .bloco-content .row[b-sbrmtj54aq] {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

        .bloco-content .row > [class^="col-"][b-sbrmtj54aq] {
            padding-left: 15px;
            padding-right: 15px;
        }
/* _content/CRM/Components/Pages/Login/Login.razor.rz.scp.css */
/* Variáveis de design */
:root[b-jg3k2mjc3q] {
    --primary-color: #4361ee;
    --primary-hover: #3a56d4;
    --text-color: #2b2d42;
    --light-gray: #f8f9fa;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reset e estilos base */
*[b-jg3k2mjc3q] {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Layout da página */
.login-page[b-jg3k2mjc3q] {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

/* Container do formulário */
.form-container[b-jg3k2mjc3q] {
    width: 100%;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

    .form-container[b-jg3k2mjc3q]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: linear-gradient(90deg, var(--primary-color), #3f37c9);
    }

/* Estilos de texto */
.form-title[b-jg3k2mjc3q] {
    font-size: 1.75rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle[b-jg3k2mjc3q] {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Logo */
.logo-container[b-jg3k2mjc3q] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

    .logo-container img[b-jg3k2mjc3q] {
        max-width: 180px;
        height: auto;
        transition: var(--transition);
    }

/* Campos do formulário */
.form-group[b-jg3k2mjc3q] {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control[b-jg3k2mjc3q] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: var(--transition);
}

    .form-control:focus[b-jg3k2mjc3q] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        outline: none;
    }

.password-toggle[b-jg3k2mjc3q] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
}

/* Botões */
.btn-primary[b-jg3k2mjc3q] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
    display: block;
    text-align: center;
}

    .btn-primary:hover[b-jg3k2mjc3q] {
        background-color: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    }

    .btn-primary:disabled[b-jg3k2mjc3q] {
        background-color: #cccccc;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

/* Links */
.form-link[b-jg3k2mjc3q] {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    text-align: right;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

    .form-link:hover[b-jg3k2mjc3q] {
        text-decoration: underline;
    }

/* Alertas */
.alert[b-jg3k2mjc3q] {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-danger[b-jg3k2mjc3q] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success[b-jg3k2mjc3q] {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

/* Rodapé */
.form-footer[b-jg3k2mjc3q] {
    font-size: 0.75rem;
    color: #6c757d;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

/* Checkbox */
.checkbox-container[b-jg3k2mjc3q] {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

    .checkbox-container input[b-jg3k2mjc3q] {
        margin-right: 10px;
    }

/* Responsividade */
@media (max-width: 768px) {
    .form-container[b-jg3k2mjc3q] {
        padding: 2rem 1.5rem;
    }

    .logo-container img[b-jg3k2mjc3q] {
        max-width: 150px;
    }
}

/* Animações */
@keyframes fadeIn-b-jg3k2mjc3q {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container[b-jg3k2mjc3q] {
    animation: fadeIn-b-jg3k2mjc3q 0.8s ease-out forwards;
    opacity: 0; /* Garante que comece invisível */
}

@keyframes fadeIn-b-jg3k2mjc3q {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Estilos específicos para o botão de login */
button.btn-primary[b-jg3k2mjc3q] {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    padding: 15px !important;
    border-radius: var(--border-radius) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 1rem !important;
    display: block !important;
    text-align: center !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: all 0.3s ease !important;
}

    button.btn-primary:hover[b-jg3k2mjc3q] {
        background-color: var(--primary-hover) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3) !important;
    }

    button.btn-primary:disabled[b-jg3k2mjc3q] {
        background-color: #cccccc !important;
        cursor: not-allowed !important;
    }
/* _content/CRM/Components/Pages/Prospects/Prospects-Eventos.razor.rz.scp.css */
/* RESET e Configurações Gerais */
*[b-vejcg4bbdn] {
    box-sizing: border-box;
}

body[b-vejcg4bbdn] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container[b-vejcg4bbdn] {
    max-width: 1200px;
    width: 100%;
}

.titulo[b-vejcg4bbdn] {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Grid de Cards */
.cards-grid[b-vejcg4bbdn] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Card Individual */
.card[b-vejcg4bbdn] {
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 3px solid transparent;
    user-select: none;
}

    .card:hover[b-vejcg4bbdn] {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    /* ESTADO SELECIONADO */
    .card.selecionado[b-vejcg4bbdn] {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
        animation: glowPulse 2s ease-in-out infinite;
    }

        .card.selecionado .card-icon[b-vejcg4bbdn] {
            transform: scale(1.15);
            animation: selecionadoPulse 1.5s ease infinite;
        }

/* Ícones */
.card-icon[b-vejcg4bbdn] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 25px;
    transition: all 0.3s ease;
}

.card:hover .card-icon[b-vejcg4bbdn] {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 1s ease infinite;
}

/* Cores dos Ícones - Normal */
.card-email .card-icon[b-vejcg4bbdn] {
    background: #f0f4ff;
    color: #4a90d9;
}

.card-phone .card-icon[b-vejcg4bbdn] {
    background: #f0fff4;
    color: #34c759;
}

.card-whatsapp .card-icon[b-vejcg4bbdn] {
    background: #f0fdf4;
    color: #25d366;
}

.card-visit .card-icon[b-vejcg4bbdn] {
    background: #fef3f2;
    color: #f97316;
}

/* Cores dos Ícones - Hover */
.card-email:hover .card-icon[b-vejcg4bbdn] {
    background: #4a90d9;
    color: #fff;
}

.card-phone:hover .card-icon[b-vejcg4bbdn] {
    background: #34c759;
    color: #fff;
}

.card-whatsapp:hover .card-icon[b-vejcg4bbdn] {
    background: #25d366;
    color: #fff;
}

.card-visit:hover .card-icon[b-vejcg4bbdn] {
    background: #f97316;
    color: #fff;
}

/* Cores dos Ícones - Selecionado */
.card-email.selecionado .card-icon[b-vejcg4bbdn] {
    background: #4a90d9;
    color: #fff;
    box-shadow: 0 0 40px rgba(74, 144, 217, 0.5);
}

.card-phone.selecionado .card-icon[b-vejcg4bbdn] {
    background: #34c759;
    color: #fff;
    box-shadow: 0 0 40px rgba(52, 199, 89, 0.5);
}

.card-whatsapp.selecionado .card-icon[b-vejcg4bbdn] {
    background: #25d366;
    color: #fff;
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
}

.card-visit.selecionado .card-icon[b-vejcg4bbdn] {
    background: #f97316;
    color: #fff;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.5);
}

/* Cores das Bordas - Selecionado */
.card-email.selecionado[b-vejcg4bbdn] {
    border-color: #4a90d9;
}

.card-phone.selecionado[b-vejcg4bbdn] {
    border-color: #34c759;
}

.card-whatsapp.selecionado[b-vejcg4bbdn] {
    border-color: #25d366;
}

.card-visit.selecionado[b-vejcg4bbdn] {
    border-color: #f97316;
}

/* Nome do Card */
.card-nome[b-vejcg4bbdn] {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 5px;
    transition: color 0.3s ease;
}

/* Muda a cor do texto quando selecionado */
.card-email.selecionado .card-nome[b-vejcg4bbdn] {
    color: #4a90d9;
}

.card-phone.selecionado .card-nome[b-vejcg4bbdn] {
    color: #34c759;
}

.card-whatsapp.selecionado .card-nome[b-vejcg4bbdn] {
    color: #25d366;
}

.card-visit.selecionado .card-nome[b-vejcg4bbdn] {
    color: #f97316;
}

/* Informação do selecionado */
.info-selecionado[b-vejcg4bbdn] {
    text-align: center;
    color: #fff;
    margin-top: 40px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 500px;
}

    .info-selecionado strong[b-vejcg4bbdn] {
        font-weight: 700;
    }

/* Responsividade */
@media (max-width: 992px) {
    .cards-grid[b-vejcg4bbdn] {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .cards-grid[b-vejcg4bbdn] {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .titulo[b-vejcg4bbdn] {
        font-size: 1.8rem;
    }

    .card[b-vejcg4bbdn] {
        padding: 10px;
    }

    .card-icon[b-vejcg4bbdn] {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .card-nome[b-vejcg4bbdn] {
        font-size: 1rem;
    }
}

/* Animações */
@@keyframes pulse {
    0%[b-vejcg4bbdn] {
        transform: scale(1);
    }

    50%[b-vejcg4bbdn] {
        transform: scale(1.05);
    }

    100%[b-vejcg4bbdn] {
        transform: scale(1);
    }
}

@@keyframes selecionadoPulse {
    0%[b-vejcg4bbdn] {
        transform: scale(1.15);
    }

    50%[b-vejcg4bbdn] {
        transform: scale(1.25);
    }

    100%[b-vejcg4bbdn] {
        transform: scale(1.15);
    }
}

@@keyframes glowPulse {
    0%[b-vejcg4bbdn] {
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    }

    50%[b-vejcg4bbdn] {
        box-shadow: 0 20px 80px rgba(102, 126, 234, 0.7);
    }

    100%[b-vejcg4bbdn] {
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    }
}


.card-custom[b-vejcg4bbdn] {
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .card-custom:hover[b-vejcg4bbdn] {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    }

.badge-custom[b-vejcg4bbdn] {
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
    cursor: default;
}

    .badge-custom:hover[b-vejcg4bbdn] {
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    }

.badge-phone[b-vejcg4bbdn] {
    background: #e3f0ff;
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.15);
}

    .badge-phone:hover[b-vejcg4bbdn] {
        background: #d0e4ff;
    }

.badge-email[b-vejcg4bbdn] {
    background: #e8f8f5;
    color: #0dcaf0;
    border: 1px solid rgba(13, 202, 240, 0.15);
}

    .badge-email:hover[b-vejcg4bbdn] {
        background: #d4f4f0;
    }

.section-title[b-vejcg4bbdn] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #8b9cb0;
    margin-bottom: 12px;
}

.icon-box[b-vejcg4bbdn] {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

    .icon-box.phone[b-vejcg4bbdn] {
        background: #e3f0ff;
        color: #0d6efd;
    }

    .icon-box.email[b-vejcg4bbdn] {
        background: #e8f8f5;
        color: #0dcaf0;
    }

.divider[b-vejcg4bbdn] {
    border-top: 1px solid #eef2f7;
    margin: 18px 0;
}

@media (max-width: 576px) {
    .badge-custom[b-vejcg4bbdn] {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
