/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============ GERAL ============ */
.app-container[b-fgjom7ei9x] {
    display: flex;
    height: 100vh;
    background: #f0f2f5;
    overflow: hidden;
}

/* ============ SIDEBAR ============ */
.sidebar[b-fgjom7ei9x] {
    width: 280px;
    min-width: 280px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 100;
    overflow: hidden;
}

    .sidebar.collapsed[b-fgjom7ei9x] {
        width: 72px;
        min-width: 72px;
    }

.sidebar-header[b-fgjom7ei9x] {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo-container[b-fgjom7ei9x] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon[b-fgjom7ei9x] {
    font-size: 28px;
}

.logo-text[b-fgjom7ei9x] {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.sidebar.collapsed .logo-text[b-fgjom7ei9x] {
    display: none;
}

.btn-toggle[b-fgjom7ei9x] {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .btn-toggle:hover[b-fgjom7ei9x] {
        background: rgba(255,255,255,0.2);
    }

.sidebar.collapsed .btn-toggle[b-fgjom7ei9x] {
    margin-left: auto;
}

/* ============ SIDEBAR USER ============ */
.sidebar-user[b-fgjom7ei9x] {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-avatar[b-fgjom7ei9x] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.user-info[b-fgjom7ei9x] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-name[b-fgjom7ei9x] {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.user-email[b-fgjom7ei9x] {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.sidebar.collapsed .user-info[b-fgjom7ei9x] {
    display: none;
}

/* ============ SIDEBAR NAV ============ */
.sidebar-nav[b-fgjom7ei9x] {
    flex: 1;
    overflow-y: auto;
    padding: 12px 8px;
}

    .sidebar-nav[b-fgjom7ei9x]::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-nav[b-fgjom7ei9x]::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.2);
        border-radius: 4px;
    }

.nav-item[b-fgjom7ei9x] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    margin: 2px 0;
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    font-size: 14px;
}

    .nav-item:hover[b-fgjom7ei9x] {
        background: rgba(255,255,255,0.08);
        color: #fff;
    }

    .nav-item.active[b-fgjom7ei9x] {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
        color: #fff;
    }

        .nav-item.active[b-fgjom7ei9x]::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 60%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 0 4px 4px 0;
        }

.nav-icon[b-fgjom7ei9x] {
    font-size: 20px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.nav-text[b-fgjom7ei9x] {
    white-space: nowrap;
    font-weight: 500;
}

.sidebar.collapsed .nav-text[b-fgjom7ei9x],
.sidebar.collapsed .nav-label[b-fgjom7ei9x] {
    display: none;
}

.nav-divider[b-fgjom7ei9x] {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 12px 14px;
}

.nav-label[b-fgjom7ei9x] {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    padding: 8px 14px 4px;
}

.sidebar-footer[b-fgjom7ei9x] {
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.version[b-fgjom7ei9x] {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.sidebar.collapsed .sidebar-footer[b-fgjom7ei9x] {
    display: none;
}

/* ============ MAIN CONTENT ============ */
.main-content[b-fgjom7ei9x] {
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f0f2f5;
}

    .main-content.expanded[b-fgjom7ei9x] {
        margin-left: 0;
    }

/* ============ TOP BAR ============ */
.top-bar[b-fgjom7ei9x] {
    background: #fff;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    min-height: 70px;
    flex-shrink: 0;
    gap: 16px;
}

.top-bar-left[b-fgjom7ei9x] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-menu[b-fgjom7ei9x] {
    background: none;
    border: none;
    color: #495057;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

    .btn-menu:hover[b-fgjom7ei9x] {
        background: #f0f2f5;
    }

.page-title[b-fgjom7ei9x] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
}

.top-bar-right[b-fgjom7ei9x] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon[b-fgjom7ei9x] {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 20px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

    .btn-icon:hover[b-fgjom7ei9x] {
        background: #f0f2f5;
        color: #1a1a2e;
    }

.badge-notification[b-fgjom7ei9x] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ PAGE CONTENT ============ */
.page-content[b-fgjom7ei9x] {
    flex: 1;
    padding: 24px 32px;
    overflow-y: auto;
    background: #f0f2f5;
}

    .page-content[b-fgjom7ei9x]::-webkit-scrollbar {
        width: 6px;
    }

    .page-content[b-fgjom7ei9x]::-webkit-scrollbar-thumb {
        background: #c1c7cd;
        border-radius: 4px;
    }

/* ============ RESPONSIVO ============ */
@media (max-width: 768px) {
    .sidebar[b-fgjom7ei9x] {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        transform: translateX(-100%);
        z-index: 1000;
    }

        .sidebar.collapsed[b-fgjom7ei9x] {
            transform: translateX(-100%);
            width: 280px;
            min-width: 280px;
        }

        .sidebar:not(.collapsed)[b-fgjom7ei9x] {
            transform: translateX(0);
        }

        .sidebar.collapsed .logo-text[b-fgjom7ei9x] {
            display: block;
        }

        .sidebar.collapsed .user-info[b-fgjom7ei9x] {
            display: block;
        }

        .sidebar.collapsed .nav-text[b-fgjom7ei9x],
        .sidebar.collapsed .nav-label[b-fgjom7ei9x] {
            display: block;
        }

        .sidebar.collapsed .sidebar-footer[b-fgjom7ei9x] {
            display: block;
        }

        .sidebar.collapsed .btn-toggle[b-fgjom7ei9x] {
            margin-left: 0;
        }

    .main-content[b-fgjom7ei9x] {
        padding: 0;
    }

    .top-bar[b-fgjom7ei9x] {
        padding: 12px 16px;
    }

    .page-content[b-fgjom7ei9x] {
        padding: 16px;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-e8taggra19] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-e8taggra19] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-e8taggra19] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-e8taggra19] {
    font-size: 1.1rem;
}

.bi[b-e8taggra19] {
    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-e8taggra19] {
    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-e8taggra19] {
    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-e8taggra19] {
    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-e8taggra19] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-e8taggra19] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-e8taggra19] {
        padding-bottom: 1rem;
    }

    .nav-item[b-e8taggra19]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-e8taggra19]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-e8taggra19]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-e8taggra19] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-e8taggra19] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-e8taggra19] {
        display: none;
    }

    .nav-scrollable[b-e8taggra19] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-uae7jmeaxn],
.components-reconnect-repeated-attempt-visible[b-uae7jmeaxn],
.components-reconnect-failed-visible[b-uae7jmeaxn],
.components-pause-visible[b-uae7jmeaxn],
.components-resume-failed-visible[b-uae7jmeaxn],
.components-rejoining-animation[b-uae7jmeaxn] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-uae7jmeaxn],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-uae7jmeaxn],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-uae7jmeaxn],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-uae7jmeaxn],
#components-reconnect-modal.components-reconnect-retrying[b-uae7jmeaxn],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-uae7jmeaxn],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-uae7jmeaxn],
#components-reconnect-modal.components-reconnect-failed[b-uae7jmeaxn],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-uae7jmeaxn] {
    display: block;
}


#components-reconnect-modal[b-uae7jmeaxn] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-uae7jmeaxn 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-uae7jmeaxn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-uae7jmeaxn 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-uae7jmeaxn]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-uae7jmeaxn 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-uae7jmeaxn {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-uae7jmeaxn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-uae7jmeaxn {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-uae7jmeaxn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-uae7jmeaxn] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-uae7jmeaxn] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-uae7jmeaxn] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-uae7jmeaxn] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-uae7jmeaxn] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-uae7jmeaxn] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-uae7jmeaxn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-uae7jmeaxn] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-uae7jmeaxn {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Clientes.razor.rz.scp.css */
.clientes-container[b-p5hvogvv0e] {
    padding: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.clientes-header[b-p5hvogvv0e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .clientes-header h1[b-p5hvogvv0e] {
        margin: 0;
        font-size: 32px;
    }

    .clientes-header p[b-p5hvogvv0e] {
        margin-top: 6px;
        opacity: .7;
    }

.btn-primary[b-p5hvogvv0e] {
    padding: 12px 24px;
    border: none;
    background: #111827;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-primary:hover[b-p5hvogvv0e] {
        background: #1f2937;
    }

.icon-plus[b-p5hvogvv0e] {
    font-size: 18px;
    font-weight: 300;
}

/* Filtros */
.filtros-container[b-p5hvogvv0e] {
    background: white;
    border: 1px solid #e2e4e8;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.filtros-row[b-p5hvogvv0e] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.filtro-busca[b-p5hvogvv0e] {
    flex: 1;
    min-width: 200px;
    position: relative;
}

    .filtro-busca input[b-p5hvogvv0e] {
        padding-left: 38px;
    }

.busca-icon[b-p5hvogvv0e] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
    pointer-events: none;
}

.filtros-acoes[b-p5hvogvv0e] {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .filtros-acoes select[b-p5hvogvv0e] {
        min-width: 120px;
    }

.btn-limpar[b-p5hvogvv0e] {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background .2s;
}

    .btn-limpar:hover[b-p5hvogvv0e] {
        background: #f5f6f8;
    }

/* Tabela */
.tabela-container[b-p5hvogvv0e] {
    background: white;
    border: 1px solid #e2e4e8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tabela-clientes[b-p5hvogvv0e] {
    width: 100%;
    border-collapse: collapse;
}

    .tabela-clientes thead[b-p5hvogvv0e] {
        background: #f8f9fa;
    }

    .tabela-clientes th[b-p5hvogvv0e] {
        padding: 14px 16px;
        text-align: left;
        font-weight: 600;
        font-size: 13px;
        color: #4b5563;
        border-bottom: 1px solid #e2e4e8;
    }

    .tabela-clientes td[b-p5hvogvv0e] {
        padding: 14px 16px;
        border-bottom: 1px solid #f0f1f3;
        font-size: 14px;
    }

    .tabela-clientes tbody tr:hover[b-p5hvogvv0e] {
        background: #f9fafb;
    }

    .tabela-clientes tbody tr:last-child td[b-p5hvogvv0e] {
        border-bottom: none;
    }

.badge[b-p5hvogvv0e] {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-ativo[b-p5hvogvv0e] {
    background: #dcfce7;
    color: #166534;
}

.badge-inativo[b-p5hvogvv0e] {
    background: #fee2e2;
    color: #991b1b;
}

.acoes-botoes[b-p5hvogvv0e] {
    display: flex;
    gap: 6px;
}

.btn-acao[b-p5hvogvv0e] {
    padding: 4px 8px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background .2s;
}

    .btn-acao:hover[b-p5hvogvv0e] {
        background: #f0f1f3;
    }

.btn-editar:hover[b-p5hvogvv0e] {
    background: #dbeafe;
}

.btn-visualizar:hover[b-p5hvogvv0e] {
    background: #e0f2fe;
}

.btn-deletar:hover[b-p5hvogvv0e] {
    background: #fee2e2;
}

/* Paginação */
.paginacao-container[b-p5hvogvv0e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px 0;
}

.paginacao-info[b-p5hvogvv0e] {
    font-size: 14px;
    opacity: .7;
}

.paginacao-botoes[b-p5hvogvv0e] {
    display: flex;
    gap: 4px;
    align-items: center;
}

.btn-paginacao[b-p5hvogvv0e] {
    padding: 8px 12px;
    border: 1px solid #e2e4e8;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    min-width: 36px;
    transition: all .2s;
}

    .btn-paginacao:hover:not(:disabled)[b-p5hvogvv0e] {
        background: #f5f6f8;
    }

    .btn-paginacao.ativo[b-p5hvogvv0e] {
        background: #111827;
        color: white;
        border-color: #111827;
    }

    .btn-paginacao:disabled[b-p5hvogvv0e] {
        opacity: .4;
        cursor: not-allowed;
    }

.paginacao-separador[b-p5hvogvv0e] {
    padding: 0 4px;
    color: #6b7280;
}

/* Loading */
.loading-spinner[b-p5hvogvv0e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 16px;
}

.spinner[b-p5hvogvv0e] {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e4e8;
    border-top-color: #111827;
    border-radius: 50%;
    animation: spin-b-p5hvogvv0e 0.8s linear infinite;
}

@keyframes spin-b-p5hvogvv0e {
    to {
        transform: rotate(360deg);
    }
}

/* Sem dados */
.sem-dados[b-p5hvogvv0e] {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border: 1px solid #e2e4e8;
    border-radius: 12px;
}

.sem-dados-icon[b-p5hvogvv0e] {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.sem-dados h3[b-p5hvogvv0e] {
    margin: 0 0 8px;
    font-size: 20px;
}

.sem-dados p[b-p5hvogvv0e] {
    margin: 0;
    opacity: .7;
}

/* Modal */
.modal-overlay[b-p5hvogvv0e] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content[b-p5hvogvv0e] {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn-b-p5hvogvv0e .3s ease;
}

@keyframes modalSlideIn-b-p5hvogvv0e {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-confirmar[b-p5hvogvv0e] {
    max-width: 500px;
}

.modal-header[b-p5hvogvv0e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e4e8;
    flex-shrink: 0;
}

    .modal-header h2[b-p5hvogvv0e] {
        margin: 0;
        font-size: 20px;
    }

.modal-fechar[b-p5hvogvv0e] {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background .2s;
}

    .modal-fechar:hover[b-p5hvogvv0e] {
        background: #f0f1f3;
    }

.modal-body[b-p5hvogvv0e] {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer[b-p5hvogvv0e] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e2e4e8;
    flex-shrink: 0;
}

/* Formulários */
.form-grid[b-p5hvogvv0e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.campo[b-p5hvogvv0e] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.campo-full[b-p5hvogvv0e] {
    grid-column: 1 / -1;
}

.campo label[b-p5hvogvv0e] {
    font-weight: 600;
    font-size: 14px;
}

.form-control[b-p5hvogvv0e] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d8dbe0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color .2s;
    background: white;
}

    .form-control:focus[b-p5hvogvv0e] {
        outline: none;
        border-color: #111827;
        box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
    }

textarea.form-control[b-p5hvogvv0e] {
    resize: vertical;
    min-height: 60px;
}

select.form-control[b-p5hvogvv0e] {
    appearance: auto;
}

.erro-campo[b-p5hvogvv0e] {
    color: #dc2626;
    font-size: 12px;
    margin-top: 2px;
}

.endereco-grid[b-p5hvogvv0e] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

    .endereco-grid .form-control[b-p5hvogvv0e] {
        padding: 8px 12px;
        font-size: 13px;
    }

/* Detalhes */
.detalhes-grid[b-p5hvogvv0e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detalhe-item[b-p5hvogvv0e] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detalhe-label[b-p5hvogvv0e] {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: .5;
}

.detalhe-valor[b-p5hvogvv0e] {
    font-size: 15px;
    word-break: break-word;
}

/* Botões */
.btn-cancelar[b-p5hvogvv0e] {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background .2s;
}

    .btn-cancelar:hover[b-p5hvogvv0e] {
        background: #f5f6f8;
    }

.btn-salvar[b-p5hvogvv0e] {
    padding: 10px 24px;
    border: none;
    background: #111827;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background .2s;
}

    .btn-salvar:hover:not(:disabled)[b-p5hvogvv0e] {
        background: #1f2937;
    }

    .btn-salvar:disabled[b-p5hvogvv0e] {
        opacity: .5;
        cursor: not-allowed;
    }

.btn-deletar-confirmar[b-p5hvogvv0e] {
    padding: 10px 24px;
    border: none;
    background: #dc2626;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background .2s;
}

    .btn-deletar-confirmar:hover:not(:disabled)[b-p5hvogvv0e] {
        background: #b91c1c;
    }

    .btn-deletar-confirmar:disabled[b-p5hvogvv0e] {
        opacity: .5;
        cursor: not-allowed;
    }

.btn-editar-modal[b-p5hvogvv0e] {
    padding: 10px 24px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background .2s;
}

    .btn-editar-modal:hover[b-p5hvogvv0e] {
        background: #1d4ed8;
    }

/* Toast */
.toast[b-p5hvogvv0e] {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: toastSlideIn-b-p5hvogvv0e .4s ease;
    max-width: 500px;
}

@keyframes toastSlideIn-b-p5hvogvv0e {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-sucesso[b-p5hvogvv0e] {
    background: #dcfce7;
    border-left: 4px solid #22c55e;
}

.toast-erro[b-p5hvogvv0e] {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
}

.toast-icon[b-p5hvogvv0e] {
    font-size: 20px;
}

.toast-mensagem[b-p5hvogvv0e] {
    flex: 1;
    font-size: 14px;
}

.toast-fechar[b-p5hvogvv0e] {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    opacity: .5;
    padding: 0 4px;
}

    .toast-fechar:hover[b-p5hvogvv0e] {
        opacity: 1;
    }

.aviso-exclusao[b-p5hvogvv0e] {
    color: #dc2626;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
    .clientes-container[b-p5hvogvv0e] {
        padding: 16px;
    }

    .clientes-header[b-p5hvogvv0e] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

        .clientes-header .btn-primary[b-p5hvogvv0e] {
            width: 100%;
            justify-content: center;
        }

    .filtros-row[b-p5hvogvv0e] {
        flex-direction: column;
        align-items: stretch;
    }

    .filtro-busca[b-p5hvogvv0e] {
        min-width: auto;
    }

    .filtros-acoes[b-p5hvogvv0e] {
        flex-wrap: wrap;
    }

        .filtros-acoes select[b-p5hvogvv0e] {
            flex: 1;
            min-width: auto;
        }

    .tabela-container[b-p5hvogvv0e] {
        overflow-x: auto;
    }

    .tabela-clientes[b-p5hvogvv0e] {
        font-size: 13px;
        min-width: 700px;
    }

    .form-grid[b-p5hvogvv0e] {
        grid-template-columns: 1fr;
    }

    .endereco-grid[b-p5hvogvv0e] {
        grid-template-columns: 1fr 1fr;
    }

    .paginacao-container[b-p5hvogvv0e] {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .paginacao-botoes[b-p5hvogvv0e] {
        justify-content: center;
        flex-wrap: wrap;
    }

    .detalhes-grid[b-p5hvogvv0e] {
        grid-template-columns: 1fr;
    }

    .modal-content[b-p5hvogvv0e] {
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .toast[b-p5hvogvv0e] {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .endereco-grid[b-p5hvogvv0e] {
        grid-template-columns: 1fr;
    }

    .acoes-botoes[b-p5hvogvv0e] {
        flex-wrap: wrap;
    }

    .modal-footer[b-p5hvogvv0e] {
        flex-direction: column;
    }

        .modal-footer button[b-p5hvogvv0e] {
            width: 100%;
            justify-content: center;
        }
}
/* /Components/Pages/Emissoes.razor.rz.scp.css */
.emissoes-container[b-gi1flv3omi] {
    padding: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.emissoes-header[b-gi1flv3omi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .emissoes-header h1[b-gi1flv3omi] {
        margin: 0;
        font-size: 32px;
    }

    .emissoes-header p[b-gi1flv3omi] {
        margin-top: 6px;
        opacity: .7;
    }

.btn-voltar[b-gi1flv3omi] {
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
}

.ec-info[b-gi1flv3omi] {
    display: flex;
    gap: 40px;
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 25px;
    background: #f5f6f8;
}

    .ec-info span[b-gi1flv3omi] {
        display: block;
        font-size: 12px;
        opacity: .6;
        margin-bottom: 4px;
    }

.tipo-emissao-grid[b-gi1flv3omi] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tipo-emissao-card[b-gi1flv3omi] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 25px;
    border: 1px solid #e2e4e8;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: .2s;
}

    .tipo-emissao-card:hover[b-gi1flv3omi] {
        transform: translateY(-2px);
    }

    .tipo-emissao-card.selecionado[b-gi1flv3omi] {
        border: 2px solid #111827;
    }

.tipo-icon[b-gi1flv3omi] {
    font-size: 28px;
}

.tipo-emissao-card h3[b-gi1flv3omi] {
    margin: 0 0 8px;
}

.tipo-emissao-card p[b-gi1flv3omi] {
    margin: 0;
    opacity: .65;
    font-size: 14px;
}

.formulario-emissao[b-gi1flv3omi] {
    background: white;
    border: 1px solid #e2e4e8;
    border-radius: 16px;
    padding: 28px;
}

.formulario-header[b-gi1flv3omi] {
    margin-bottom: 25px;
}

    .formulario-header h2[b-gi1flv3omi] {
        margin: 0;
    }

    .formulario-header p[b-gi1flv3omi] {
        opacity: .65;
    }

.form-grid[b-gi1flv3omi] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.campo[b-gi1flv3omi] {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.campo-full[b-gi1flv3omi] {
    grid-column: 1 / -1;
}

.campo label[b-gi1flv3omi] {
    font-weight: 600;
    font-size: 14px;
}

.form-control[b-gi1flv3omi] {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #d8dbe0;
    border-radius: 8px;
}

.form-actions[b-gi1flv3omi] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.btn-cancelar[b-gi1flv3omi],
.btn-emissao[b-gi1flv3omi] {
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-cancelar[b-gi1flv3omi] {
    border: 1px solid #ddd;
    background: white;
}

.btn-emissao[b-gi1flv3omi] {
    border: none;
    background: #111827;
    color: white;
}

    .btn-emissao:disabled[b-gi1flv3omi] {
        opacity: .5;
        cursor: not-allowed;
    }

.alert[b-gi1flv3omi],
.resultado[b-gi1flv3omi] {
    padding: 18px;
    border-radius: 10px;
    margin-top: 20px;
}

.alert-danger[b-gi1flv3omi],
.resultado-erro[b-gi1flv3omi] {
    background: #fee2e2;
}

.alert-warning[b-gi1flv3omi] {
    background: #fef3c7;
}

.resultado-sucesso[b-gi1flv3omi] {
    background: #dcfce7;
}

@media (max-width: 900px) {
    .tipo-emissao-grid[b-gi1flv3omi] {
        grid-template-columns: 1fr;
    }

    .form-grid[b-gi1flv3omi] {
        grid-template-columns: 1fr;
    }

    .campo-full[b-gi1flv3omi] {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .emissoes-container[b-gi1flv3omi] {
        padding: 18px;
    }

    .emissoes-header[b-gi1flv3omi] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ec-info[b-gi1flv3omi] {
        flex-direction: column;
        gap: 15px;
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* ============================================================
   GERENPIX — LOGIN
   ============================================================ */

.login-layout[b-lfb58bewqm] {
    min-height: 100vh;
}


/* ============================================================
   PAGE
   ============================================================ */

.login-page[b-lfb58bewqm] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #18191f;
}


/* ============================================================
   BRAND SIDE
   ============================================================ */

.login-brand[b-lfb58bewqm] {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient( circle at 80% 25%, rgba(99,91,255,.18), transparent 32% ), radial-gradient( circle at 15% 80%, rgba(99,91,255,.10), transparent 30% ), #101114;
    color: white;
}

    .login-brand[b-lfb58bewqm]::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -260px;
        bottom: -220px;
        border: 1px solid rgba(255,255,255,.05);
        border-radius: 50%;
    }

    .login-brand[b-lfb58bewqm]::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        right: -180px;
        bottom: -130px;
        border: 1px solid rgba(99,91,255,.15);
        border-radius: 50%;
    }


.login-brand-content[b-lfb58bewqm] {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 42px 55px;
}


/* ============================================================
   LOGO
   ============================================================ */

.login-logo[b-lfb58bewqm] {
    display: flex;
    align-items: center;
    gap: 11px;
    color: white;
    text-decoration: none;
    width: fit-content;
}

.login-logo-mark[b-lfb58bewqm] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #635bff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

    .login-logo-mark span[b-lfb58bewqm] {
        width: 5px;
        display: block;
        background: white;
        border-radius: 3px;
    }

        .login-logo-mark span:first-child[b-lfb58bewqm] {
            height: 14px;
        }

        .login-logo-mark span:last-child[b-lfb58bewqm] {
            height: 22px;
        }

.login-logo-text[b-lfb58bewqm] {
    font-size: 20px;
    letter-spacing: -.6px;
}

    .login-logo-text strong[b-lfb58bewqm] {
        font-weight: 700;
    }

    .login-logo-text span[b-lfb58bewqm] {
        color: #908aff;
        font-weight: 700;
    }


/* ============================================================
   PRESENTATION
   ============================================================ */

.login-presentation[b-lfb58bewqm] {
    max-width: 490px;
    margin: auto 0;
}

.login-eyebrow[b-lfb58bewqm] {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    margin-bottom: 22px;
    border: 1px solid rgba(99,91,255,.3);
    border-radius: 999px;
    color: #a6a0ff;
    background: rgba(99,91,255,.08);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.login-presentation h1[b-lfb58bewqm] {
    margin: 0;
    max-width: 500px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 750;
}

    .login-presentation h1 span[b-lfb58bewqm] {
        color: #8983ff;
    }

.login-presentation > p[b-lfb58bewqm] {
    max-width: 430px;
    margin: 22px 0 35px;
    color: rgba(255,255,255,.58);
    font-size: 15px;
    line-height: 1.75;
}


/* ============================================================
   FEATURES
   ============================================================ */

.login-feature-list[b-lfb58bewqm] {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.login-feature[b-lfb58bewqm] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.login-feature-icon[b-lfb58bewqm] {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99,91,255,.14);
    color: #928cff;
    font-size: 11px;
    font-weight: 700;
}


/* ============================================================
   FOOTER
   ============================================================ */

.login-brand-footer[b-lfb58bewqm] {
    color: rgba(255,255,255,.28);
    font-size: 10px;
}


/* ============================================================
   FORM SIDE
   ============================================================ */

.login-form-section[b-lfb58bewqm] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    background: #ffffff;
}

.login-form-wrapper[b-lfb58bewqm] {
    width: 100%;
    max-width: 420px;
}


/* ============================================================
   MOBILE LOGO
   ============================================================ */

.login-mobile-logo[b-lfb58bewqm] {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 55px;
}


/* ============================================================
   HEADING
   ============================================================ */

.login-heading[b-lfb58bewqm] {
    margin-bottom: 32px;
}

    .login-heading h2[b-lfb58bewqm] {
        margin: 0;
        font-size: 30px;
        letter-spacing: -1px;
        font-weight: 700;
        color: #18191f;
    }

    .login-heading p[b-lfb58bewqm] {
        margin: 9px 0 0;
        color: #777c87;
        font-size: 13px;
    }


/* ============================================================
   FIELD
   ============================================================ */

.login-field[b-lfb58bewqm] {
    margin-bottom: 21px;
}

    .login-field label[b-lfb58bewqm] {
        display: block;
        margin-bottom: 8px;
        color: #292c34;
        font-size: 12px;
        font-weight: 600;
    }

.login-label-row[b-lfb58bewqm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .login-label-row a[b-lfb58bewqm] {
        color: #635bff;
        font-size: 11px;
        font-weight: 600;
        text-decoration: none;
    }

        .login-label-row a:hover[b-lfb58bewqm] {
            text-decoration: underline;
        }


/* ============================================================
   INPUT
   ============================================================ */

.login-input-wrapper[b-lfb58bewqm] {
    position: relative;
    display: flex;
    align-items: center;
}

    .login-input-wrapper > svg[b-lfb58bewqm] {
        position: absolute;
        left: 14px;
        width: 18px;
        height: 18px;
        color: #9a9faa;
        pointer-events: none;
    }

.login-input[b-lfb58bewqm] {
    width: 100%;
    height: 48px;
    padding: 0 15px 0 43px;
    border: 1px solid #dedfe4;
    border-radius: 9px;
    background: #ffffff;
    color: #18191f;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .login-input[b-lfb58bewqm]::placeholder {
        color: #b0b3ba;
    }

    .login-input:hover[b-lfb58bewqm] {
        border-color: #c8cad1;
    }

    .login-input:focus[b-lfb58bewqm] {
        border-color: #635bff;
        box-shadow: 0 0 0 3px rgba(99,91,255,.10);
    }


/* ============================================================
   OPTIONS
   ============================================================ */

.login-options[b-lfb58bewqm] {
    margin-top: 2px;
    margin-bottom: 23px;
}

.login-checkbox[b-lfb58bewqm] {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    color: #747985 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    cursor: pointer;
}

    .login-checkbox input[b-lfb58bewqm] {
        width: 15px;
        height: 15px;
        accent-color: #635bff;
        cursor: pointer;
    }


/* ============================================================
   SUBMIT
   ============================================================ */

.login-submit[b-lfb58bewqm] {
    width: 100%;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 9px;
    background: #635bff;
    color: white;
    font-family: inherit;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(99,91,255,.18);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

    .login-submit:hover:not(:disabled)[b-lfb58bewqm] {
        background: #574fe9;
        transform: translateY(-1px);
        box-shadow: 0 11px 28px rgba(99,91,255,.26);
    }

    .login-submit:disabled[b-lfb58bewqm] {
        opacity: .7;
        cursor: not-allowed;
    }

    .login-submit svg[b-lfb58bewqm] {
        width: 17px;
        height: 17px;
    }


/* ============================================================
   SPINNER
   ============================================================ */

.login-spinner[b-lfb58bewqm] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: white;
    border-radius: 50%;
    animation: login-spin-b-lfb58bewqm .7s linear infinite;
}

@keyframes login-spin-b-lfb58bewqm {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   DIVIDER
   ============================================================ */

.login-divider[b-lfb58bewqm] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 27px 0;
}

    .login-divider[b-lfb58bewqm]::before,
    .login-divider[b-lfb58bewqm]::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #ececf0;
    }

    .login-divider span[b-lfb58bewqm] {
        color: #a2a5ad;
        font-size: 10px;
    }


/* ============================================================
   REGISTER
   ============================================================ */

.login-register[b-lfb58bewqm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #8a8e98;
    font-size: 12px;
}

    .login-register a[b-lfb58bewqm] {
        color: #635bff;
        font-weight: 600;
        text-decoration: none;
    }

        .login-register a:hover[b-lfb58bewqm] {
            text-decoration: underline;
        }


/* ============================================================
   SECURITY
   ============================================================ */

.login-security[b-lfb58bewqm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 32px;
    color: #a0a4ad;
    font-size: 10px;
    text-align: center;
}

    .login-security svg[b-lfb58bewqm] {
        width: 15px;
        height: 15px;
        color: #8c8f99;
        flex-shrink: 0;
    }


/* ============================================================
   VALIDATION
   ============================================================ */

.login-field .validation-message[b-lfb58bewqm] {
    display: block;
    margin-top: 6px;
    color: #d94f4f;
    font-size: 10px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {

    .login-page[b-lfb58bewqm] {
        grid-template-columns: 1fr;
    }

    .login-brand[b-lfb58bewqm] {
        display: none;
    }

    .login-form-section[b-lfb58bewqm] {
        padding: 35px 25px;
    }

    .login-mobile-logo[b-lfb58bewqm] {
        display: flex;
    }
}


@media (max-width: 500px) {

    .login-form-section[b-lfb58bewqm] {
        padding: 28px 20px;
    }

    .login-mobile-logo[b-lfb58bewqm] {
        margin-bottom: 45px;
    }

    .login-heading h2[b-lfb58bewqm] {
        font-size: 26px;
    }
}
/* /Components/Pages/Principal.razor.rz.scp.css */
/* =========================================================
   GERENPIX
   LANDING PAGE
   ========================================================= */

:root[b-1ll9xu0j4q] {
    --gp-primary: #635bff;
    --gp-primary-dark: #5048d8;
    --gp-dark: #101114;
    --gp-dark-2: #17181d;
    --gp-text: #18191f;
    --gp-muted: #6b7280;
    --gp-border: #e7e8ec;
    --gp-light: #f7f8fa;
    --gp-green: #20b26b;
}


/* =========================================================
   RESET
   ========================================================= */

.gp-site[b-1ll9xu0j4q] {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gp-text);
    background: #fff;
    overflow-x: hidden;
}

    .gp-site *[b-1ll9xu0j4q],
    .gp-site *[b-1ll9xu0j4q]::before,
    .gp-site *[b-1ll9xu0j4q]::after {
        box-sizing: border-box;
    }

    .gp-site a[b-1ll9xu0j4q] {
        text-decoration: none;
    }


/* =========================================================
   CONTAINER
   ========================================================= */

.gp-container[b-1ll9xu0j4q] {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.gp-navbar[b-1ll9xu0j4q] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    z-index: 1000;
}

.gp-nav-container[b-1ll9xu0j4q] {
    width: min(1180px, calc(100% - 48px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.gp-logo[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-size: 20px;
    font-weight: 750;
    letter-spacing: -0.5px;
}

    .gp-logo > span > span[b-1ll9xu0j4q] {
        color: var(--gp-primary);
    }

.gp-logo-icon[b-1ll9xu0j4q] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: var(--gp-primary);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(99, 91, 255, .25);
}

    .gp-logo-icon span[b-1ll9xu0j4q] {
        display: block;
        width: 3px;
        background: white;
        border-radius: 3px;
    }

        .gp-logo-icon span:nth-child(1)[b-1ll9xu0j4q] {
            height: 9px;
        }

        .gp-logo-icon span:nth-child(2)[b-1ll9xu0j4q] {
            height: 16px;
        }

        .gp-logo-icon span:nth-child(3)[b-1ll9xu0j4q] {
            height: 12px;
        }


/* LINKS */

.gp-nav-links[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    gap: 34px;
}

    .gp-nav-links a[b-1ll9xu0j4q] {
        color: #60636b;
        font-size: 14px;
        font-weight: 500;
        transition: color .2s;
    }

        .gp-nav-links a:hover[b-1ll9xu0j4q] {
            color: var(--gp-primary);
        }


/* ACTIONS */

.gp-nav-actions[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gp-login-btn[b-1ll9xu0j4q] {
    border: 0;
    background: transparent;
    padding: 10px 15px;
    color: #34363c;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.gp-nav-cta[b-1ll9xu0j4q] {
    border: 0;
    padding: 11px 20px;
    border-radius: 9px;
    background: var(--gp-primary);
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
}

    .gp-nav-cta:hover[b-1ll9xu0j4q] {
        background: var(--gp-primary-dark);
        transform: translateY(-1px);
    }

.gp-mobile-menu[b-1ll9xu0j4q] {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.gp-hero[b-1ll9xu0j4q] {
    position: relative;
    padding-top: 76px;
    background: radial-gradient( circle at 75% 30%, rgba(99, 91, 255, .10), transparent 32% ), #fafbfc;
}

.gp-hero-background[b-1ll9xu0j4q] {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
    background-image: linear-gradient( rgba(99, 91, 255, .025) 1px, transparent 1px ), linear-gradient( 90deg, rgba(99, 91, 255, .025) 1px, transparent 1px );
    background-size: 50px 50px;
    mask-image: linear-gradient( to right, transparent, black );
}

.gp-hero-grid[b-1ll9xu0j4q] {
    position: relative;
    min-height: 720px;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 20px;
}


/* HERO TEXT */

.gp-hero-content[b-1ll9xu0j4q] {
    padding: 70px 0;
    position: relative;
    z-index: 2;
}

.gp-eyebrow[b-1ll9xu0j4q] {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 12px;
    border: 1px solid #e3e5eb;
    border-radius: 30px;
    background: white;
    color: #62656d;
    font-size: 12px;
    font-weight: 600;
}

.gp-status-dot[b-1ll9xu0j4q] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gp-green);
    box-shadow: 0 0 0 4px rgba(32, 178, 107, .10);
}

.gp-hero h1[b-1ll9xu0j4q] {
    margin: 25px 0 22px;
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 750;
    color: #101114;
}

    .gp-hero h1 span[b-1ll9xu0j4q] {
        color: var(--gp-primary);
    }

.gp-hero-text[b-1ll9xu0j4q] {
    max-width: 520px;
    color: #666a73;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}


/* BUTTONS */

.gp-hero-actions[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gp-primary-btn[b-1ll9xu0j4q] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 20px;
    border: 0;
    border-radius: 9px;
    background: var(--gp-primary);
    color: white;
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(99, 91, 255, .22);
    transition: all .2s;
}

    .gp-primary-btn:hover[b-1ll9xu0j4q] {
        background: var(--gp-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(99, 91, 255, .28);
    }

    .gp-primary-btn span[b-1ll9xu0j4q] {
        font-size: 19px;
    }

.gp-secondary-btn[b-1ll9xu0j4q] {
    display: inline-flex;
    align-items: center;
    padding: 14px 18px;
    color: #555861;
    font-size: 14px;
    font-weight: 600;
}

    .gp-secondary-btn:hover[b-1ll9xu0j4q] {
        color: var(--gp-primary);
    }


/* TRUST */

.gp-hero-trust[b-1ll9xu0j4q] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
}

.gp-trust-item[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #777b83;
    font-size: 12px;
}

.gp-check[b-1ll9xu0j4q] {
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f8f0;
    color: var(--gp-green);
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   DASHBOARD MOCKUP
   ========================================================= */

.gp-dashboard-wrapper[b-1ll9xu0j4q] {
    position: relative;
    transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
    z-index: 2;
}

.gp-dashboard-glow[b-1ll9xu0j4q] {
    position: absolute;
    inset: 10% 5%;
    background: rgba(99, 91, 255, .20);
    filter: blur(70px);
    z-index: -1;
}

.gp-dashboard[b-1ll9xu0j4q] {
    background: white;
    border: 1px solid #dfe1e7;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(30, 31, 40, .16), 0 8px 20px rgba(30, 31, 40, .08);
}


/* DASHBOARD TOP */

.gp-dashboard-top[b-1ll9xu0j4q] {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #eceef2;
    background: #fafafa;
}

.gp-window-controls[b-1ll9xu0j4q] {
    display: flex;
    gap: 5px;
}

    .gp-window-controls span[b-1ll9xu0j4q] {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #d5d7dc;
    }

.gp-dashboard-title[b-1ll9xu0j4q] {
    margin: auto;
    font-size: 10px;
    color: #8b8e95;
}

.gp-dashboard-user div[b-1ll9xu0j4q] {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #dddfe5;
}


/* DASHBOARD BODY */

.gp-dashboard-body[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 135px 1fr;
    min-height: 500px;
}


/* SIDEBAR */

.gp-sidebar[b-1ll9xu0j4q] {
    background: #15161b;
    padding: 18px 10px;
}

.gp-side-logo[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 8px 25px;
    color: white;
    font-size: 10px;
    font-weight: 700;
}

.gp-mini-logo[b-1ll9xu0j4q] {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    background: var(--gp-primary);
}

.gp-side-menu[b-1ll9xu0j4q] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gp-side-item[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 8px;
    border-radius: 5px;
    color: #777a83;
    font-size: 9px;
}

    .gp-side-item.active[b-1ll9xu0j4q] {
        background: rgba(99, 91, 255, .17);
        color: #aaa5ff;
    }

.gp-side-icon[b-1ll9xu0j4q] {
    width: 14px;
    text-align: center;
    font-size: 10px;
}


/* CONTENT */

.gp-dashboard-content[b-1ll9xu0j4q] {
    padding: 22px;
    background: #f8f9fb;
}

.gp-dashboard-heading[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

    .gp-dashboard-heading small[b-1ll9xu0j4q] {
        color: #999ca4;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: .7px;
    }

    .gp-dashboard-heading h3[b-1ll9xu0j4q] {
        margin: 3px 0 0;
        font-size: 18px;
        letter-spacing: -.5px;
    }

.gp-period[b-1ll9xu0j4q] {
    padding: 7px 10px;
    border: 1px solid #e0e2e7;
    border-radius: 5px;
    background: white;
    color: #777a82;
    font-size: 8px;
}


/* STATS */

.gp-stat-grid[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 10px;
}

.gp-stat-card[b-1ll9xu0j4q] {
    padding: 13px;
    background: white;
    border: 1px solid #e7e8ed;
    border-radius: 7px;
}

    .gp-stat-card small[b-1ll9xu0j4q] {
        display: block;
        color: #9a9da5;
        font-size: 7px;
        font-weight: 700;
    }

    .gp-stat-card strong[b-1ll9xu0j4q] {
        display: block;
        margin-top: 6px;
        font-size: 15px;
    }

    .gp-stat-card span[b-1ll9xu0j4q] {
        display: inline-block;
        margin-top: 6px;
        font-size: 7px;
    }

    .gp-stat-card .positive[b-1ll9xu0j4q] {
        color: var(--gp-green);
    }

    .gp-stat-card .neutral[b-1ll9xu0j4q] {
        color: #858991;
    }


/* CHART */

.gp-chart-card[b-1ll9xu0j4q] {
    padding: 16px;
    background: white;
    border: 1px solid #e7e8ed;
    border-radius: 7px;
    margin-bottom: 10px;
}

.gp-chart-header[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .gp-chart-header small[b-1ll9xu0j4q] {
        display: block;
        color: #999ca4;
        font-size: 7px;
    }

    .gp-chart-header strong[b-1ll9xu0j4q] {
        display: block;
        margin-top: 3px;
        font-size: 15px;
    }

    .gp-chart-header > span[b-1ll9xu0j4q] {
        color: #999ca4;
        font-size: 7px;
    }

.gp-chart[b-1ll9xu0j4q] {
    position: relative;
    height: 130px;
    margin-top: 14px;
}

.gp-chart-lines[b-1ll9xu0j4q] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .gp-chart-lines span[b-1ll9xu0j4q] {
        width: 100%;
        height: 1px;
        background: #f0f1f4;
    }

.gp-chart svg[b-1ll9xu0j4q] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.chart-area[b-1ll9xu0j4q] {
    fill: url(#chartGradient);
}

.chart-line[b-1ll9xu0j4q] {
    fill: none;
    stroke: var(--gp-primary);
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}


/* BOTTOM */

.gp-bottom-grid[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
}

.gp-mini-card[b-1ll9xu0j4q] {
    padding: 14px;
    background: white;
    border: 1px solid #e7e8ed;
    border-radius: 7px;
}

.gp-mini-card-title[b-1ll9xu0j4q] {
    margin-bottom: 10px;
    font-size: 9px;
    font-weight: 700;
}

.gp-payment[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 25px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-top: 1px solid #f0f1f3;
}

.gp-payment-icon[b-1ll9xu0j4q] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 800;
}

    .gp-payment-icon.pix[b-1ll9xu0j4q] {
        background: #e8f8f0;
        color: var(--gp-green);
    }

    .gp-payment-icon.boleto[b-1ll9xu0j4q] {
        background: #eeeaff;
        color: var(--gp-primary);
    }

.gp-payment strong[b-1ll9xu0j4q] {
    font-size: 8px;
}

.gp-payment small[b-1ll9xu0j4q] {
    display: block;
    margin-top: 2px;
    color: #a0a2a9;
    font-size: 6px;
}

.gp-status-row[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    color: #777a82;
    font-size: 8px;
}

    .gp-status-row strong[b-1ll9xu0j4q] {
        color: #303239;
    }

.status-circle[b-1ll9xu0j4q] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

    .status-circle.received[b-1ll9xu0j4q] {
        background: var(--gp-green);
    }

    .status-circle.pending[b-1ll9xu0j4q] {
        background: #f0ad4e;
    }

    .status-circle.overdue[b-1ll9xu0j4q] {
        background: #e45b65;
    }


/* =========================================================
   TRUST SECTION
   ========================================================= */

.gp-trust-section[b-1ll9xu0j4q] {
    padding: 35px 0;
    border-top: 1px solid #eeeef1;
    border-bottom: 1px solid #eeeef1;
    background: white;
}

    .gp-trust-section p[b-1ll9xu0j4q] {
        margin: 0 0 20px;
        text-align: center;
        color: #a0a2a8;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

.gp-trust-line[b-1ll9xu0j4q] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    color: #a5a7ad;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 1px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.gp-section[b-1ll9xu0j4q] {
    padding: 115px 0;
}

.gp-section-heading[b-1ll9xu0j4q] {
    max-width: 670px;
    margin-bottom: 55px;
}

    .gp-section-heading.center[b-1ll9xu0j4q] {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

.gp-section-label[b-1ll9xu0j4q] {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gp-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

    .gp-section-label.light[b-1ll9xu0j4q] {
        color: #aaa5ff;
    }

.gp-section-heading h2[b-1ll9xu0j4q],
.gp-security h2[b-1ll9xu0j4q],
.gp-integration-content h2[b-1ll9xu0j4q] {
    margin: 0;
    color: #131419;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -2px;
}

    .gp-section-heading h2 span[b-1ll9xu0j4q],
    .gp-security h2 span[b-1ll9xu0j4q],
    .gp-integration-content h2 span[b-1ll9xu0j4q] {
        color: var(--gp-primary);
    }

.gp-section-heading p[b-1ll9xu0j4q] {
    max-width: 560px;
    margin: 18px 0 0;
    color: #73767e;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES
   ========================================================= */

.gp-features[b-1ll9xu0j4q] {
    background: #fff;
}

.gp-feature-grid[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gp-feature-card[b-1ll9xu0j4q] {
    min-height: 245px;
    padding: 30px;
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    background: white;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

    .gp-feature-card:hover[b-1ll9xu0j4q] {
        transform: translateY(-5px);
        border-color: #d8d5ff;
        box-shadow: 0 20px 50px rgba(30, 31, 40, .08);
    }

    .gp-feature-card.large[b-1ll9xu0j4q] {
        grid-column: span 2;
    }

.gp-feature-icon[b-1ll9xu0j4q] {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 9px;
    background: #efedff;
    color: var(--gp-primary);
    font-size: 14px;
    font-weight: 800;
}

.gp-feature-card h3[b-1ll9xu0j4q] {
    margin: 0 0 10px;
    font-size: 19px;
    letter-spacing: -.4px;
}

.gp-feature-card p[b-1ll9xu0j4q] {
    margin: 0;
    color: #747780;
    font-size: 14px;
    line-height: 1.65;
}

.gp-feature-visual[b-1ll9xu0j4q] {
    margin-top: 22px;
    padding: 12px;
    border: 1px solid #ececf0;
    border-radius: 8px;
    background: #fafafa;
}

.gp-auto-row[b-1ll9xu0j4q] {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #eeeeef;
    color: #777a82;
    font-size: 9px;
}

    .gp-auto-row strong[b-1ll9xu0j4q] {
        color: #24262b;
    }

.gp-auto-status[b-1ll9xu0j4q] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--gp-green);
    font-size: 9px;
    font-weight: 650;
}

    .gp-auto-status span[b-1ll9xu0j4q] {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gp-green);
    }


/* =========================================================
   HOW
   ========================================================= */

.gp-how[b-1ll9xu0j4q] {
    background: #f7f8fa;
}

.gp-steps[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr;
    align-items: start;
}

.gp-step[b-1ll9xu0j4q] {
    text-align: center;
}

.gp-step-number[b-1ll9xu0j4q] {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ebe9ff;
    color: var(--gp-primary);
    font-size: 14px;
    font-weight: 800;
}

.gp-step h3[b-1ll9xu0j4q] {
    margin: 0 0 10px;
    font-size: 16px;
}

.gp-step p[b-1ll9xu0j4q] {
    margin: 0;
    color: #7a7d85;
    font-size: 13px;
    line-height: 1.6;
}

.gp-step-line[b-1ll9xu0j4q] {
    height: 1px;
    margin-top: 29px;
    background: #d9dae0;
}


/* =========================================================
   INTEGRATION
   ========================================================= */

.gp-integration[b-1ll9xu0j4q] {
    background: white;
}

.gp-integration-box[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 70px;
    border-radius: 20px;
    background: #15161b;
    overflow: hidden;
    position: relative;
}

    .gp-integration-box[b-1ll9xu0j4q]::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -180px;
        top: -250px;
        border-radius: 50%;
        background: rgba(99, 91, 255, .16);
        filter: blur(30px);
    }

.gp-integration-content[b-1ll9xu0j4q] {
    position: relative;
    z-index: 2;
}

    .gp-integration-content h2[b-1ll9xu0j4q] {
        color: white;
        font-size: clamp(34px, 4vw, 46px);
        line-height: 1.1;
        letter-spacing: -2px;
    }

    .gp-integration-content p[b-1ll9xu0j4q] {
        max-width: 500px;
        margin: 20px 0;
        color: #9699a2;
        font-size: 15px;
        line-height: 1.75;
    }

.gp-integration-list[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    color: #d5d6db;
    font-size: 13px;
}

    .gp-integration-list span[b-1ll9xu0j4q] {
        color: #8d87ff;
        margin-right: 6px;
    }


/* VISUAL */

.gp-integration-visual[b-1ll9xu0j4q] {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-integration-node[b-1ll9xu0j4q] {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.05);
    color: white;
}

    .gp-integration-node.main[b-1ll9xu0j4q] {
        border-color: rgba(99,91,255,.5);
        box-shadow: 0 0 50px rgba(99,91,255,.12);
    }

.gp-node-icon[b-1ll9xu0j4q] {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gp-primary);
    color: white;
    font-weight: 800;
}

    .gp-node-icon.confra[b-1ll9xu0j4q] {
        background: #34363d;
    }

.gp-integration-node small[b-1ll9xu0j4q] {
    color: #7f828b;
    font-size: 10px;
}

.gp-connection[b-1ll9xu0j4q] {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .gp-connection span[b-1ll9xu0j4q] {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--gp-primary);
    }


/* =========================================================
   SECURITY
   ========================================================= */

.gp-security[b-1ll9xu0j4q] {
    background: #f7f8fa;
}

.gp-security-grid[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.gp-security h2[b-1ll9xu0j4q] {
    font-size: clamp(34px, 4vw, 48px);
}

.gp-security > .gp-container > .gp-security-grid > div:first-child p[b-1ll9xu0j4q] {
    max-width: 500px;
    margin-top: 20px;
    color: #73767e;
    font-size: 16px;
    line-height: 1.7;
}

.gp-security-items[b-1ll9xu0j4q] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gp-security-item[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 25px 0;
    border-bottom: 1px solid #dedfe4;
}

    .gp-security-item:first-child[b-1ll9xu0j4q] {
        padding-top: 0;
    }

.gp-security-icon[b-1ll9xu0j4q] {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ebe9ff;
    color: var(--gp-primary);
    font-size: 11px;
    font-weight: 800;
}

.gp-security-item strong[b-1ll9xu0j4q] {
    font-size: 15px;
}

.gp-security-item p[b-1ll9xu0j4q] {
    margin: 6px 0 0;
    color: #7a7d85;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   CTA
   ========================================================= */

.gp-final-cta[b-1ll9xu0j4q] {
    padding: 80px 0;
    background: white;
}

.gp-cta-box[b-1ll9xu0j4q] {
    position: relative;
    overflow: hidden;
    padding: 75px 80px;
    border-radius: 22px;
    background: var(--gp-primary);
}

.gp-cta-content[b-1ll9xu0j4q] {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.gp-cta-box h2[b-1ll9xu0j4q] {
    margin: 0;
    color: white;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -2px;
}

    .gp-cta-box h2 span[b-1ll9xu0j4q] {
        display: block;
        color: #c9c6ff;
    }

.gp-cta-box p[b-1ll9xu0j4q] {
    max-width: 500px;
    margin: 20px 0 30px;
    color: #d8d6ff;
    font-size: 16px;
    line-height: 1.7;
}

.gp-primary-btn.white[b-1ll9xu0j4q] {
    background: white;
    color: #5149d8;
    box-shadow: none;
}

    .gp-primary-btn.white:hover[b-1ll9xu0j4q] {
        background: #f5f4ff;
    }

.gp-cta-decoration[b-1ll9xu0j4q] {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
}

    .gp-cta-decoration div[b-1ll9xu0j4q] {
        position: absolute;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 50%;
    }

        .gp-cta-decoration div:nth-child(1)[b-1ll9xu0j4q] {
            inset: 0;
        }

        .gp-cta-decoration div:nth-child(2)[b-1ll9xu0j4q] {
            inset: 70px;
        }

        .gp-cta-decoration div:nth-child(3)[b-1ll9xu0j4q] {
            inset: 140px;
        }


/* =========================================================
   FOOTER
   ========================================================= */

.gp-footer[b-1ll9xu0j4q] {
    padding: 65px 0 25px;
    background: #111216;
    color: white;
}

.gp-footer-grid[b-1ll9xu0j4q] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-logo[b-1ll9xu0j4q] {
    color: white;
}

.gp-footer-grid > div:first-child p[b-1ll9xu0j4q] {
    max-width: 220px;
    margin-top: 15px;
    color: #777a83;
    font-size: 13px;
    line-height: 1.6;
}

.gp-footer h4[b-1ll9xu0j4q] {
    margin: 5px 0 15px;
    color: white;
    font-size: 13px;
}

.gp-footer-grid a:not(.gp-logo)[b-1ll9xu0j4q] {
    display: block;
    margin-bottom: 10px;
    color: #777a83;
    font-size: 12px;
}

    .gp-footer-grid a:not(.gp-logo):hover[b-1ll9xu0j4q] {
        color: white;
    }

.gp-footer-bottom[b-1ll9xu0j4q] {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #25262b;
    color: #62656d;
    font-size: 11px;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1000px) {

    .gp-nav-links[b-1ll9xu0j4q] {
        display: none;
    }

    .gp-mobile-menu[b-1ll9xu0j4q] {
        display: flex;
        flex-direction: column;
        gap: 4px;
        border: 0;
        background: transparent;
        padding: 8px;
    }

        .gp-mobile-menu span[b-1ll9xu0j4q] {
            width: 20px;
            height: 2px;
            background: #333;
            border-radius: 2px;
        }

    .gp-hero-grid[b-1ll9xu0j4q] {
        grid-template-columns: 1fr;
        padding: 70px 0 80px;
    }

    .gp-hero-content[b-1ll9xu0j4q] {
        text-align: center;
        padding: 40px 0 20px;
    }

    .gp-hero-text[b-1ll9xu0j4q] {
        margin-left: auto;
        margin-right: auto;
    }

    .gp-hero-actions[b-1ll9xu0j4q],
    .gp-hero-trust[b-1ll9xu0j4q] {
        justify-content: center;
    }

    .gp-dashboard-wrapper[b-1ll9xu0j4q] {
        max-width: 850px;
        margin: auto;
    }

    .gp-feature-grid[b-1ll9xu0j4q] {
        grid-template-columns: 1fr 1fr;
    }

    .gp-feature-card.large[b-1ll9xu0j4q] {
        grid-column: span 2;
    }

    .gp-steps[b-1ll9xu0j4q] {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .gp-step-line[b-1ll9xu0j4q] {
        display: none;
    }

    .gp-integration-box[b-1ll9xu0j4q] {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 55px;
    }

    .gp-security-grid[b-1ll9xu0j4q] {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


@media (max-width: 700px) {

    .gp-container[b-1ll9xu0j4q],
    .gp-nav-container[b-1ll9xu0j4q] {
        width: min(100% - 30px, 1180px);
    }

    .gp-nav-actions[b-1ll9xu0j4q] {
        display: none;
    }

    .gp-hero h1[b-1ll9xu0j4q] {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .gp-hero-text[b-1ll9xu0j4q] {
        font-size: 16px;
    }

    .gp-hero-actions[b-1ll9xu0j4q] {
        flex-direction: column;
    }

    .gp-primary-btn[b-1ll9xu0j4q],
    .gp-secondary-btn[b-1ll9xu0j4q] {
        width: 100%;
    }

    .gp-hero-trust[b-1ll9xu0j4q] {
        flex-direction: column;
        align-items: center;
    }

    .gp-dashboard-body[b-1ll9xu0j4q] {
        grid-template-columns: 70px 1fr;
    }

    .gp-sidebar[b-1ll9xu0j4q] {
        padding: 15px 7px;
    }

    .gp-side-logo span[b-1ll9xu0j4q],
    .gp-side-item[b-1ll9xu0j4q] {
        font-size: 0;
    }

    .gp-side-item[b-1ll9xu0j4q] {
        justify-content: center;
    }

    .gp-side-icon[b-1ll9xu0j4q] {
        font-size: 12px;
    }

    .gp-side-logo[b-1ll9xu0j4q] {
        justify-content: center;
    }

    .gp-dashboard-content[b-1ll9xu0j4q] {
        padding: 12px;
    }

    .gp-stat-grid[b-1ll9xu0j4q] {
        grid-template-columns: 1fr;
    }

    .gp-bottom-grid[b-1ll9xu0j4q] {
        grid-template-columns: 1fr;
    }

    .gp-trust-line[b-1ll9xu0j4q] {
        flex-wrap: wrap;
        gap: 25px;
    }

    .gp-section[b-1ll9xu0j4q] {
        padding: 75px 0;
    }

    .gp-section-heading[b-1ll9xu0j4q] {
        margin-bottom: 35px;
    }

    .gp-feature-grid[b-1ll9xu0j4q] {
        grid-template-columns: 1fr;
    }

    .gp-feature-card.large[b-1ll9xu0j4q] {
        grid-column: auto;
    }

    .gp-steps[b-1ll9xu0j4q] {
        grid-template-columns: 1fr;
    }

    .gp-integration-box[b-1ll9xu0j4q] {
        padding: 35px 25px;
    }

    .gp-integration-list[b-1ll9xu0j4q] {
        grid-template-columns: 1fr;
    }

    .gp-integration-visual[b-1ll9xu0j4q] {
        transform: scale(.8);
    }

    .gp-security-grid[b-1ll9xu0j4q] {
        gap: 40px;
    }

    .gp-cta-box[b-1ll9xu0j4q] {
        padding: 45px 25px;
    }

    .gp-footer-grid[b-1ll9xu0j4q] {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

        .gp-footer-grid > div:first-child[b-1ll9xu0j4q] {
            grid-column: span 2;
        }

    .gp-footer-bottom[b-1ll9xu0j4q] {
        flex-direction: column;
        gap: 10px;
    }
}


@media (max-width: 450px) {

    .gp-hero h1[b-1ll9xu0j4q] {
        font-size: 39px;
    }

    .gp-dashboard-wrapper[b-1ll9xu0j4q] {
        transform: scale(.88);
        transform-origin: top center;
        margin-bottom: -60px;
    }

    .gp-cta-box h2[b-1ll9xu0j4q] {
        font-size: 36px;
    }
}
