:root {
    --light-gray: rgb(239, 243, 246);
    --light-gray-rgb: 239, 243, 246;
    --primary-color: #204794;
    --padding-principal: 1.5rem;
    --padding-medio: 20px;
    --ok-color: #28a745;
    --warn-color: #e15b61;
}

.tooltip-quest.page-guide-icon {
    cursor: pointer !important;
    padding: 2px;
    height: 22px;
    width: 22px;
    font-size: 14px;
    margin-top: 4px;
}

.tooltip-quest.page-guide-icon:hover {
    color: var(--primary-color) !important;
}

.pill-done {
    background-color: #48b461;
}

.pill-upcoming {
    background-color: #ffcd39;
}

.pill-late {
    background-color: var(--warn-color);
}

#global-loader {
    position: fixed;
    inset: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pagina-home {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

#pagina-home.show {
    opacity: 1;
}

body,
html {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
        "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}

.dashboard-content {
    flex: 1;
    gap: 20px;
    min-height: 0;
}

h1,
h2,
h3,
h4 {
    color: #1c3664 !important;
}

.f-wrap {
    flex-wrap: wrap;
}

.unique-col,
.right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
}

.unique-col {
    flex: 1;
    flex-direction: column;
    min-height: 0;
}

.right-col {
    flex: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.right-col .container-card {
    min-width: calc(50% - 20px);
    min-height: calc(50% - 20px);
    overflow-y: auto;
}

.unique-col .container-card,
.right-col .container-card {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.unique-col>.container-card {
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.navbarButtonTab {
    border-radius: 10px;
    width: 100%;
    padding: 15px;
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.navbarButtonTab:hover,
.navbarButtonTab.active {
    color: white !important;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.leadCardInfo {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.leadCardInfo small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 200px;
    font-size: 11px;
}

.container h2 {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 22px;
}

.cardSection {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.container-centered {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.actionCard {
    all: unset;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 220px;
    height: 100px;
    border: solid 1px rgb(202, 202, 202);
    border-radius: 10px;
    background-color: rgb(235, 235, 235);
    transition: 0.1s ease-in-out, transform 0.2s ease-in-out,
        box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.actionCard:hover {
    background-color: #008cba;
    color: white;
}

.actionCard:active {
    transform: scale(0.98);
}

.login-register-box {
    background-color: rgb(255, 255, 255);
    width: 400px;
    height: fit-content;
    padding: 50px;
    border-radius: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 20px 60px rgba(138, 147, 165, 0.384);
    z-index: 2;
}

.login-register-box h1 {
    padding: 0;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.login-register-box h2 {
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 16px;
    font-weight: 300;
    color: #4e6894 !important;
}

.login-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    z-index: 1;
}

.bg-lines .line {
    fill: none;
    stroke: #d1d5db;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 4s ease-in-out infinite;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1000;
        opacity: 1;
    }

    40% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    60% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -50;
        opacity: 0;
    }
}

.input {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
    border: #cacaca 1px solid;
}

.inputTitle {
    color: rgb(43, 43, 43);
    font-size: 14px;
    font-weight: 600;
    padding: 0 0 5px 0;
    margin: 0;
    text-align: left;
}

.inputTitleBox {
    width: 100%;
}

.input-sequence {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: #2a5ab9 !important;
}

.main-button {
    all: unset;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 14px;
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin: 0;
    transition: 0.1s ease-in-out, transform 0.2s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

.main-button:hover {
    background-color: #2a5ab9;
}

.main-button-white {
    background-color: rgb(236, 236, 236) !important;
    color: rgb(46, 46, 46);
    transition: all 0.3s ease;
}

.main-button-white:hover {
    background-color: rgb(211, 211, 211) !important;
}

.main-button:active {
    transform: scale(0.98);
}

.button {
    color: rgb(31, 31, 31);
    text-align: center;
    font-weight: bold;
    font-size: 12px;
}

.tituloBotao {
    justify-content: space-between;
    display: flex;
    flex-direction: row !important;
    align-items: center;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    transition: all 0.3s ease-in-out;
}

.sidebar.high-z {
    z-index: 9998;
}

.sidebar-background {
    background-color: #ffffff;
    color: #000;
    border-right: 2px solid rgb(228, 228, 228);
    border-radius: 0 20px 20px 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 1rem;
    gap: 15px;
}

.sidebar-scrollable {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
}

.sidebar h4 {
    padding: 0;
    margin: 0;
}

.icon-btn-danger,
.icon-btn {
    color: rgb(104, 104, 104) !important;
    transition: all 0.3s ease-in-out;
}

.icon-btn:hover {
    color: #5275bb !important;
}

.icon-btn-danger:hover {
    color: #dc3545 !important;
}

.nav-link {
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    border-radius: 5px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-nav .my-2 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
}

.sidebar-footer {
    flex: 0 0 auto;
    padding: 1rem 0 1.4rem 0;
}

.sidebar .nav-link {
    color: rgb(78, 78, 78);
    border-radius: 8px;
}

.sidebar .nav-link:hover {
    border-color: var(--primary-color);
}

.sidebar.collapsed {
    width: 90px;
}

.nav-header h4 {
    font-size: 20px;
}

.nav-title {
    font-weight: 600 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease-in-out;
}

.nav-text {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.sidebar.collapsed .nav-text,
.sidebar.collapsed .nav-title {
    opacity: 0 !important;
}

.sidebar-toggler {
    display: flex;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
}

.sidebar-toggler .material-symbols-outlined {
    transition: transform 0.3s ease-in-out;
    transform: rotate(0);
}

.sidebar.collapsed .sidebar-toggler .material-symbols-outlined {
    transform: rotate(180deg);
}

.nav-header {
    display: flex;
    align-items: center;
    padding: 12px 0 0 0;
    color: rgb(34, 34, 34);
    flex-direction: row;
    justify-content: flex-start;
    overflow: hidden;
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.sidebar.collapsed .nav-header {
    padding: 12px 12px 0 12px;
}

.nav-version {
    position: absolute;
    bottom: 10px;
}

.nav-version span {
    color: rgb(177, 177, 177);
    font-size: 12px;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.d-flex {
    display: flex;
}

.btn-secondary {
    background-color: #ececec !important;
    color: #292929 !important;
    border: #dee2e6 solid 1px !important;
    height: fit-content;
}

.btn-secondary:hover {
    background-color: #d4d4d4 !important;
    color: #292929 !important;
    border: #dee2e6 solid 1px !important;
}

input[readonly] {
    pointer-events: none;
    background-color: #e9ecef;
    color: #6c757d;
    border-color: #ced4da;
}

input[readonly]:focus {
    box-shadow: none !important;
    outline: none !important;
}

#scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

#funis-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    min-width: max-content;
}

.funisRow {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.etapa {
    width: 300px;
    height: 100%;
    border: 1px solid #ccc;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.nova-etapa .text {
    height: 100%;
    width: 250px;
    font-size: 16px;
    color: rgb(78, 78, 78);
    font-weight: bold;
    transition: border 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nova-etapa .text:hover {
    color: var(--primary-color);
}

.funil-wrapper {
    display: flex;
    flex-direction: column;
}

.funil-box {
    width: 300px;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: rgb(236, 236, 236);
    padding: 5px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.etapa-title-box {
    background-color: #ccc;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.valorMedio {
    background-color: rgb(238, 238, 238);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    height: auto;
    border: 1px solid rgb(196, 196, 196);
    transition: transform 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.valorMedio.escondido {
    transform: translateX(30px);
    opacity: 0;
}

.etapa-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
}

.curso-card {
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.08);
}

.tag-container {
    display: flex;
    gap: 8px;
    margin: 20px 0px;
    flex-wrap: wrap;
}

.tag-container p {
    margin: 0;
    padding: 0;
}

.tag {
    background-color: var(--light-gray);
    max-width: 350px;
    padding: 5px 15px;
    gap: 5px;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: background-color 0.2s ease, color 0.2s ease, max-width 0.2s ease,
        padding 0.2s ease, border-radius 0.2s ease, margin-right 0.2s ease;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid rgb(235, 235, 235);
}

.tag .material-symbols-outlined {
    font-size: 1rem;
}

.tag.white {
    background-color: white;
}

.tag.invisivel {
    max-width: 0;
    padding: 5px 0;
    border-radius: 5px;
    border-width: 0px;
    border-color: none;
}

.tag.clicavel {
    pointer-events: all;
    cursor: pointer;
}

.tag.clicavel:hover {
    background-color: rgb(211, 211, 211);
}

.tag.clicavel.active {
    background-color: var(--primary-color);
    color: white;
}

.tag.clicavel.active:hover {
    background-color: color-mix(in srgb, var(--primary-color) 70%, white);
    color: white;
}

.small-tag {
    padding: 4px 13px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    height: fit-content;
}

.wrapper-com-margem {
    margin-right: 6px;
}

.tags-usuarios-selecionados,
.tags-origens-selecionadas {
    row-gap: 6px;
}

hr.my-3 {
    color: #dbdfeb;
    opacity: 1;
}

.full-height {
    height: 100% !important;
}

.side-panel {
    width: 0;
    min-width: 0;
    margin-right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width 0.4s ease, margin-right 0.4s ease, opacity 0.4s ease,
        min-width 0.4s ease, padding 0.4s ease, margin-left 0.4s ease;
    background-color: var(--light-gray);
    height: 670px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.main-lead-content {
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.btn-secondary-white {
    background-color: white !important;
    border-color: #dee2e6 !important;
    color: black !important;
}

.btn-secondary-white:hover,
.btn-secondary-white.selected {
    background-color: var(--primary-color) !important;
    border-color: #dee2e6 !important;
    color: white !important;
}

.card.observacao-card {
    overflow: hidden;
    transition: height 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    background-color: white;
    text-overflow: ellipsis;
    padding: 0.7rem;
}

.card.observacao-card.expanded {
    overflow: visible;
}

.card.observacao-card:hover {
    background-color: #f5f5f5;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card.observacao-card p,
.card.observacao-card small {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.card.observacao-card.expanded p,
.card.observacao-card.expanded small {
    display: block;
    -webkit-line-clamp: unset;
    white-space: normal;
    overflow: hidden;
}

.form-observacao-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin-top: 0;
}

.form-observacao-wrapper.open {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    margin-top: 10px;
}

.etapa-pill {
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 6px;
    border-radius: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background-color: white !important;
    color: rgb(34, 34, 34) !important;
    border: #ccc 1px solid !important;
    border-radius: 5px !important;
    padding: 6px 12px !important;
    margin: 0 4px;
    transition: background-color 0.2s ease-in-out;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #2a5ab9 !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #1c3a73 !important;
    color: white !important;
    font-weight: bold;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background-color: #2a5ab9 !important;
    color: white !important;
    font-weight: bold;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background-image: none !important;
    box-shadow: none !important;
}

#painel-cursos {
    min-width: 0;
    margin-left: 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
    transition: min-width 0.4s ease, margin-left 0.4s ease, opacity 0.2s ease,
        padding 0.4 ease;
    background-color: var(--light-gray);
    height: 670px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#painel-cursos.open {
    min-width: 250px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    margin-left: 16px !important;
    padding: 20px;
}

.botao-alterar-senha {
    border: 1px solid #dad8d8 !important;
    width: 100%;
    height: 40px;
    padding: 6px;
    opacity: 1;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 7px;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease,
        padding 0.3s ease, background-color 0.3s ease-in-out,
        border 0.3s ease-in-out;
}

.sidebar.collapsed .botao-alterar-senha {
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease,
        padding 0.3s ease;
}

.sidebar.collapsed .navbarButtonTab {
    gap: 0;
}

.botao-alterar-senha:hover {
    border: 1px solid #ececec !important;
}

.navbarButtonTab-title {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

#form-alterar-senha {
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    margin-top: 0 !important;
    transition: max-height 0.4s ease, margin-top 0.1s ease;
}

#form-alterar-senha .form-floating {
    flex: 1;
}

.requisitos li {
    display: flex;
    align-items: flex-start;
}

.requisitos li .material-symbols-outlined {
    display: inline-flex;
    margin-top: 3px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

.requisito-ok .material-symbols-outlined {
    color: var(--ok-color);
}

.requisito-fail .material-symbols-outlined {
    color: var(--warn-color);
}

.requisitos {
    color: #555;
}

.requisitos li.ok {
    color: #333;
}

.requisitos li.fail {
    color: #777;
}

.requisitos li {
    transition: color 0.3s ease-in-out;
}

#botao-toggle-senha.modo-salvar {
    background-color: #fff !important;
    border: 1px solid #dad8d8 !important;
}

#botao-toggle-senha.modo-salvar:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

#botao-cancelar-senha {
    background-color: #fff !important;
    border: 1px solid #dad8d8 !important;
    color: #666 !important;
}

#botao-cancelar-senha:hover {
    background-color: #f1f1f1 !important;
}

.tooltip-quest {
    display: inline-block;
    border: 1px solid #6d6d6d;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 16px;
    font-weight: bold;
    cursor: default;
    font-size: 12px;
    position: relative;
    transition: all 0.2s ease;
}

.tooltip-global {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    max-width: 200px;
    z-index: 9999;
    white-space: normal;
    text-align: left;
    pointer-events: none;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.tooltip-global .tooltip-triangle {
    position: absolute;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.tooltip-quest:hover>.tooltip {
    visibility: visible;
}

.tooltip-global.mostrar {
    opacity: 1;
}

.tooltip-quest:hover {
    background-color: white;
}

/* #moverEtapa {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.4s ease,
        opacity 0.2s ease,
        margin 0.4s ease,
        padding 0.4s ease;
}

#moverEtapa.open {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 20px;
    padding: 20px;
}

.moverEtapaTitle {
    font-size: 18px;
    color: #3d3d3d;
} */

.whatsapp-btn .whats-icon {
    filter: brightness(0.3);
    /* deixa preto */
    transition: filter 0.2s ease;
}

.whatsapp-btn .whats-text {
    color: #212529;
    transition: color 0.2s;
}

.whatsapp-btn:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: white;
}

.whatsapp-btn:hover .whats-icon {
    filter: brightness(100);
}

.whatsapp-btn:hover .whats-text {
    color: white;
}

.user-svg {
    width: 185px;
    height: 185px;
}

.icon-outline-bg {
    stroke-width: 4 !important;
}

.icon-fg {
    stroke-width: 8 !important;
    transition: stroke-dashoffset 0.5s ease, stroke 0.5s ease;
}

#mask-center path {
    stroke-width: 4;
}

.input-valid {
    border: 1px solid #28a745 !important;
}

.input-invalid {
    border: 1px solid #dc3545 !important;
}

.user-progress {
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.user-progress.complete {
    border-color: #28a745 !important;
}

.radio-group {
    border: 2px solid #dee2e6;
    padding: 13px;
    border-radius: 0.25rem;
}

.radio-group.input-valid {
    border-color: #28a745 !important;
}

.radio-group.input-invalid {
    border-color: #dc3545 !important;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.extra-panel {
    width: 0;
    min-width: 0;
    height: 100%;
    background-color: white;
    border-radius: 20px;
    padding: 0;
    margin-left: 0;
    overflow: hidden;
    opacity: 0;
    position: relative;
    transition: width 0.3s ease, min-width 0.3s ease, margin-left 0.3s ease,
        opacity 0.3s ease, visibility 0.3s ease, padding 0.5s ease;
    z-index: 10;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.048);
}

.extra-panel.open {
    width: 280px;
    min-width: 280px;
    padding: 30px;
    margin-left: 20px;
    opacity: 1;
    transition: width 0.3s ease, margin-left 0.3s ease, opacity 0.3s ease,
        visibility 0.3s ease;
}

.extra-panel .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.extra-panel .panel-header .panel-title {
    flex: 1;
    min-width: 0;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.extra-panel .panel-header .close-extra-panel {
    margin-left: 0.5rem;
    cursor: pointer;
}

.btn-secondary-white {
    background: white;
    color: #333;
    border: 1px solid #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-indicator {
    position: absolute;
    left: 0;
    width: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    top: 0;
    height: 0;
    transition: top 0.3s ease, height 0.3s ease;
    will-change: top, height;
    z-index: 0;
}

.nav-link {
    position: relative;
    z-index: 1;
}

@keyframes blink-smooth {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.page-header {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.page-header>h2 {
    position: relative;
    z-index: 1;
}

.dashboard-title {
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    color: white;
}

.datahora-letreiro {
    font-size: 0.9rem;
    color: #666;
    opacity: 1;
    transition: opacity 0.6s ease;
    overflow: hidden;
    margin: 0;
    color: rgb(216, 216, 216);
}

.datahora-letreiro.fade-out {
    opacity: 0;
}

.datahora-letreiro.fade-in {
    opacity: 1;
}

.spinner-color {
    color: var(--primary-color) !important;
}

#page-header .vanta-canvas {
    opacity: 0.07 !important;
}

.tituloBotao h3 {
    font-size: 22px;
    margin: 0;
}

#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.cursor {
    display: inline-block;
    width: 1px;
    height: 1.2rem;
    background-color: currentColor;
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: blink 0.7s infinite;
}

.etapa-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    font-size: 0.9em;
    font-weight: 500;
    margin: 0 2px;
    animation: color 0.3s ease;
}

.origem-badge {
    display: inline-block;
    padding: 2px 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    color: #333;
    font-size: 0.9em;
    font-weight: 500;
    margin: 0 2px;
}

.card-automacao {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 30px;
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    flex: 1 1 auto;
    height: 100%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    overflow-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    border-radius: 10px;
    gap: 8px;
    transition: all 0.3s ease;
    background-color: none;
    cursor: pointer;
    background-color: white;
}

.card-automacao-header {
    display: flex;
    align-items: center;
}

.card-automacao-header strong {
    margin-right: auto;
}

.card-automacao-wrapper {
    display: flex;
    justify-content: center;
}

.card-automacao:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.075);
    background-color: #f5f5f5;
}

.card-automacao-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.card-automacao-container {
    display: flex;
    overflow: hidden;
}

.tilt-card {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
    will-change: transform;
    perspective: 1000px;
}

.tilt-card.focused-card {
    position: fixed;
    margin: 0;
    border-radius: 12px;
    backface-visibility: hidden;
    z-index: 999;

    transition: top 0.5s ease, left 0.5s ease, max-width 0.5s ease,
        height 0.5s ease, transform 0.7s ease;

    max-width: 500px;
}

#focus-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

#focus-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#focus-overlay.loading {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
}

.spinner-border {
    color: var(--primary-color);
}

#focus-overlay .spinner-border {
    display: none;
}

#focus-overlay.loading .spinner-border {
    display: block;
}

.focused-card {
    position: fixed;
    z-index: 999;
    transition: all 0.6s ease;
    margin: 0;
    border-radius: 12px;
    transform-origin: center;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.card-ghost {
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.delete-icon {
    font-family: "Material Icons";
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 30px;
    aspect-ratio: 1;
    font-size: 20px;
    color: rgb(87, 87, 87);
    margin-left: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tilt-card.inactive-card {
    background-color: rgb(230, 230, 230) !important;
    pointer-events: auto;
    box-shadow: none;
}

.tilt-card.focused-card .delete-icon {
    pointer-events: auto;
    margin-left: 8px;
    width: 20px;
}

.tilt-card.focused-card .delete-icon:hover {
    color: rgb(212, 67, 67);
}

.card-details {
    opacity: 0;
    min-width: 0;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.7);
    display: none;
    margin-top: 12px;
    font-size: 0.95em;
}

.tilt-card.focused-card .card-details {
    opacity: 1;
    min-height: 100px;
    display: block !important;
}

.card-automacao-fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #2196f3;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.etapa-checkbox {
    padding: 0;
    margin: 0;
    transform: translateX(100%);
    opacity: 0;
    display: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.etapa-checkbox-wrapper input[type="checkbox"] {
    display: flex !important;
    width: 14px;
    height: 14px;
    transform: scale(1.3);
    cursor: pointer;
}

.etapa-checkbox-wrapper {
    display: flex;
    align-items: center;
    height: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease, width 0.3s ease, opacity 0.3s ease;
    padding: 0;
    margin: 0;
}

.etapa-checkbox-wrapper.visivel {
    width: 14px;
    height: 14px;
    opacity: 1;
    transition: height 0.3s ease, width 0.3s ease, opacity 0.3s ease;
}

#btnRealocarLeads,
#btnExportarLeads,
#btnMarcarContato {
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
    max-width: 0;
    padding: 0 !important;
    opacity: 0;
    visibility: hidden;
    display: none;
    align-items: center;
    gap: 5px;
}

#btnRealocarLeads.btn-exportar-show,
#btnExportarLeads.btn-exportar-show,
#btnMarcarContato.btn-exportar-show {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 140px;
    padding: 0.375rem 0.75rem !important;
    opacity: 1;
    visibility: visible;
}

#btnRealocarLeads:disabled,
#btnExportarLeads:disabled,
#btnMarcarContato:disabled {
    background-color: #ccc !important;
    border-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
}

#badge-filtros,
.badge-filtros {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    background: #dc3545;
    color: #fff;
    border-radius: 20px;
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.badge-filtros.inline {
    position: relative !important;
    top: none !important;
    right: none !important;
    transform: none !important;
}

.moreOp {
    color: rgb(73, 73, 73);
    font-size: 22px;
}

.moreOpOption {
    background-color: white;
    color: black;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: opx 3px 5px rgba(0, 0, 0, 0.075);
}

.moreOpOption:hover {
    color: white;
    background-color: var(--primary-color);
}

.popup-opcoes-etapa {
    position: absolute;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0;
    z-index: 9999;
    min-width: 150px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.25s ease;
}

.popup-opcoes-etapa.aberto {
    max-height: 100px;
    opacity: 1;
    padding: 10px;
}

.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.5);
}

.flex-column-cards {
    display: flex;
    gap: 10px;
    background-color: #ebebeb;
    border-radius: 10px;
    border: 1px solid rgb(212, 212, 212);
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.flex-column-cards::-webkit-scrollbar {
    display: none;
}

.card-selection {
    flex: 1;
    max-width: 178.5px;
    min-width: 160px;
    padding: 10px;
    height: 70px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.2s ease;
}

.card-selection.selected {
    scale: 1.02;
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.export-scroll-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#export-columns-grid {
    overflow-x: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    scroll-behavior: smooth;
}

.scroll-shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.scroll-shadow.left {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
}

.scroll-shadow.right {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.1), transparent);
}

.filter-status {
    opacity: 0.3;
}

@keyframes pulseFilter {
    from {
        opacity: 0.3;
        color: #3a3a3a;
    }

    to {
        opacity: 0.8;
        color: #48b461;
    }
}

.filter-status.anim {
    animation: pulseFilter 2s ease-in-out infinite alternate;
}

.funisRow.dragging {
    cursor: grabbing;
    user-select: none;
}

.etapa-header {
    cursor: grab;
}

.form-check.form-switch {
    margin-top: -7px !important;
    display: flex;
    align-items: center;
    justify-content: left;
}

.username-error,
.email-error {
    display: block;
    max-height: 0;
    overflow: hidden;
    font-size: 0.875em;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.username-error.show,
.email-error.show {
    max-height: 30px;
    opacity: 1;
}

.username-wrapper,
.email-wrapper {
    transition: margin-bottom 0.3s ease;
    margin-bottom: 1rem;
}

.username-wrapper.expand,
.email-wrapper.expand {
    margin-bottom: 12px;
}

.username-valid,
.email-valid {
    color: #198754;
}

input.is-valid {
    border-color: #198754 !important;
    padding-right: 2.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23198754' viewBox='0 0 16 16'%3e%3cpath d='M16 2a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2zM6.5 11.5L2.5 7.5l1.5-1.5 2.5 2.5L12 4l1.5 1.5-7 7z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem 1.25rem;
}

.perfil-info {
    flex: 1 1 auto;
    border: 1px solid rgb(216, 223, 230);
    border-radius: 10px;
    min-height: 0;
    display: flex;
    padding: 15px;
}

.perfil-info p {
    margin: 0;
    color: rgb(101, 104, 107);
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: #757c8f !important;
}

.form-floating label {
    color: #808594;
}

.forg-pass {
    text-align: left;
}

.forg-pass a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.1s ease;
}

.forg-pass a:hover {
    text-decoration: none;
    color: color-mix(in srgb, var(--primary-color) 70%, white);
}

.muted-text {
    color: #969baf;
}

.my-2,
.my-3 {
    border-color: #e3e8ec;
    border-width: 1px;
    opacity: 1;
}

.btn-editar-observacao .material-symbols-outlined,
.btn-excluir-observacao .material-symbols-outlined {
    color: rgb(122, 122, 122) !important;
    font-size: 20px;
    transition: all 0.2s ease;
}

.btn-editar-observacao:hover .material-symbols-outlined {
    color: var(--primary-color) !important;
}

.btn-excluir-observacao:hover .material-symbols-outlined {
    color: var(--warn-color) !important;
}

.observacao-card small {
    line-height: 1;
    font-size: 13px;
}

.btn-olho {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1;
    width: auto;
    height: auto;
    align-self: center;
}

td:has(.btn-olho) {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* estilos base */
.icone-olho .arco-superior,
.icone-olho .arco-inferior,
.icone-olho .pupila {
    transition: all 0.4s ease;
}

/* aberto */
.icone-olho.aberto .arco-superior,
.icone-olho.aberto .arco-superior-clip {
    d: path("M2 12 Q12 4 22 12");
}

.icone-olho.aberto .pupila {
    opacity: 1;
    transform: scale(1);
}

.icone-olho.fechado .arco-superior,
.icone-olho.fechado .arco-superior-clip {
    d: path("M2 12 Q12 20 22 12");
}

.icone-olho.fechado .pupila {
    opacity: 0;
}

.btn-olho:has(.fechado) {
    color: rgb(131, 131, 131);
}

.lead-posicao-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.lead-doc-icon {
    line-height: 1;
    margin-bottom: 2px;
    text-decoration: none;
}

.lead-doc-icon .material-symbols-outlined {
    font-size: 18px;
    cursor: pointer;
}

.vertical-divider {
    height: 100%;
    border-left: 1px solid #e7e7e9;
}

.horizontal-divider {
    width: 100%;
    border-bottom: 1px solid #e7e7e9;
}

.tag.small-tag span {
    cursor: pointer;
}

#novo-etapa-container {
    display: flex;
    flex: 1 0 auto;
    width: 100%;
    max-height: 0;
    transition: max-height 0.25s ease;
    overflow: hidden;
}

#novo-etapa-container.aberto {
    max-height: 80px;
}