/* _content/Sigo/Features/Dashboard/Views/Index.cshtml.rz.scp.css */
.vh-40[b-jseml9hwp9] {
    height: 40vh;
}

.tabela-chart th[b-jseml9hwp9] {
    background-color: rgb(0, 0, 92);
    color: white;
    padding: 15px;
}

.tabela-chart td[b-jseml9hwp9] {
    padding: 10px;
}

.tabela-chart th:nth-child(1)[b-jseml9hwp9] {
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 10px 0px 0px 10px;
    /* Firefox 1-3.6 */
    -moz-border-radius: 10px 0px 0px 10px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 10px 0px 0px 10px;
}

.tabela-chart th:nth-last-child(1)[b-jseml9hwp9] {
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 0px 10px 10px 0px;
    /* Firefox 1-3.6 */
    -moz-border-radius: 0px 10px 10px 0px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 0px 10px 10px 0px;
}

.container-dashboard[b-jseml9hwp9] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 10px;
}

/* Linha 1: 4 cards */
.div1[b-jseml9hwp9] {
    grid-area: 1 / 1 / 2 / 2;
}

.div2[b-jseml9hwp9] {
    grid-area: 1 / 2 / 2 / 3;
}

.div3[b-jseml9hwp9] {
    grid-area: 1 / 3 / 2 / 4;
}

.div4[b-jseml9hwp9] {
    grid-area: 1 / 4 / 2 / 5;
}

/* Linha 2: 2 cards largos */
.div5[b-jseml9hwp9] {
    grid-area: 2 / 1 / 3 / 3;
}

.div6[b-jseml9hwp9] {
    grid-area: 2 / 3 / 3 / 5;
}

/* Responsivo: Tablet (≤ 992px) - 2 colunas */
@media (max-width: 992px) {
    .container-dashboard[b-jseml9hwp9] {
        grid-template-columns: repeat(2, 1fr);
    }

    .div1[b-jseml9hwp9],
    .div2[b-jseml9hwp9],
    .div3[b-jseml9hwp9],
    .div4[b-jseml9hwp9] {
        grid-column: span 1;
        grid-row: auto;
    }

    .div5[b-jseml9hwp9],
    .div6[b-jseml9hwp9] {
        grid-column: span 2; /* ocupam largura total (2 colunas) */
        grid-row: auto;
    }
}

/* Responsivo: Mobile (≤ 600px) - 1 coluna */
@media (max-width: 600px) {
    .container-dashboard[b-jseml9hwp9] {
        grid-template-columns: 1fr;
    }

    .div1[b-jseml9hwp9],
    .div2[b-jseml9hwp9],
    .div3[b-jseml9hwp9],
    .div4[b-jseml9hwp9],
    .div5[b-jseml9hwp9],
    .div6[b-jseml9hwp9] {
        grid-column: span 1; /* cada card ocupa linha inteira */
        grid-row: auto;
    }
}
/* _content/Sigo/Features/Home/Views/Index.cshtml.rz.scp.css */
.opcoes_menu[b-z7wqhb1w4d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
}
/* _content/Sigo/Features/Shared/Components/ButtonHome/Views/_buttonsHomepartialView.cshtml.rz.scp.css */
.card[b-g4639qgvv8] {
    width: 100%;
    margin: 0px;
}

.card .icone-titulo[b-g4639qgvv8] {
    font-size: 40px;
}

@media (max-width: 600px) {
    .card[b-g4639qgvv8] {
        max-width: 100% !important;
        width: 100%;
    }
}
/* _content/Sigo/Features/Shared/Components/Loading/Views/_loading.cshtml.rz.scp.css */
.loader-3[b-ux63e7ypgk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.spinner[b-ux63e7ypgk] {
    width: 60px;
    height: 60px;
    position: relative;
}

.spinner-ring[b-ux63e7ypgk] {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #10b981;
    animation: spinnerRotate-b-ux63e7ypgk 1.5s linear infinite;
}

    .spinner-ring:nth-child(2)[b-ux63e7ypgk] {
        width: 80%;
        height: 80%;
        top: 10%;
        left: 10%;
        border-top-color: #3b82f6;
        animation-direction: reverse;
        animation-duration: 1.2s;
    }

    .spinner-ring:nth-child(3)[b-ux63e7ypgk] {
        width: 60%;
        height: 60%;
        top: 20%;
        left: 20%;
        border-top-color: #f59e0b;
        animation-duration: 0.9s;
    }

@keyframes spinnerRotate-b-ux63e7ypgk {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner-text[b-ux63e7ypgk] {
    font-size: 1rem;
    color: #4b5563;
    position: relative;
}

    .spinner-text[b-ux63e7ypgk]::after {
        content: "...";
        position: absolute;
        animation: ellipsis-b-ux63e7ypgk 1.5s infinite;
        width: 20px;
        text-align: left;
    }

@keyframes ellipsis-b-ux63e7ypgk {
    0% {
        content: ".";
    }

    33% {
        content: "..";
    }

    66% {
        content: "...";
    }

    100% {
        content: "";
    }
}
/* _content/Sigo/Features/Shared/Components/Loading/Views/_LoadingPartial.cshtml.rz.scp.css */
/* CSS para .blinking-dots */

@keyframes spin-b-aqt04z2hbf {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes expand-b-aqt04z2hbf {
    0%, 100% {
        height: 2rem;
        opacity: 1;
    }

    50% {
        height: 1rem;
        opacity: 0.3;
    }
}

@keyframes blink-b-aqt04z2hbf {
    0%, 100% {
        opacity: 1;
        transform: translateY(0rem);
    }

    50% {
        opacity: 0.1;
        transform: translateY(0.5rem);
    }
}

@keyframes vibe-b-aqt04z2hbf {
    0% {
        width: 0rem;
        height: 0rem;
        border-width: 0.3rem;
        opacity: 1;
    }

    100% {
        width: 7rem;
        height: 7rem;
        border-width: 0rem;
        opacity: 0;
    }
}

@keyframes pulse-b-aqt04z2hbf {
    0%, 100% {
        width: 0rem;
        height: 0rem;
        opacity: 0;
    }

    50% {
        width: 5rem;
        height: 5rem;
        opacity: 1;
    }
}

@keyframes rotate-b-aqt04z2hbf {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes wave-b-aqt04z2hbf {
    0%, 100% {
        transform: translateY(-1rem);
    }

    50% {
        transform: translateY(1rem);
    }
}

@keyframes flip-b-aqt04z2hbf {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes fade-b-aqt04z2hbf {
    0%, 100% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }
}

@keyframes spread-b-aqt04z2hbf {
    0%, 70% {
        opacity: 0.1;
        transform: translate(-50%, -50%) rotate(var(--rotate)) translateX(1rem);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--rotate)) translateX(2rem);
    }
}

@keyframes spread2-b-aqt04z2hbf {
    0%, 70% {
        opacity: 0.1;
        transform: translate(-50%, -50%) rotate(var(--rotate)) translateX(1rem);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--rotate)) translateX(2rem);
    }
}

@keyframes spread3-b-aqt04z2hbf {
    0%, 70% {
        opacity: 0.1;
    }

    30% {
        opacity: 1;
    }
}

@keyframes dot-bounce-b-aqt04z2hbf {
    0%, 100% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fall2-b-aqt04z2hbf {
    0% {
        top: 35%;
        opacity: 1;
        transform: scale(1);
    }

    70% {
        top: 75%;
        opacity: 1;
        transform: scale(0.8);
    }

    100% {
        top: 80%;
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes orbit-b-aqt04z2hbf {
    0% {
        transform: rotate(0deg) translateX(var(--radius)) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(var(--radius)) rotate(-360deg);
    }
}

@keyframes charge-b-aqt04z2hbf {
    0% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

@keyframes magic-sweep-b-aqt04z2hbf {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

@keyframes dna-rotate-b-aqt04z2hbf {
    0%, 100% {
        transform: translateX(-50%) rotateY(0deg);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) rotateY(180deg);
        opacity: 0.5;
    }
}

@keyframes infinity-spin-b-aqt04z2hbf {
    0% {
        transform: rotate(0deg);
        border-top-color: var(--primary-color);
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

    25% {
        border-top-color: transparent;
        border-right-color: var(--primary-color);
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

    50% {
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: var(--primary-color);
        border-left-color: transparent;
    }

    75% {
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: var(--primary-color);
    }

    100% {
        transform: rotate(360deg);
        border-top-color: var(--primary-color);
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
}

@keyframes honeycomb-pulse-b-aqt04z2hbf {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

@keyframes atomic-orbit-b-aqt04z2hbf {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
        opacity: 1;
    }
}

@keyframes neon-pulse-b-aqt04z2hbf {
    0% {
        box-shadow: 0 0 0.5rem var(--primary-color), inset 0 0 0.5rem var(--primary-color);
        opacity: 0.7;
    }

    100% {
        box-shadow: 0 0 1.5rem var(--primary-color), inset 0 0 1.5rem var(--primary-color);
        opacity: 1;
    }
}

@keyframes digital-wave-b-aqt04z2hbf {
    0%, 100% {
        transform: translateY(100%);
    }

    50% {
        transform: translateY(0%);
    }
}

@keyframes matrix-fall-b-aqt04z2hbf {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.2;
    }

    50% {
        transform: translateY(1rem);
        opacity: 1;
    }
}

@keyframes quantum-jump-b-aqt04z2hbf {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
        opacity: 1;
    }

    25% {
        transform: translate(1rem, -1rem) scale(0.8);
        opacity: 0.7;
    }

    50% {
        transform: translate(-1rem, 1rem) scale(1.2);
        opacity: 1;
    }

    75% {
        transform: translate(1rem, 1rem) scale(0.9);
        opacity: 0.8;
    }
}
/* _content/Sigo/Features/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-8b3a37wrfa] {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a[b-8b3a37wrfa] {
    color: #0077cc;
}

.btn-primary[b-8b3a37wrfa] {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active[b-8b3a37wrfa], .nav-pills .show > .nav-link[b-8b3a37wrfa] {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top[b-8b3a37wrfa] {
    border-top: 1px solid #e5e5e5;
}

.border-bottom[b-8b3a37wrfa] {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-8b3a37wrfa] {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-8b3a37wrfa] {
    font-size: 1rem;
    line-height: inherit;
}

.footer[b-8b3a37wrfa] {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.card[b-8b3a37wrfa] {
    border-radius: 10px !important;
}
/* _content/Sigo/Features/Solicitacao/Views/AbrirSolicitacao.cshtml.rz.scp.css */
/* _content/Sigo/Features/Solicitacao/Views/AbrirSolicitacaoCorporativa.cshtml.rz.scp.css */
/* _content/Sigo/Features/Solicitacao/Views/Index.cshtml.rz.scp.css */
.card-container[b-ysbpj8r0ig]{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}
