/* /////////////////////////////////////////////////////////// */
/* Tags HTML */
html,
body {
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-wrap: break-word;
    height: 100%;
    font-size: 1em;
}
@media screen and (max-width: 250px) {
    body {
        display: none;
    }
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
    padding: 0;
    margin: 0;
}
.linha {
    border: 2px solid #ccc;
    margin: 10px 0;
}
/* Cores */
:root {
    --azul_mais_escuro: #161616;
    --azul_escuro: #101010;
    --azul_bem_claro: #b9cbd1;
    --azul_claro_fundo: #d3e3e6;

    --cinza_escuro: #4b5d66;
    --azul_cinza: #627b87;
    --cinza_claro: #c7c7c7;

    --branco: #fff;
}
.color_azul_escuro {
    --azul_escuro: #03242e;
}
.azul_claro {
    --azul_claro: #093a4a;
}
.cinza_claro {
    --cinza_claro: #c7c7c7;
}

/* TEXTOS */
.upper {
    text-transform: uppercase;
}

/* Cores */
.red {
    color: #dd585a;
}

/* Botões */
/* OVERFLOW */
.overflow_hidden {
    overflow: hidden;
}
.overflow_y {
    overflow-y: auto;
}
.overflow-y {
    overflow-y: auto;
    height: auto;
}

/* Bordas */
.borda_red {
    border: 1px solid red;
}
.borda_blue {
    border: 1px solid blue;
}
.borda_green {
    border: 1px solid green;
}
.border_1 {
    border: 1px solid #cbcbcb;
}
.border_2 {
    border: 2px solid rgba(0, 0, 0, 0.312);
}

.radius_3 {
    border-radius: 3px;
}
.radius_7 {
    border-radius: 7px;
}
.radius_11 {
    border-radius: 11px;
}
.radius_15 {
    border-radius: 15px;
}
.radius_25 {
    border-radius: 25px;
}

/* Posições do display */
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}

.bottom_0 {
    bottom: 0;
}
.right_0 {
    right: 0;
}
.left_0 {
    left: 0;
}
.top_0 {
    top: 0;
}

/* Largura e Altura */
.width_100 {
    width: 100%;
}
.width_90 {
    width: 90%;
}
.width_80 {
    width: 80%;
}
.width_70 {
    width: 70%;
}
.width_60 {
    width: 60%;
}
.width_50 {
    width: 50%;
}
.width_40 {
    width: 40%;
}
.width_30 {
    width: 30%;
}
.width_20 {
    width: 20%;
}
.width_10 {
    width: 10%;
}
.width_5 {
    width: 5%;
}
.width_auto {
    width: auto;
}
.width_max_content {
    width: max-content;
}

.width_800 {
    width: 800px;
}
@media screen and (max-width: 820px) {
    .width_800 {
        width: 100%;
        margin: 20px;
    }
}

.max_width_800 {
    max-width: 800px;
}
.max_width_700 {
    max-width: 700px;
}
.max_width_600 {
    max-width: 600px;
}
.max_width_500 {
    max-width: 500px;
}
.max_width_400 {
    max-width: 400px;
}
.max_width_300 {
    max-width: 300px;
}
.max_width_200 {
    max-width: 200px;
}

.height_auto {
    height: auto;
}
.height_100 {
    height: 100%;
}
.height_90 {
    height: 90%;
}
.height_80 {
    height: 80%;
}
.height_70 {
    height: 70%;
}
.height_60 {
    height: 60%;
}
.height_50 {
    height: 50%;
}
.height_40 {
    height: 40%;
}
.height_30 {
    height: 30%;
}
.height_20 {
    height: 20%;
}
.height_10 {
    height: 10%;
}

/* Espaçamento */
.p_0 {
    padding: 0;
}
.p_10 {
    padding: 10px;
}
.p_20 {
    padding: 20px;
}
.p_30 {
    padding: 30px;
}
.p_40 {
    padding: 40px;
}
.p_50 {
    padding: 50px;
}
.p_60 {
    padding: 60px;
}
.p_70 {
    padding: 70px;
}
.p_80 {
    padding: 80px;
}
.p_90 {
    padding: 90px;
}
.p_100 {
    padding: 100px;
}
.p_150 {
    padding: 150px;
}

.pt_10 {
    padding-top: 10px;
}
.pt_20 {
    padding-top: 20px;
}
.pt_30 {
    padding-top: 30px;
}
.pt_40 {
    padding-top: 40px;
}
.pt_50 {
    padding-top: 50px;
}
.pt_60 {
    padding-top: 60px;
}
.pt_70 {
    padding-top: 70px;
}
.pt_80 {
    padding-top: 80px;
}
.pt_90 {
    padding-top: 90px;
}
.pt_100 {
    padding-top: 100px;
}

.pb_10 {
    padding-bottom: 10px;
}
.pb_20 {
    padding-bottom: 20px;
}
.pb_30 {
    padding-bottom: 30px;
}
.pb_40 {
    padding-bottom: 40px;
}
.pb_50 {
    padding-bottom: 50px;
}
.pb_60 {
    padding-bottom: 60px;
}
.pb_70 {
    padding-bottom: 70px;
}
.pb_80 {
    padding-bottom: 80px;
}
.pb_90 {
    padding-bottom: 90px;
}
.pb_100 {
    padding-bottom: 100px;
}

.pl_10 {
    padding-left: 10px;
}
.pl_20 {
    padding-left: 20px;
}
.pl_30 {
    padding-left: 30px;
}
.pl_40 {
    padding-left: 40px;
}
.pl_50 {
    padding-left: 50px;
}
.pl_60 {
    padding-left: 60px;
}
.pl_70 {
    padding-left: 70px;
}
.pl_80 {
    padding-left: 80px;
}
.pl_90 {
    padding-left: 90px;
}
.pl_100 {
    padding-left: 100px;
}

.pr_10 {
    padding-right: 10px;
}
.pr_20 {
    padding-right: 20px;
}
.pr_30 {
    padding-right: 30px;
}
.pr_40 {
    padding-right: 40px;
}
.pr_50 {
    padding-right: 50px;
}
.pr_60 {
    padding-right: 60px;
}
.pr_70 {
    padding-right: 70px;
}
.pr_80 {
    padding-right: 80px;
}
.pr_90 {
    padding-right: 90px;
}
.pr_100 {
    padding-right: 100px;
}

.mt_10 {
    margin-top: 10px;
}
.mt_20 {
    margin-top: 20px;
}
.mt_30 {
    margin-top: 30px;
}
.mt_40 {
    margin-top: 40px;
}
.mt_50 {
    margin-top: 50px;
}
.mt_60 {
    margin-top: 60px;
}
.mt_70 {
    margin-top: 70px;
}
.mt_80 {
    margin-top: 80px;
}
.mt_90 {
    margin-top: 90px;
}
.mt_100 {
    margin-top: 100px;
}

.mb_10 {
    margin-bottom: 10px;
}
.mb_20 {
    margin-bottom: 20px;
}
.mb_30 {
    margin-bottom: 30px;
}
.mb_40 {
    margin-bottom: 40px;
}
.mb_50 {
    margin-bottom: 50px;
}
.mb_60 {
    margin-bottom: 60px;
}
.mb_70 {
    margin-bottom: 70px;
}
.mb_80 {
    margin-bottom: 80px;
}
.mb_90 {
    margin-bottom: 90px;
}
.mb_100 {
    margin-bottom: 100px;
}

.ml_10 {
    margin-left: 10px;
}
.ml_20 {
    margin-left: 20px;
}
.ml_30 {
    margin-left: 30px;
}
.ml_40 {
    margin-left: 40px;
}
.ml_50 {
    margin-left: 50px;
}
.ml_60 {
    margin-left: 60px;
}
.ml_70 {
    margin-left: 70px;
}
.ml_80 {
    margin-left: 80px;
}
.ml_90 {
    margin-left: 90px;
}
.ml_100 {
    margin-left: 100px;
}

.mr_10 {
    margin-right: 10px;
}
.mr_20 {
    margin-right: 20px;
}
.mr_30 {
    margin-right: 30px;
}
.mr_40 {
    margin-right: 40px;
}
.mr_50 {
    margin-right: 50px;
}
.mr_60 {
    margin-right: 60px;
}
.mr_70 {
    margin-right: 70px;
}
.mr_80 {
    margin-right: 80px;
}
.mr_90 {
    margin-right: 90px;
}
.mr_100 {
    margin-right: 100px;
}

.m_0 {
    margin: 0;
}
.m_10 {
    margin: 10px;
}
.m_20 {
    margin: 20px;
}
.m_30 {
    margin: 30px;
}
.m_40 {
    margin: 40px;
}
.m_50 {
    margin: 50px;
}
.m_60 {
    margin: 60px;
}
.m_70 {
    margin: 70px;
}
.m_80 {
    margin: 80px;
}
.m_90 {
    margin: 90px;
}
.m_100 {
    margin: 100px;
}

/* Estilos globais */
.none {
    display: none;
}
.block {
    display: block;
}
.flex {
    display: flex;
}

.flex_opacity {
    display: flex;
    opacity: 1;
    height: 100%;
}

.align_center {
    align-items: center;
}
.align_left {
    align-items: start;
}
.align_right {
    align-items: end;
}

.justify_center {
    justify-content: center;
}
.justify_left {
    justify-content: start;
}
.justify_right {
    justify-content: end;
}
.justify_around {
    justify-content: space-around;
}
.justify_between {
    justify-content: space-between;
}
.justify_evenly {
    justify-content: space-evenly;
}

.column {
    flex-direction: column;
}

.gap_5 {
    gap: 5px;
}
.gap_10 {
    gap: 10px;
}
.gap_20 {
    gap: 20px;
}
.gap_30 {
    gap: 30px;
}
.gap_40 {
    gap: 40px;
}
.gap_50 {
    gap: 50px;
}
.gap_60 {
    gap: 60px;
}
.gap_70 {
    gap: 70px;
}
.gap_80 {
    gap: 80px;
}
.gap_90 {
    gap: 90px;
}
.gap_100 {
    gap: 100px;
}
.wrap {
    flex-wrap: wrap;
}

.flex-alinhado {
    display: flex;
    align-items: center;
    gap: 10px;
}
.flex-alinhado-centro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.flex-alinhado-column {
    display: flex;
    flex-direction: column;
    float: left;
    align-items: flex-start;
    gap: 10px;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.flex-wrap-bet {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-wrap-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Fontes */
.weight_900 {
    font-weight: 900;
}
.weight_800 {
    font-weight: 800;
}
.weight_700 {
    font-weight: 700;
}
.weight_600 {
    font-weight: 600;
}
.weight_500 {
    font-weight: 500;
}
.weight_400 {
    font-weight: 400;
}
.weight_300 {
    font-weight: 300;
}
.weight_200 {
    font-weight: 200;
}
.weight_100 {
    font-weight: 100;
}

.quebra {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.loading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading img {
    width: 40px;
}

main {
    height: 100vh;
    position: relative;
}

.shadow {
    box-shadow: 0 1px 7px #0000002a;
}

/* Página de login */
.largura_maxima_login {
    max-width: 1000px;
    margin: auto;
}
#pagina_login {
    padding: 100px 0;
}
#pagina_login aside {
    width: 50%;
}
#pagina_login a,
.cadastro_app a {
    color: var(--azul_escuro);
}
#system {
    background-color: var(--azul_escuro);
    height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.8em;
    color: white;
    font-weight: 600;
}
#login {
    width: 100%;
    padding: 20px;
    position: relative;
}
#login .paper-form label {
    font-weight: 500;
}

/* Estilos de login (paper) */
.center-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
}
.login-bg {
    position: relative;
}
.login-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background: url("/assets/img/bg-wave-green.jpg") center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
    animation: bg-pan 120s linear infinite;
    background-size: 140% auto;
}
@keyframes bg-pan {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.paper-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 24px;
    width: 33.333%;
    max-width: 960px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .paper-card {
        width: 90%;
    }
}
.paper-card.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 768px) {
    .paper-card.grid-2 {
        grid-template-columns: 1fr;
    }
}
.paper-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.paper-logo img {
    width: 50%;
    height: auto;
}
.paper-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.paper-input {
    width: 100%;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    height: 44px;
    padding: 0 12px;
    font-size: 1rem;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}
.paper-input:focus {
    outline: none;
    border-color: #a0a0a0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.paper-label {
    font-weight: 500;
    color: #333;
}
.paper-button {
    border: none;
    border-radius: 10px;
    height: 48px;
    padding: 0 18px;
    font-size: 1rem;
    transition:
        transform 120ms ease,
        box-shadow 150ms ease,
        opacity 120ms ease;
}
.paper-button--primary {
    background: #34a853;
    color: #fff;
}
.paper-button--primary:hover {
    box-shadow: 0 8px 20px rgba(52, 168, 83, 0.22);
}
.paper-button--primary:active {
    transform: scale(0.98);
}
.paper-button--full {
    width: 100%;
}
.link-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}
.link-action {
    text-decoration: none;
    font-weight: 500;
    transition:
        color 150ms ease,
        opacity 150ms ease;
}
.link-secondary {
    color: #0b57d0;
}
.link-secondary:hover {
    color: #0947ad;
}
.link-accent {
    color: #e04848;
}
.link-accent:hover {
    color: #c03939;
}
.clickable {
    transition:
        opacity 150ms ease,
        transform 120ms ease;
}
.clickable:hover {
    opacity: 0.9;
}
.clickable:active {
    transform: scale(0.98);
}
#logo_texto {
    overflow-wrap: break-word;
}
#logo_texto img {
    padding-bottom: 30px;
}
#logo_texto p {
    width: 100%;
    font-size: 1.2em;
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
#esqueci-senha {
    text-decoration: underline 1px solid var(--azul_escuro);
}

/* MENSAGENS */
.hidden {
    display: none;
}
.error {
    background-color: rgb(167, 79, 7);
    padding: 20px;
    color: white;
    border-radius: 3px;
}

/* Menu Superior */
#superior {
    position: relative;
    z-index: 100;
    display: none;
    height: 68px;
    background-color: #202020;
    color: white;
    font-size: 0.9em;
    font-weight: 900;
    z-index: 98;
}
#superior #itens {
    width: 98%;
}
#superior span a {
    text-decoration: none;
}
#pesquisa_home {
    width: auto;
    font-size: 0.8em;
}
#pesquisa_home div {
    text-transform: uppercase;
    width: 333px;
    height: 35px;
    border-radius: 11px;
    background-color: var(--azul_claro);
    border: none;
    padding-left: 20px;
    color: var(--branco);
}
#pesquisa_home input {
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
    background-color: var(--azul_claro);
    border: none;
    color: var(--branco);
}
#pesquisa_home input::placeholder {
    color: var(--azul_bem_claro);
}
#nome_inscrito_menu {
    width: auto;
    font-weight: 300;
}
#nome_inscrito_menu img {
    background: transparent;
}
.div_perfil {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: white;
}

/* ESTILOS DE BLOCOS */
.bloquinho {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 1px;
    padding: 10px;
}

/* Configurações */
#config-icone {
    display: none;
    background-color: transparent;
    border: none;
}
#config-icone:hover {
    cursor: pointer;
}
#config-detalhes {
    display: none;
    position: absolute;
    right: 0;
    width: auto;
    height: auto;
    margin: auto;
    background-color: var(--azul_escuro);
    color: white;
    font-weight: 900;
    z-index: 9999;
}
#config-detalhes a {
    color: white;
}
#config-detalhes ul {
    list-style: none;
    padding: 20px 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#sair a {
    padding: 0;
    margin: 0;
    color: rgb(255, 106, 106);
    font-weight: 900;
}
#inferior {
    display: grid;
    grid-template-columns: 250px auto;
    grid-template-rows: 1fr;
    height: 100%;
}

.busca-caixa {
    border: 1px solid #ccc;
    border-radius: 1px;
    background-color: #fff;
}
#busca-itens ul {
    background-color: #e7e7e7;
    list-style: none;
    padding: 0;
    margin: 0;
}
#busca-itens li {
    padding: 5px;
    font-weight: 900;
    border: 0.2px solid #00000023;
}
#busca-itens a {
    list-style: none;
    text-decoration: none;
    color: #000;
}
#busca-itens li:hover {
    cursor: pointer;
    background-color: #d9e3e4;
    font-weight: 900;
}

/* Menu */
#menu-total {
    height: 100%;
}
#menu_toggle {
    background: transparent;
    color: white;
    display: none;
}
#menu_toggle span {
    padding: 10px;
    background-color: transparent;
}
#menu_toggle svg {
    width: 25px;
}
#menu_toggle span {
    color: #fff;
}
.logomarca_sistema {
    width: 190px;
    border-radius: 6px;
}
.logout_menu {
    position: relative;
    z-index: 99;
    color: #fff;
    padding-left: 20px;
}
.logout_menu span {
    color: #fff;
}
#menu_principal {
    font-family: "koho";
    font-weight: 700;
    width: calc(100% - 3px);
    height: calc(100% - 30px);
    background: linear-gradient(to bottom, #101010, #000000);
    font-size: 1em;
    overflow-y: auto;
    padding-top: 30px;
}
#logomarca-grupo-login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 0;
    color: var(--branco);
}
#logomarca-grupo-login img {
    width: 180px;
}
#logomarca-grupo {
    width: 100%;
    padding: 50px 0;
    color: var(--branco);
}
#logomarca-grupo img {
    width: 130px;
}
#menu_ul {
    margin: 0;
    list-style: none;
    overflow: hidden;
    transition: 0.5s;
    height: calc(100% - 130px);
}
#menu_ul h3 {
    color: var(--azul_bem_claro);
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
}
#menu_ul.active {
    opacity: 1;
    height: 290px;
}
#menu_principal a:hover {
    text-decoration: none;
}
#menu_ul li {
    font-weight: 300;
    width: 100%;
    height: 48px;
    position: relative;
}
#menu_ul a {
    padding-left: 20px;
    text-decoration: none;
    width: calc(100% - 20px);
    height: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9em;
}
#menu_ul button:focus {
    outline: none;
}
#menu_ul button:hover {
    cursor: pointer;
    background-color: var(--azul_claro);
}
#menu_ul img {
    width: 14px;
}

/* TELA POR CIMA */
/* Estilos de Modais Unificados */
#tela_cima_produto,
#tela_cima_usuario,
#tela_cima_notifica,
#tela_cima_senha,
#tela_cima_ftp,
#tela_cima_banco_interno,
#tela_cima_dominio,
#tela_cima_cliente {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fundo-escuro {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.75); /* slate-900 with opacity */
    backdrop-filter: blur(4px);
    opacity: 0;
    display: none;
    z-index: 999;
    transition: opacity 0.3s ease;
}

/* Custom Scrollbar para Modais */
.overflow-y-auto::-webkit-scrollbar {
    width: 6px;
}
.overflow-y-auto::-webkit-scrollbar-track {
    background: transparent;
}
.overflow-y-auto::-webkit-scrollbar-thumb {
    background: #e2e8f0; /* slate-200 */
    border-radius: 10px;
}
.overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1; /* slate-300 */
}
.fechar_caixa img:hover {
    cursor: pointer;
}

/* FORMULARIO PARA SALVAR, EDITA E DELETAR */
.formulario {
    background-color: #fff;
    height: max-content;
    display: flex;
    gap: 20px;
    width: 100%;
    z-index: 10;
    font-size: 1em;
}
.input-com-icone {
    display: flex;
    align-items: center;
    width: 300px;
    height: 40px;
    border-radius: 11px;
}
.input-com-icone img {
    padding: 0 10px;
}
.input-com-icone input {
    border: none;
    width: 100%;
    height: 100%;
    font-weight: 500;
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
    padding-left: 10px;
}
.escolhas {
    border: 1px solid #9d9d9d;
    background-color: #cdcdcd;
    color: #000;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    width: max-content;
    white-space: nowrap;
}
.form_escolha form {
    display: none;
}
/* Escondendo o botão de rádio padrão */
input[type="radio"] {
    display: none; /* Esconde o rádio original */
}

/* Estilo do botão de rádio customizado */
.radio-custom {
    display: none;
}

/* Estilo quando o botão de rádio está marcado */
input[type="radio"]:checked + .radio-custom {
    border-color: #dd585a; /* Cor quando selecionado */
    background-color: #ef2525;
}

/* Texto do rótulo ao lado do rádio */
label {
    cursor: pointer;
}
.formulario section {
    display: flex;
    flex-direction: column;
}
.formulario h3 {
    font-weight: 900;
    font-size: 1.1em;
}
.formulario input[type="text"],
.formulario input[type="date"],
.formulario input[type="number"],
.formulario input[type="email"],
.formulario input[type="password"],
.input-com-icone,
.formulario textarea,
/* Dropdown Design System - Comprehensive Version */
:root {
    --select-bg: #ffffff;
    --select-border: #e2e8f0;
    --select-border-hover: #cbd5e1;
    --select-border-focus: #2aa492;
    --select-text: #334155;
    --select-placeholder: #94a3b8;
    --select-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --select-shadow-focus:
        0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --select-radius: 9999px;
    --select-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select {
    appearance: none;
    background-color: var(--select-bg);
    border: 1px solid var(--select-border);
    border-radius: var(--select-radius);
    color: var(--select-text);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.625rem 2.75rem 0.625rem 1.25rem; /* Aumentado padding direito para o ícone */
    width: auto;
    min-width: fit-content;
    max-width: 100%;
    cursor: pointer;
    box-shadow: var(--select-shadow);
    transition: var(--select-transition);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    outline: none;
    white-space: nowrap; /* Garante que o texto não quebre linha dentro do select */
}

/* Versão no estado fechado (collapsed) - já é o padrão acima */

/* Versão no estado aberto (expanded) - simulado via focus/active */
.custom-select:focus,
.custom-select[aria-expanded="true"] {
    border-color: var(--select-border-focus);
    box-shadow: var(--select-shadow-focus);
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232AA492' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 15l7-7 7 7'/%3E%3C/svg%3E");
    transform: translateY(-1px);
}

.custom-select:hover:not(:disabled) {
    border-color: var(--select-border-hover);
    background-color: #f8fafc;
}

.custom-select:disabled {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Estilização das Opções (Limitada em selects nativos, mas aplicada onde suportado) */
.custom-select option {
    background-color: #ffffff;
    color: var(--select-text);
    padding: 12px;
    font-size: 0.95rem;
}

.custom-select option:hover,
.custom-select option:focus,
.custom-select option:checked {
    background-color: #f0fdfa;
    color: #0f766e;
}

/* Breakpoints Responsivos */
@media (max-width: 768px) {
    .custom-select {
        font-size: 0.875rem;
        padding: 0.5rem 2.25rem 0.5rem 1rem;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .custom-select {
        padding: 0.5rem 2rem 0.5rem 0.875rem;
    }
}

/* Acessibilidade - Foco claro */
.custom-select:focus-visible {
    ring: 2px;
    ring-offset: 2px;
    ring-color: var(--select-border-focus);
}

.formulario select {
    border: 1px solid #c2c2c2;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 2px 2px #c2c2c2;
}
.formulario input[type="text"],
.formulario input[type="date"],
.formulario input[type="email"],
.formulario input[type="password"],
.input_padrao {
    height: 40px;
    font-weight: 700;
    font-size: 1.1em;
    padding-left: 20px;
}
.formulario textarea {
    padding: 20px;
    width: calc(100% - 44px);
    height: 200px;
}
.input_padrao {
    width: 300px;
    height: 40px;
}
.input_pequeno {
    width: 150px;
    height: 40px;
}
.input_quantidade {
    width: 80px;
    height: 40px;
}
#quantidade_estoque,
#desconto_porcent,
#estoqueq {
    padding-left: 20px;
    font-size: 1.1em;
    font-weight: 700;
}
@media screen and (max-width: 400px) {
    .input_pequeno {
        width: calc(100% - 22px);
    }
}
.formulario input[type="text"]:focus,
.formulario textarea:focus {
    outline: none;
}
.formulario input[type="text"]:hover,
.formulario textarea:hover {
    cursor: pointer;
    text-decoration: none;
}
.formulario p {
    padding: 0;
    margin: 0;
}
.titulo_label_novo {
    z-index: 90;
    width: max-content;
    font-size: 0.9em;
    font-weight: 900;
    margin-left: 10px;
    margin-bottom: -10px;
    background-color: #fff;
    padding: 0 5px;
}
.titulo_label_edit {
    font-size: 0.85em;
    font-weight: 900;
}
/* CONTENT */

#content {
    position: relative;
    width: 100%;
    padding: 20px;
    overflow-y: auto;
    height: 100vh;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 120px;
    /* padding: 30px; */
}
#parte_superior_content {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100%);
    border-bottom: 1px solid #0000002a;
    height: 6rem;
}
#parte_superior_content .titulo_menu {
    font-family: "Koho";
    font-size: 1.6em;
}
@media screen and (max-width: 420px) {
    #parte_superior_content {
        justify-content: center;
    }
}
#dados {
    background-color: var(--branco);
    overflow: hidden;
}
#content h1 {
    font-size: 1.2em;
    font-weight: 500;
    text-transform: initial;
}
#content h2 {
    font-size: 1em;
    font-weight: 400;
    text-transform: initial;
}
.lixeira {
    position: relative;
    right: 0;
    padding: 20px;
}
.group {
    display: flex;
    flex-direction: column;
    align-items: start;
}
/* TABELAS */
/* PADRONIZAÇÃO TABELAS */
.tabela_pai .titulos_home {
    padding: 20px;
    color: var(--cinza_escuro);
}
#tabela {
    background-color: #fff;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.108);
    width: 100%;
    text-transform: uppercase;
}
#tabela th {
    height: 48px;
    font-weight: 900;
    padding: 10px 20px;
    font-size: 0.8em;
    color: var(--preto);
    background-color: #b9bbbc27;
    transition: 0.3s;
}
#tabela #tab-nome {
    width: 60%;
}
#tabela #ok {
    text-align: center;
}
#tabela .contorno-produto {
    background-color: #eee;
    padding: 5px 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #00000016;
    box-shadow: 0 2px 2px #a9a9a9;
    font-weight: 900;
}
#tabela td {
    word-break: keep-all;
    padding: 5px 20px;
    color: var(--cinza_escuro);
    background-color: #fff;
    font-weight: 600;
    font-size: 0.9em;
}
#tabela td a {
    color: var(--cinza_escuro);
    text-align: left;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
    /* border: 1px solid red; */
    transition: 0.3s;
}
#tabela td a:hover {
    background-color: #4b5d6627;
}
.preco_tabela {
    width: 130px;
}
.data_tabela {
    width: 230px;
    text-transform: lowercase;
}
.nome_tabela {
    position: relative;
    text-transform: capitalize;
}
.email_tabela {
    text-transform: lowercase;
}
.descricao_tabela {
    text-transform: capitalize;
}
@media screen and (max-width: 800px) {
    #tabela {
        width: 800px;
    }
}

.destaque_tipo_cadastro {
    color: #fff;
    padding: 4px 12px;
    border-radius: 11px;
    font-size: 0.7em;
    font-weight: 600;
    width: max-content;
}
.destaque_tipo_cadastro a {
    width: 100%;
}
.produto {
    background-color: #ec892b;
    border: 1px solid #e9c85c;
}
.marca,
.em_transito {
    background-color: #9f2bec;
    border: 1px solid #bf74f1;
}
.categoria,
.cancelada {
    background-color: #f33c3fda;
    border: 1px solid #e98385da;
}
.em_andamento {
    background-color: #0274ba;
    border: 1px solid #54d3e4;
}
.finalizado {
    background-color: #02ba2a;
    border: 1px solid #54e454;
}

/* TABELAS - TIPO LISTA*/
/* PADRONIZAÇÃO LISTAS */
.tabela_pai .titulos_home {
    padding: 20px;
    color: var(--cinza_escuro);
}
#lista {
    max-width: 400px;
}
#lista th {
    height: 48px;
    font-weight: 900;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--preto);
    background-color: #4b5d6627;
    transition: 0.3s;
    text-transform: uppercase;
}
#lista #tab-nome {
    width: 60%;
}
#lista #ok {
    text-align: center;
}
#lista .contorno-produto {
    background-color: #eee;
    padding: 5px 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #00000016;
    box-shadow: 0 2px 2px #a9a9a9;
    font-weight: 900;
}
#lista td {
    padding: 7px 20px;
    color: var(--cinza_escuro);
    background-color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    border-top: 1px solid #00000016;
}
#lista tr td a {
    color: var(--cinza_escuro);
    text-align: center;
    text-decoration: none;
}

/* PAGINAÇÃO */
.paginacao {
    text-align: center;
}
#pagination {
    color: #000000;
    padding: 0 5px;
}
.paginacao .pagina-atual {
    font-weight: 900;
    font-size: 1.2em;
}

/* INPUTS */
.input_pesquisa {
    border: 1px solid #00000034;
    height: 40px;
    border-radius: 5px;
    padding-left: 20px;
}
.input_pesquisa:focus {
    outline: 2px solid #093a4a;
}

/* RESPONSIVIDADE */

@media screen and (max-width: 1100px) {
    .formulario,
    .right {
        flex-direction: column;
    }
    /* .formulario div{
        width: 100%;
    } */
}

@media screen and (max-width: 800px) {
    .largura_maxima_login {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .largura_maxima_cadastro {
        gap: 20px;
        width: 100%;
    }
    #pagina_login {
        height: auto;
        padding: 30px 0;
    }
    #pagina_login aside {
        width: 100%;
    }
    #logo_texto {
        margin-top: 30px;
        padding: 0;
        width: 100%;
        gap: 0;
    }
    #login {
        text-align: center;
        justify-content: center;
    }
    .input-com-icone {
        width: 100%;
    }
    .gestor {
        flex-direction: column-reverse;
    }
    .cadastro_app form {
        width: 100%;
    }
    .apresentacao_app {
        align-items: center;
        text-align: left;
        font-size: 1em;
    }
    .cadastro_app {
        margin-top: 30px;
    }
    .cadastro_app h1 {
        font-size: 2em;
    }
    #superior {
        height: auto;
        display: block;
    }
    .superior_menu {
        display: none;
    }
    #pesquisa_home,
    #nome_inscrito_menu {
        display: none;
    }
    #itens {
        display: flex;
    }
    #inferior {
        height: calc(100% - 68px);
        display: block; /* muda para o padrão de bloco */
        height: auto; /* define a altura automática */
        grid-template-columns: auto; /* remove a definição de colunas */
        grid-template-rows: auto auto; /* define linhas automáticas */
    }
    main {
        overflow-y: auto;
    }
    #menu_toggle {
        display: flex;
    }
    #perfil {
        width: 100%;
        height: 68px;
        justify-content: space-between;
    }
    #logomarca-grupo {
        display: none;
        background-color: #000;
    }
    #logo_superior img {
        width: 100px;
    }
    #menu_principal {
        padding: 0;
        width: auto;
        height: auto;
        border: none;
    }
    #menu_ul {
        padding: 0;
        opacity: 0;
        height: 0;
        transition:
            opacity 0.5s,
            height 1s;
        transition: 0.5s;
    }
    #menu_ul li {
        white-space: nowrap;
        width: 100%;
    }
    .ativo,
    .inativo {
        padding-left: 2%;
        border-radius: 0;
    }
    #titles_menu h2 {
        margin: 0;
    }
    .opcoes {
        font-size: 0.9em;
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .endereco_pedido,
    .termosdeuso,
    .opcoes {
        font-size: 0.9em;
        width: 100%;
    }
    .cardapio {
        font-size: 0.8em;
    }
    #precos_cardapio {
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    #login {
        display: block;
    }
    #logo_texto img,
    .apresentacao_app img {
        width: 150px;
    }
    #logo_texto p {
        font-size: 1em;
    }

    #config-detalhes {
        margin-top: 50px;
    }
    #menu_principal {
        font-size: 0.9em;
    }

    /* Superior - Menu - Inferior */
    #superior {
        position: fixed;
        top: 0;
        width: 100%;
    }
    #inferior {
        margin-top: 68px;
    }
    #posts {
        width: 90%;
        margin: auto;
    }
    #tela_cima {
        position: absolute;
        width: 100%;
        top: 10px;
        left: 0;
        transform: translate(0%, 0%);
    }
    .fazer_pedido {
        width: 100%;
    }
    #termos span {
        font-size: 0.7em;
    }
}
@media screen and (max-width: 460px) {
    #sucesso,
    #error {
        width: 90%;
        min-height: 70px;
    }
    .input_padrao {
        width: 100%;
    }
}
@media screen and (max-width: 340px) {
    #botoes-acao-venda #botao-azul {
        margin-bottom: 15px;
    }
    .lixeira {
        position: relative;
        bottom: 0;
        right: 0;
        padding: 20px;
    }
    .group {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .box_card_item {
        flex-direction: column-reverse;
        gap: 10px;
    }
    .ico {
        position: relative;
    }
}
@media screen and (max-width: 200px) {
    body {
        font-size: 0.6em;
    }
    #logo_texto img,
    .apresentacao_app img {
        width: 60%;
    }

    #pagina_login,
    .gestor_cloud {
        overflow-y: auto;
    }
}
@media screen and (max-width: 100px) {
    #login {
        display: none;
    }
}

/* Nova versão do estilo */
.inputs {
    height: 40px;
    border: 2px solid #bababa00;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 0.9em;
    box-shadow: 0 2px 2px #bababa;
}
.inputs:focus {
    border-color: #be0e0e;
    outline: none; /* Remove o contorno padrão do navegador */
}
.titulo_form {
    background-color: #fff;
    border: 1px solid #bababa;
    padding: 10px 20px;
    text-align: center;
}
.esboco_app {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    height: max-content;
    margin: auto;
    padding: 20px;
}
.chamada_adm {
    background-color: #fff;
    border: 1px solid #bababa;
    padding: 20px;
}
.esboco_app form span {
    background-color: #fff;
    margin-left: 10px;
    margin-bottom: -10px;
    padding: 0 10px;
    width: max-content;
    z-index: 1;
    font-weight: 700;
    font-size: 1em;
}
.esboco_app p {
    font-size: 1.1em;
    line-height: 28px;
}
.esboco_app h2 {
    font-size: 1.3em;
}
.esboco_app button,
.esboco_app a {
    background-color: #232323;
    text-align: center;
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    padding: 10px 0;
    text-decoration: none;
    width: 100%;
    border: none;
    border-radius: 7px;
    transition: 0.2s;
}
.esboco_app button:hover,
.esboco_app a:hover {
    cursor: pointer;
    background-color: #000000;
}

/* Mensagens Notificacoes */
/* Mensagem inicial fora da tela à direita */
#mensagens {
    position: fixed;
    z-index: 99;
    top: 100px;
    right: -100%;
    transform: translateY(-50%);
    background-color: #1fa265;
    color: #fff;
    border: 1px solid #83c0a4;
    box-shadow: 0 2px 2px #a9a9a9;
    width: auto;
    height: auto;
    padding: 15px;
    font-weight: 600;
    border-radius: 1px;
    transition: right 0.4s ease-in-out;
}

/* Mensagem movendo-se para o centro */
#mensagens.show {
    right: 50%;
    transform: translate(50%, -50%);
}
/* Mensagem inicial fora da tela à direita */
#mensagens_erro {
    position: fixed;
    z-index: 99;
    top: 100px;
    right: -100%;
    transform: translateY(-50%);
    background-color: #dd585a;
    color: #fff;
    border: 1px solid #dd585aad;
    box-shadow: 0 2px 2px #a9a9a9;
    width: auto;
    height: auto;
    padding: 15px;
    font-weight: 600;
    border-radius: 1px;
    transition: right 0.4s ease-in-out;
}

/* Mensagem movendo-se para o centro */
#mensagens_erro.show {
    right: 50%;
    transform: translate(50%, -50%);
}

/* Página de produtos */
.titulo_produto {
    font-family: "Homemade Apple", cursive;
    font-size: 1.8em;
    font-weight: 900;
    margin-bottom: -15px;
}
@media screen and (max-width: 1000px) {
    .divisao_produtos,
    .divisao_marcas,
    .divisao_categorias {
        flex-direction: column;
    }
    .divisao_produtos .max_width_400 {
        width: 100%; /* Aplicar o comportamento da classe .width_100 */
        max-width: none; /* Remove o limite de 400px */
    }
}

/* Página de pedidos */
.box_dados {
    padding: 20px;
    border-radius: 11px;
    width: 200px;
    border: 2px solid;
}
.box_dados:hover {
    border-color: #b27bec;
}
.percent_periodo {
    font-size: 0.8em;
}
.valor_periodo {
    font-size: 1.6em;
}
.descricao_valor_periodo {
    font-size: 0.9em;
}
.pesquisa_tabela {
    width: calc(100% - 60px);
}
.lista_da_compra {
    padding: 0;
    list-style: none;
}
.acoes_pedido span {
    padding: 4px 12px;
    color: #fff;
    font-size: 0.8em;
    border-radius: 11px;
}
.ativar_em_andamento {
    background-color: #0274ba;
    border: 1px solid #54d3e4;
}
.acao button {
    font-size: 0.8em;
    color: #fff;
    background-color: #222;
    padding: 4px 16px;
    border: 1px solid #000;
    white-space: nowrap;
    transition: 0.2s;
    border-radius: 11px;
}
.acao button:hover {
    cursor: pointer;
    background-color: #cd0f0f;
}

/* #filtro, #relacionados{
    border: 2px solid red;
} */
#filtro {
    width: 100%;
    display: flex;
    justify-content: start;
}
#categoria_busca {
    max-width: 300px;
    font-size: 0.8em;
    background-color: #fff;
}
.active-link {
    border-right: #be0e0e 5px solid;
}

/* Pagina clientes */
.caixa_pedido {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #cbcbcb;
    width: max-content;
    padding: 20px 40px;
    font-size: 1.8em;
}
#verMaisPedidos,
#verMaisClientes,
#verMais {
    background-color: #093a4a;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 5px 20px;
    margin: 20px 0;
    font-size: 0.8em;
    transition: 0.3s;
}
#verMaisPedidos:hover,
#verMaisClientes:hover,
#verMais:hover {
    cursor: pointer;
    background-color: #0274ba;
}

/* Personaliza gerais */

::selection {
    background-color: #ff400071;
}

/* Personaliza <a> */
.decoration_none {
    text-decoration: none;
}
/* Personaliza background */
.background_azul_escuro {
    background-color: #03242e;
}
.background_laranja {
    background-color: #ff4000;
}
.background_fundo_semi_branco {
    background-color: #fbfbfb;
}
.background_fundo_branco {
    background-color: #fff;
}

/* Personaliza color */
.color_white {
    color: #fff;
}
.color_azul_escuro {
    color: #03242e;
}
.color_verde {
    color: #02ba2a;
}

/* Personaliza borda */
.border_cinza {
    border: 1px solid #00000020;
}
.color_azul_escuro {
    color: #03242e;
}

/* Personaliza botoes */
.btn_medio_sistema {
    font-family: "barlow";
    font-weight: 500;
    padding: 7px 15px;
    font-size: 0.8em;
    border-radius: 4px;
    transition: 0.3s;
}
.btn_medio_sistema:hover {
    cursor: pointer;
}
.btn_estilo_um {
    background-color: #0b4252;
    color: #fff;
    border: 1px solid #b27bec;
}

/* Cadastro Membro */
.crie_uma_conta {
    text-align: center;
    padding: 50px 0;
    font-size: 1.6em;
}
.img_cadastro_membro {
    height: 500px;
}
.leia_privacidade {
    padding: 150px 20px;
    text-align: center;
}
@media screen and (max-width: 700px) {
    .img_cadastro_membro {
        position: relative;
        width: calc(100% - 20px);
        height: auto;
    }
    .form_cadastro_membro {
        width: calc(100% - 20px);
        display: flex;
        flex-direction: column-reverse;
    }
    .cadastrar_membro {
        justify-content: center;
    }
}

/* Novo formulario */
.novo_formulario {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 40px;
    z-index: 2;
    position: relative;
}
.novo_formulario aside {
    display: flex;
    flex-direction: column;
    width: max-content;
}
.label_padronizado_medio {
    margin-left: 20px;
    margin-bottom: -8px;
    padding: 0 10px;
    z-index: 1;
    font-weight: 700;
    font-size: 0.9em;
    background-color: #fbfbfb;
    width: max-content;
}
.input_padronizado_medio {
    width: calc(300px - 40px);
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 20px;
    border: 1px solid #00000017;
    box-shadow: 0 4px 4px #0000001e;
}
@media screen and (max-width: 350px) {
    .input_padronizado_medio {
        width: auto;
    }
}
.input_padronizado_medio:focus {
    outline-color: #ff4000;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}
