:root {
    --cor-primaria: #0071F1;
    --cor-texto-cinza: #737791;
    --cor-texto-cinza-escuro: #484b61;
    --cor-bg-clara: #E3FCFF;
    --cor-destaque: #0071F1;
    --cor-verde: #25d366;
    --cor-laranja: #ff5100;
    --cor-borda: #273e7d2e;
    --cor-cinza-claro: #273e7d2e;
}


body {
    font-family: "Rubik", sans-serif !important;
    padding: 12px;
}

/* Form group — padrão global */
.form-group input {
    padding: 18px 16px !important;
    font-size: 16px !important;
}

/* Tabler Icons — tamanho padrão */
.ti {
    font-size: 20px;
}


.btn,
.btn-large,
.btn-small,
.btn-floating,
.btn:focus,
.btn-large:focus,
.btn-small:focus {
    background-color: var(--cor-primaria) !important;
    color: #fff !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 4px;
    transition: background 0.2s;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 700;
    font-size: 16px;
}

.btn-flat,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
[role="button"] {
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn-large,
.btn-large:hover,
.btn-large:focus,
.btn-large:active,
.btn-small,
.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-floating,
.btn-floating:hover,
.btn-floating:focus,
.btn-floating:active,
.btn-flat,
.btn-flat:hover,
.btn-flat:focus,
.btn-flat:active,
button,
button:hover,
button:focus,
button:active,
input[type="button"],
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="submit"],
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="reset"],
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="reset"]:active,
[role="button"],
[role="button"]:hover,
[role="button"]:focus,
[role="button"]:active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* NOVOS ESTILOS DE INPUT - SEM ANIMAÇÃO */
/* Remover estilos do Materialize para inputs e usar estilo customizado */
.input-field {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 18px;
    padding: 0 !important;
    padding-top: 8px;
}

.input-field label {
    color: var(--cor-texto-cinza-escuro) !important;
    position: absolute !important;
    top: -24px !important;
    left: 0 !important;
    font-size: 14px !important;
    font-weight: 500;
    margin-bottom: 0;
    display: block;
    transform: none !important;
    pointer-events: auto;
}

.input-field label.active {
    font-size: 14px !important;
    transform: none !important;
    color: var(--cor-texto-cinza-escuro) !important;
    top: -24px !important;
}

/* Reset completo dos inputs do Materialize */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search],
input[type=file],
textarea {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: normal !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    width: 100% !important;
    font-size: 16px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    box-sizing: border-box !important;
}

/* Input file específico */
input[type=file] {
    padding: 8px 12px !important;
    cursor: pointer !important;
}

/* Foco nos inputs - sem animação de label */
input[type=text]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=date]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=search]:focus:not([readonly]),
input[type=file]:focus:not([readonly]),
textarea:focus:not([readonly]) {
    border: 1px solid var(--cor-primaria) !important;
    box-shadow: 0 0 0 3px rgba(0, 113, 241, 0.1) !important;
    outline: none !important;
}

/* Label em foco - NÃO muda de cor */
.input-field input:focus+label,
.input-field textarea:focus+label {
    color: var(--cor-texto-cinza-escuro) !important;
}

/* Textarea específico */
textarea {
    min-height: 100px !important;
    resize: vertical !important;
    font-family: inherit !important;
}

/* Select customizado */
select {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    width: 100% !important;
    font-size: 16px !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 12px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px !important;
}

select:focus {
    border: 2px solid var(--cor-primaria) !important;
    box-shadow: 0 0 0 3px rgba(0, 113, 241, 0.1) !important;
    outline: none !important;
}

/* Placeholder estilo */
::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

/* Remover validação visual do Materialize */
input.valid,
input.invalid {
    border-bottom: none !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
}

/* File input wrapper customizado (para melhor aparência) */
.file-field .file-path-wrapper {
    overflow: hidden;
}

.file-field .file-path-wrapper .file-path {
    width: 100% !important;
}

/* Helper text */
.helper-text {
    color: var(--cor-texto-cinza);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* RADIO BUTTONS - ESTILO BOTÃO */
.input-field label:has(input[type="radio"]) {
    position: static !important;
    top: auto !important;
    transform: none !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    margin: 8px 0 !important;
    border: 1px solid var(--cor-primaria) !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: var(--cor-primaria) !important;
    cursor: pointer !important;
    display: block !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
}

.input-field label:has(input[type="radio"]:checked) {
    background: var(--cor-primaria) !important;
    color: #fff !important;
}

.input-field label:has(input[type="radio"]):hover {
    background: #f0f8ff !important;
}

.input-field label:has(input[type="radio"]:checked):hover {
    background: var(--cor-primaria) !important;
    opacity: 0.9 !important;
}

[type="radio"] {
    display: none !important;
}

[type="radio"]+span {
    position: static !important;
    padding: 0 !important;
    cursor: pointer !important;
    display: block !important;
    margin: 0 !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

[type="radio"]+span:before,
[type="radio"]+span:after {
    display: none !important;
}

/* Checkbox e radio - cor primária */
[type="checkbox"].filled-in:checked+span:not(.lever):after,
[type="radio"].with-gap:checked+span:before,
.switch label input[type=checkbox]:checked+.lever {
    border-color: var(--cor-primaria) !important;
    background-color: var(--cor-primaria) !important;
}

/* Checkmark branco dentro do filled-in */
[type="checkbox"].filled-in:checked+span:not(.lever):before {
    border-right-color: #fff !important;
    border-bottom-color: #fff !important;
}

/* Checkbox normal (não filled-in) */
[type="checkbox"]:checked+span:not(.lever):before {
    border-right-color: var(--cor-primaria) !important;
    border-bottom-color: var(--cor-primaria) !important;
}


.blue-text.text-darken-2 {
    color: #ffffff !important;
}

/* Botão flutuante azul */
.btn-floating,
.btn-floating:focus {
    background-color: var(--cor-primaria) !important;
}

.white-text {
    color: #fff !important;
}



.orange {
    background-color: var(--cor-laranja) !important;
}



.btn:hover,
.btn-large:hover,
.btn-small:hover,
.btn-floating:hover {
    background-color: #005bb5 !important;
    /* tom mais escuro para hover */
}



.btn-full {
    width: 100% !important;
}

@keyframes scuthaSkeletonPulse {
    0% {
        background-position: 180% 0;
    }

    100% {
        background-position: -180% 0;
    }
}

.scutha-skeleton {
    color: transparent !important;
    background: linear-gradient(90deg, #eef2f7 0%, #f8fafc 45%, #eef2f7 90%) !important;
    background-size: 220% 100% !important;
    border-radius: 8px !important;
    animation: scuthaSkeletonPulse 1.15s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
}

.scutha-skeleton-value {
    display: inline-block !important;
    width: 64px;
    height: 38px;
    min-width: 64px;
    line-height: 1 !important;
}

.scutha-skeleton-text {
    display: inline-block !important;
    width: 160px;
    height: 14px;
    min-height: 14px;
}

.scutha-skeleton-media {
    display: block !important;
    width: 100%;
    min-height: 92px;
}

.is-loading [data-home-metric].scutha-skeleton {
    color: transparent !important;
}

.dashboard-content.is-loading .dc__value,
.dashboard-content.is-loading .dc__prev {
    color: transparent !important;
    display: inline-block;
    min-width: 54px;
    min-height: 24px;
    background: linear-gradient(90deg, #eef2f7 0%, #f8fafc 45%, #eef2f7 90%) !important;
    background-size: 220% 100% !important;
    border-radius: 8px !important;
    animation: scuthaSkeletonPulse 1.15s ease-in-out infinite;
}



.topo {
    float: left;
    width: 100%;
    margin-top: 0px;
    position: fixed;
    background: #fff;
    margin-bottom: 0;
    z-index: 99;
    top: 0;
    padding: 15px 0 16px 0;
}

.topo .logo {
    width: 180px;
}

.topo h2 {
    font-size: 24px;
    font-weight: 700;
    float: left;
    width: 100%;
    margin: 6px 0 4px 0;
    line-height: 1.15;
}

.topo h4 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.35;
}

.topo .pro-account-col {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-left: 0;
    padding-right: 28px;
}

.pro-account-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    max-width: 260px;
    min-height: 48px;
    padding: 4px 0;
    color: #1f2937;
    text-decoration: none;
}

.pro-account-trigger:hover,
.pro-account-trigger:focus {
    color: #1f2937;
}

.pro-account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef6ff;
    color: var(--cor-primaria);
}

.pro-account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-account-avatar i {
    font-size: 22px;
}

.pro-account-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 170px;
    text-align: left;
}

.pro-account-info strong {
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-account-info small {
    color: #667085;
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-account-caret {
    color: #667085;
    font-size: 16px;
    flex: 0 0 auto;
}

.pro-account-dropdown {
    display: none;
    position: absolute;
    top: 56px;
    right: 28px;
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
    height: auto !important;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    z-index: 120;
    opacity: 1 !important;
    transform: none !important;
}

.pro-account-dropdown li {
    min-height: 40px !important;
    line-height: 1 !important;
}

.pro-account-dropdown li>a,
.pro-account-dropdown .pro-account-logout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 40px !important;
    padding: 0 14px !important;
    border: 0;
    background: #fff;
    color: #1f2937 !important;
    font: inherit;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: left;
    cursor: pointer;
}

.pro-account-dropdown .divider {
    min-height: 1px !important;
    height: 1px !important;
    margin: 0 !important;
}

.pro-account-dropdown li>a:hover,
.pro-account-dropdown .pro-account-logout:hover {
    background: #f5f9ff;
    color: var(--cor-primaria);
}

.pro-account-dropdown i {
    color: currentColor;
    font-size: 17px;
    flex: 0 0 auto;
}

.topo .pro-account-col.is-open .pro-account-dropdown {
    display: block !important;
}


.show-mobile {
    display: none;
}


.conteudo-interno h2 {
    font-size: 22px;
    font-weight: 400;
    margin: 10px 0 20px 0;
}



.bt-cadastrar {
    width: 100%;
    background: var(--cor-verde) !important;
}



.menu-lateral {
    margin-top: 80px;
    float: left;
}

.menu-lateral a {
    background: #fff;
    width: 100%;
    float: left;
    color: var(--cor-texto-cinza);
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
}

.menu-lateral a.active,
.menu-lateral a.active:hover {
    background-color: var(--cor-primaria) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 13px;
}

.menu-lateral a.active i,
.menu-lateral a.active .menu-nr1-arrow {
    color: #fff !important;
}

.menu-lateral a i {
    font-size: 21px;
    float: left;
    margin: 0 12px 0 0;
}

.page-dashboard .link-inicio {
    background: var(--cor-primaria);
    color: #fff;
}

.page-home .link-home {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}


.page-colabs .link-colaboradores,
.page-colaboradores .link-colaboradores {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-professionals .link-profissionais,
.page-profissionais .link-profissionais,
.page-detalhes-prof .link-profissionais {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-empresas .link-empresas,
.page-companys .link-empresas,
.page-detalhes-empresa .link-empresas {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-appointments .link-agendamentos,
.page-appointments .link-appointments,
.page-select-professional .link-appointments,
.page-new-appointment .link-appointments,
.page-process-appointment .link-appointments,
.page-atendimentos .link-atendimentos,
.page-creditos .link-atendimentos {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-financeiro .link-financeiro {
    background-color: var(--cor-primaria);
    color: #fff;
    font-weight: 700;
    padding: 13px;
}

.page-financeiro .link-financeiro i {
    color: #fff !important;
}

.page-termometro .link-termometro {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-dicas .link-dicas {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-servicos .link-servicos {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-nr1-home .link-nr1-home {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-programas .link-programas {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-indicadores .link-indicadores {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-configuracoes .link-configuracoes {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-suporte .link-suporte {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-plantao .link-plantao,
.page-plantao-config .link-plantoes,
.page-new-plantao .link-plantoes {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-mood .link-mood {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-health-tips .link-health-tips {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-quiz .link-quiz {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-dependentes .link-dependentes,
.page-new-dependente .link-dependentes,
.page-edit-dependente .link-dependentes {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-support .link-support {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-settings .link-settings {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-dashboard .link-dash {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-push-notifications .link-push {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-marketing .link-marketing {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-materias .link-materias {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}

.page-suporte .link-suporte {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}



.page-settings .link-configuracoes {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 13px;
}


.tabs {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    height: 48px;
    width: 100%;
    background-color: #fff;
    margin: 0 auto;
    white-space: nowrap;
    margin: 0 0 24px 0 !important;
}


.tabs .tab {
    display: inline-block;
    text-align: center;
    line-height: 34px;
    height: 33px;
    padding: 0;
    margin: 0 4px 0 0;
    text-transform: capitalize !important;
}

.tabs .tab a {
    color: var(--cor-primaria);
    background-color: transparent !important;
    border-radius: 8px !important;
    border: none !important;
}

.tabs .tab a:hover {
    background-color: #e7f2ff !important;
    color: var(--cor-primaria);
    border-radius: 8px !important;
}

.tabs .tab a.active,
.tabs .tab a:focus {
    background-color: var(--cor-primaria) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.scutha-icon-row {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 22px 0;
    box-sizing: border-box;
}

.scutha-icon-row__main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
}

.scutha-icon-row__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--cor-primaria);
    background: #eef6ff;
}

.scutha-icon-row__icon i {
    font-size: 24px;
    line-height: 1;
}

.scutha-icon-row__content {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.scutha-icon-row__title {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.scutha-icon-row__text {
    color: #475569;
    font-size: 14px;
    line-height: 1.35;
    white-space: nowrap;
}

.scutha-icon-row__text strong {
    color: var(--cor-primaria);
    font-weight: 700;
}

.scutha-icon-row__meta {
    color: #64748b;
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
}

.scutha-icon-row__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.scutha-icon-row__badge--success {
    background: #dcfce7;
    color: #166534;
}

.scutha-icon-row__badge--notice {
    background: #e0f2fe;
    color: #075985;
}

.scutha-icon-row__badge--warning {
    background: #ffedd5;
    color: #9a3412;
}

.scutha-icon-row__badge--danger {
    background: #fee2e2;
    color: #b91c1c;
}

.scutha-icon-row__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.scutha-icon-row__button {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.scutha-icon-row__button i {
    margin: 0 !important;
    font-size: 20px;
}

.scutha-icon-row--message {
    margin-bottom: 28px;
}

.scutha-icon-row--message .scutha-icon-row__content {
    display: block;
}

.scutha-icon-row--message .scutha-icon-row__text {
    font-size: 15px;
}

.scutha-icon-row__summary {
    font-weight: 700;
}

.scutha-icon-row__summary--success {
    color: #15803d;
}

.scutha-icon-row__summary--notice {
    color: #075985;
}

.scutha-icon-row__summary--warning {
    color: #9a3412;
}

.scutha-icon-row__summary--danger {
    color: #b91c1c;
}

.appointments-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 0 20px 0;
}

.appointments-create-btn {
    min-width: 280px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.appointments-create-btn i {
    margin: 0 !important;
    font-size: 20px;
}

.appointment-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px !important;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    margin-bottom: 18px;
}

.appointment-card__photo-wrap {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e5e7eb;
}

.appointment-card__photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.appointment-card__body {
    min-width: 0;
}

.appointment-card__header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.appointment-card__identity {
    min-width: 0;
}

.appointment-card__identity h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    line-height: 1.25;
    color: #111827;
    font-weight: 700;
}

.appointment-card__type {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 2px 10px;
    border-radius: 999px;
    background: #e8f3ff;
    color: var(--cor-primaria);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.appointment-card__doc {
    font-size: 13px;
    color: #94a3b8;
}

.appointment-card__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.appointment-card__details div {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 10px 12px;
}

.appointment-card__details span,
.appointment-card__status-row>span {
    display: block;
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
}

.appointment-card__details strong {
    display: block;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.appointment-card__status-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.appointment-card__status-row>span {
    margin: 0;
}

.appointment-card__status {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
}

.appointment-card__status--blue {
    background: var(--cor-primaria);
}

.appointment-card__status--green {
    background: #16a34a;
}

.appointment-card__status--red {
    background: #ef4444;
}

.appointment-card__status--purple {
    background: #7c3aed;
}

.appointment-card__status--grey {
    background: #94a3b8;
}

.appointment-card__actions {
    width: 190px;
    flex: 0 0 190px;
    text-align: right;
}

.appointment-card__access,
.appointment-card__cancel {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.appointment-card__cancel {
    margin-top: 8px;
}

.appointment-card__access i,
.appointment-card__cancel i {
    margin: 0 !important;
}

.appointment-card__hint {
    margin-top: 7px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
}

@media (max-width: 900px) {
    .scutha-icon-row {
        align-items: stretch;
        flex-direction: column;
    }

    .scutha-icon-row__actions,
    .scutha-icon-row__button {
        width: 100%;
    }

    .scutha-icon-row__content {
        gap: 8px;
    }

    .appointments-toolbar {
        justify-content: stretch;
    }

    .appointments-create-btn {
        width: 100%;
        min-width: 0;
    }

    .appointment-card {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }

    .appointment-card__photo-wrap {
        width: 76px;
        height: 76px;
    }

    .appointment-card__header {
        flex-direction: column;
        gap: 14px;
    }

    .appointment-card__actions {
        width: 100%;
        flex-basis: auto;
        text-align: left;
    }

    .appointment-card__details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {

    .scutha-icon-row,
    .appointment-card {
        border-radius: 12px;
    }

    .appointment-card {
        grid-template-columns: 1fr;
    }

    .appointment-card__photo-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

.btn.active,
.btn.is-active,
.btn-large.active,
.btn-large.is-active,
.btn-small.active,
.btn-small.is-active,
button.active,
button.is-active {
    font-weight: 700 !important;
}


.tabs .indicator {
    background-color: var(--cor-primaria);
    display: none;
}

.direita {
    float: right;
}



.white-text {
    color: #fff !important;
}


.toaster {
    color: #fff !important;
}

/* ================================
   Toast customizado global
   ================================ */
#toast-container {
    top: auto !important;
    bottom: 7% !important;
    right: 50% !important;
    transform: translateX(50%);
}

.toast {
    border-radius: 6px !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px;
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    box-shadow: none !important;
    min-width: 300px;
    max-width: 480px;
    border: none !important;
}

.toast.toast-error {
    background: #fef2f2 !important;
    color: #b91c1c !important;
}

.toast.toast-warning {
    background: #fffbeb !important;
    color: #92400e !important;
}

.toast.toast-success {
    background: #f0fdf4 !important;
    color: #166534 !important;
}

.toast .toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast.toast-error .toast-icon {
    color: #dc2626;
}

.toast.toast-warning .toast-icon {
    color: #f59e0b;
}

.toast.toast-success .toast-icon {
    color: #22c55e;
}





#preloader {
    overflow: hidden;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 9999999999999999;
    color: black;
}

#preloader .jumper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #0071f1;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 0.5s linear infinite;

    /* Centralizando o loader */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

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


.apareceLoader {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.desapareceLoader {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
}


.card {
    position: relative;
    margin: .5rem 0 1rem 0;
    background-color: #fff;
    -webkit-transition: -webkit-box-shadow .25s;
    transition: -webkit-box-shadow .25s;
    transition: box-shadow .25s;
    transition: box-shadow .25s, -webkit-box-shadow .25s;
    border-radius: 12px;
    border: 1px solid #273e7d2e;
    box-shadow: none;
}

.page-content .card,
.page-content .info-card,
.page-content .table-card,
.page-content .dc,
.page-content .empresa-panel,
.page-content .canal-card,
.page-content .plantao-card,
.page-content .dash-chart-card {
    background: #fff;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    box-shadow: none !important;
}

.page-availability .card-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 17px !important;
    float: left;
    width: 100%;
}

.btn-outline {
    background-color: #ffff !important;
    color: var(--cor-primaria) !important;
    border: 1px solid var(--cor-primaria) !important;
    margin-bottom: 10px !important;
    float: left;
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--cor-primaria) !important;
    color: #fff !important;

}

.top-notifications-user {
    width: 340px;
    float: right;
    margin: 0 20px 0 0;
}

.top-notifications-user .btn-notifications {
    float: left;
    margin: 0 10px 0 0;
}

.top-notifications-user img {
    float: left;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    margin: 0 18px 0 0;
}

.btn-notifications {
    border: 1px solid var(--cor-primaria);
    padding: 10px;
    background-color: #fff;
    border-radius: 500px;
}

.top-notifications-user .user-name {
    float: left;
    width: 169px;
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 0 -5px;
}

.top-notifications-user .user-role {
    clear: both;
    float: left;
    width: 210px;
    margin: -22px 0 0 60px;
    /* background: red; */
}

.page-content {
    width: calc(100% - 48px);
    max-width: 1140px;
    min-height: calc(100vh - 80px);
    margin: 80px auto;
    padding-bottom: 72px;
    box-sizing: border-box;
}

.page-content form .btn {
    width: 100%;
}

.form-page {
    width: 100%;
}

.form-section .row {
    margin-bottom: 8px;
}

.form-section h5 {
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 18px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-bottom: 16px;
}

.form-actions .btn,
.form-actions .btn-flat {
    width: auto;
    min-width: 140px;
}

.professional-edit-form {
    max-width: 980px;
}

.professional-edit-form .form-section {
    padding: 28px;
}

.professional-edit-form .row {
    margin-left: -10px;
    margin-right: -10px;
}

.professional-edit-form .row .col {
    padding-left: 10px;
    padding-right: 10px;
}

.professional-edit-form .input-field {
    margin-bottom: 26px;
}

.page-content .esquerda {
    width: 760px;
    max-width: 100%;
    float: left;
}

.page-content .direita {
    width: 360px;
    max-width: 100%;
    float: right;
}

.box-primario {
    float: left;
    width: calc(50% - 9px);
    height: 254px;
    padding: 24px;
    border-radius: 10px;
    background: var(--cor-primaria);
    box-sizing: border-box;
}

.box-primario h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    margin-bottom: 17px;
}


.box-primario a {
    width: 100%;
    text-align: center;
    background: var(--cor-verde) !important;
    margin-top: auto;
}

.box-primario p {
    color: #fff;
}

.box-primario a:hover {
    background: #1ebd4b !important;
}

.box-plantao {
    float: right;
    width: calc(50% - 9px);
    height: 254px;
    background: var(--cor-bg-clara);
    padding: 24px;
    border-radius: 10px;
    margin: 0;
    box-sizing: border-box;
}

.box-plantao h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--cor-primaria);
    margin: 0;
    margin-bottom: 17px;
}

.box-plantao a {
    margin-top: auto;
}

.box-home-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    cursor: pointer;
}

.home-action-icon {
    width: 34px;
    height: 34px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 34px;
    background: transparent !important;
}

.home-action-icon i {
    font-size: 34px;
    line-height: 1;
}

.home-action-icon-primary {
    color: #fff;
}

.home-action-icon-light {
    color: var(--cor-primaria);
}

.home-action-copy {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.home-action-copy a {
    align-self: stretch;
}

.menu-lateral a.link-locked {
    opacity: 0.58;
}

.menu-lateral a.link-locked i {
    color: inherit;
}

@media (max-width: 768px) {

    .box-primario,
    .box-plantao {
        float: none;
        width: 100%;
        height: auto;
        min-height: 254px;
        margin: 0 0 16px 0;
    }
}



.blog-post-full {
    width: 850px;
    margin: 0 auto;
    margin-top: 80px;
}


.blog-post-full h2 {
    font-size: 30px;
    font-weight: 500;
}

.blog-post-full img {
    display: block;
    margin-bottom: 5px;
    clear: both;
    width: 100%;
    height: auto;
    border-radius: 25px;
}


.blog-post-full p {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 31px;
}


.top-blog {
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid #e1e1e1;
    float: left;
    width: 100%;
    background: #fff;
}

.box-dicas-saude {
    border: 1px solid #273e7d2e;
    float: left;
    border-radius: 10px;
    padding: 24px;
    width: 360px;
}

.box-dicas-saude h4 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    float: left;
    margin: 0;
    width: 100%;
    margin-bottom: 17px;
}


.box-dicas-saude h6 {
    font-size: 14px;
    color: #000;
    display: block;
    margin-bottom: 15px;
    clear: both;
}

.box-dicas-saude a {
    display: block;
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}


.box-dicas-saude img {
    position: relative;
    z-index: -1;
    width: 100%;
    border-radius: 15px;
}


.box-dicas-saude .overlay-img {
    float: left;
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 14px;
    margin: 0 0 13px 0;
}


.box-dicas-saude h5 {
    font-size: 16px;
    font-weight: 500;
}

.box-dicas-saude a {
    display: block;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 23px;
}


.box-dicas-saude a:last-child {
    border-bottom: none;
}


.box-termometro-humor {
    clear: both;
    float: left;
    border: 1px solid #e1e1e1;
    padding: 24px;
    width: 99%;
    margin: 20px 0 0 0;
    border-radius: 15px;
}


.box-termometro-humor h4 {
    font-size: 22px;
    font-weight: 600;
}

.humor-options {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.humor-btn {
    border: 1px solid var(--cor-primaria);
    border-radius: 10px;
    color: var(--cor-primaria);
    font-weight: 500;
    background: #fff;
    width: 1000%;
}


.humor-btn:hover {
    opacity: 0.8;
    cursor: pointer;
}


.humor-btn:hover,
.humor-btn:active,
.humor-btn:focus {
    background-color: #daebff !important;
}

.humor-btn p {
    margin: 0 0 22px 0;
}


.humor-selected {
    background-color: #daebff !important;
}



.humor-unselected {
    color: #b4b4b4;
    border: 1px solid #e1e1e1;
}

.humor-unselected img {
    opacity: 0.5;
}


.page-health-tips .box-dicas-saude {
    border: none;
    float: left;
    border-radius: 10px;
    padding: 0;
    width: 100%;
}

.page-health-tips .box-dicas-saude a {
    display: block;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 0px;
    width: 512px;
    float: left;
    margin: 0 30px 40px 0;
    border: 1px solid red;
    padding: 25px;
    border-radius: 15px;
    height: 340px;
    border: 1px solid #273e7d2e;
}


.page-health-tips .box-dicas-saude .overlay-img {
    float: left;
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 14px;
    margin: 0 0 13px 0;
}



.page-health-tips .box-dicas-saude a:hover {
    opacity: 0.8;
}


.fim-dicas {
    margin-top: 16px;
    clear: both;
    text-align: center;
}


.empresa-card {
    padding: 10px;
    border: 1px solid #273e7d2e;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
}


.empresa-card .logoemp {
    max-width: 90px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}


.empresa-card .logo-emp {
    float: left;
    width: 100px;
}


.area-botoes-profile {
    margin-top: 100px;
}

/* ============================================
   TABELAS — PADRÃO GLOBAL SCUTHA
   ============================================ */

/* Reset base — aplica em TODA table do sistema */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

table thead tr,
table thead th {
    background: #fff !important;
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    padding: 14px 18px !important;
    border-bottom: 1px solid #e4e8ee !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    white-space: nowrap;
    text-align: left;
}

table tbody td {
    padding: 14px 18px;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
    background: #fff !important;
    border-bottom: 1px solid #e4e8ee !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

table tbody tr:last-child td {
    border-bottom: none !important;
}

table tbody tr:hover td {
    background: #f8fbff !important;
}

table tbody td strong {
    color: #1f2937;
    font-weight: 600;
}

/* Override Materialize striped/highlight */
table.striped>tbody>tr:nth-child(odd),
table.striped>tbody>tr:nth-child(even) {
    background: #fff;
}

table.striped>tbody>tr:hover,
table.highlight>tbody>tr:hover {
    background: #f8fbff;
}

/* Container card pra envolver tabela */
.table-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 20px;
}

/* Wrapper de scroll horizontal */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}



.table-clean-wrap {
    width: 100%;
    overflow-x: auto;
}

.table-clean {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.table-clean thead th {
    background: #fff !important;
    color: #111 !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 14px 18px;
    border-bottom: 1px solid #e4e8ee !important;
    white-space: nowrap;
}

.table-clean tbody td {
    padding: 14px 18px;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
    border-bottom: 1px solid #e4e8ee;
    background: #fff;
}

.table-clean tbody tr:last-child td {
    border-bottom: none;
}

.table-clean tbody tr:hover td {
    background: #f8fbff;
}

.table-clean tbody td strong {
    color: #1f2937;
    font-weight: 600;
}

/* Compacto — menos padding */
.table-clean--compact thead th,
.table-clean--compact tbody td {
    padding: 10px 14px;
}

/* Key-value — sem header, duas colunas */
table.table-kv,
.table-kv {
    box-shadow: none;
    border: none;
}

.table-kv tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f2f5;
}

.table-kv tbody td:first-child {
    color: #667085;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    width: 180px;
}

.table-kv tbody tr:last-child td {
    border-bottom: none;
}

.table-kv tbody tr:hover td {
    background: #fafbfc;
}

/* ============================================================
   Info Grid — label em cima, valor abaixo (padrão show pages)
   ============================================================ */
.info-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    max-width: 100%;
    overflow: hidden;
}

.info-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card__title i {
    font-size: 18px;
    color: var(--cor-primaria);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.info-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-item {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f2f5;
    min-width: 0;
}

.info-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.info-grid--2 .info-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.info-grid--4 .info-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.info-item__label {
    font-size: 12px;
    font-weight: 600;
    color: #aab0bb;
    margin-bottom: 4px;
}

.info-item__value {
    font-size: 0.92rem;
    color: #1a1a2e;
    font-weight: 500;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.info-item__value.muted {
    color: #aab0bb;
    font-weight: 400;
}

/* Header do show page */
.show-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.show-header__name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.show-header__sub {
    font-size: 0.85rem;
    color: #8892a0;
    margin-top: 4px;
}

/* Ações */
.show-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}


@media (max-width: 768px) {
    .page-content {
        width: calc(100% - 32px);
        margin-top: 56px;
        padding-bottom: 56px;
    }

    .page-content .esquerda,
    .page-content .direita {
        width: 100%;
        float: none;
    }

    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-item:nth-last-child(-n+3) {
        border-bottom: 1px solid #f0f2f5;
    }

    .info-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .page-content {
        width: calc(100% - 24px);
        margin-top: 48px;
        padding-bottom: 48px;
    }

    .info-grid,
    .info-grid--2,
    .info-grid--4 {
        grid-template-columns: 1fr;
    }

    .info-item {
        border-bottom: 1px solid #f0f2f5 !important;
    }

    .info-item:last-child {
        border-bottom: none !important;
    }
}

/* Estado vazio */
.table-empty {
    padding: 32px 18px !important;
    text-align: center;
    color: #8a94a6 !important;
}

.table-empty i {
    display: block;
    margin-bottom: 8px;
    font-size: 32px;
    color: #c4cdd5;
}

/* Paginação */
.pagination-clean {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pagination-clean a,
.pagination-clean span {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e5eaf2;
    background: #fff;
    color: #5b667a;
    transition: all 0.2s ease;
}

.pagination-clean a:hover {
    background: #f8fbff;
    border-color: #cfe0ff;
    color: var(--cor-primaria);
}

.pagination-clean .current {
    background: var(--cor-primaria);
    border-color: var(--cor-primaria);
    color: #fff;
}

/* Toolbar de tabela */
.table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.table-toolbar__title {
    margin: 0;
    color: #1f2937;
    font-size: 20px;
    font-weight: 700;
}

.table-toolbar__meta {
    margin: 0;
    color: #7b8798;
    font-size: 14px;
}

/* Badge de status */
.table-status-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.page-content span.badge,
.page-content span.new.badge,
.page-content .status-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    min-width: auto !important;
    min-height: 28px !important;
    height: auto !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}


.nr1-hero {
    background: #0071f1 !important;
}



.dash-card .card-content {
    padding: 50px 24px !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.page-empresas #search-nome,
.page-colaboradores #search-nome {
    margin: -40px 0 29px 0px !important;
    float: left;
}




/* Responsivo — tabela vira cards no mobile */
@media (max-width: 768px) {

    table thead th,
    table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .table-wrap {
        overflow-x: auto;
    }

    .table-clean-wrap {
        overflow: visible;
    }

    .table-clean.table-clean--responsive {
        min-width: 100%;
    }

    .table-clean.table-clean--responsive thead {
        display: none;
    }

    .table-clean.table-clean--responsive,
    .table-clean.table-clean--responsive tbody,
    .table-clean.table-clean--responsive tr,
    .table-clean.table-clean--responsive td {
        display: block;
        width: 100%;
    }

    .table-clean.table-clean--responsive tbody {
        padding: 12px;
    }

    .table-clean.table-clean--responsive tr {
        border: 1px solid #edf1f7;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 12px;
        background: #fff;
    }

    .table-clean.table-clean--responsive tbody td {
        border-bottom: 1px solid #eef2f7;
        padding: 12px 14px 12px 132px;
        min-height: 48px;
        position: relative;
        text-align: left;
        white-space: normal;
    }

    .table-clean.table-clean--responsive tbody tr:last-child td:last-child {
        border-bottom: none;
    }

    .table-clean.table-clean--responsive tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 14px;
        top: 12px;
        width: 104px;
        color: #667085;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .table-clean.table-clean--responsive .table-empty {
        padding: 24px 16px !important;
        text-align: center;
    }

    .table-clean.table-clean--responsive .table-empty::before {
        display: none;
    }

    .pagination-clean {
        gap: 6px;
    }

    .pagination-clean a,
    .pagination-clean span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
    }
}

.dropdown-content li>a,
.dropdown-content li>span {
    font-size: 16px;
    color: var(--cor-primaria);
    display: block;
    line-height: 22px;
    padding: 14px 16px;
}


.muitas-tentativas {
    color: red;
    margin: 15px 0;
    margin: -15px 0 47px 0;
    display: block;
    background: #ffe6e6;
    padding: 11px;
}


.day-pill {
    height: 90px;
}


.empty-state {
    width: 100%;
    min-height: 320px;
    padding: 56px 20px !important;
    color: #64748b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.empty-state>i:first-child,
.empty-state .icon-empty {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px 0 !important;
    background: #f1f5f9;
    color: #94a3b8 !important;
    font-size: 36px !important;
    line-height: 1 !important;
}

.empty-state h4,
.empty-state h5,
.empty-state .empty-title {
    color: #1a1a2e !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3;
    margin: 0 0 10px 0 !important;
}

.empty-state p {
    color: #64748b !important;
    font-size: 14px;
    line-height: 1.55;
    max-width: 440px;
    margin: 0 0 22px 0 !important;
}

.empty-state br {
    display: none;
}

.empty-state a.btn,
.empty-state button.btn,
.empty-state .btn {
    width: auto !important;
    min-width: 0;
    height: 44px;
    line-height: 44px;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--cor-primaria) !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700 !important;
    box-shadow: none !important;
    text-transform: none;
}

.empty-state .btn:hover {
    background: #005ecb !important;
}

/* Variante verde quando acao for adicionar/criar */
.empty-state .btn.btn-add,
.empty-state .btn.green,
.empty-state .btn--add {
    background: var(--cor-verde) !important;
}

.empty-state .btn.btn-add:hover,
.empty-state .btn.green:hover,
.empty-state .btn--add:hover {
    background: #16a34a !important;
}

.empty-state .btn i,
.empty-state .btn i.left {
    float: none !important;
    margin: 0 !important;
    font-size: 16px;
    line-height: 1;
}


.hoverable:hover {
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: none;
}


#timer-38 i {
    font-size: 16px;
    margin: 7px 7px 0 0;
}

.box-emp {
    float: left;
    margin: 6px 0 0 0;
}




.box-emp p {
    display: flex;
    font-size: 14px;
    line-height: 1.2 !important;
    margin: 10px 20px 0 30px;
}

.empresa-card .logo-emp {
    float: left;
    width: 100px;
    margin: 0 20px 0 0;
}

/* reset básico para input */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

/* foco */
input:focus,
textarea:focus {
    border-color: #1976d2;
    /* um tom azul/legal ou da cor do teu tema */
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
    outline: none;
}

/* placeholder estilo */
::placeholder {
    color: #999;
    opacity: 1;
}


.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.spinner-container {
    text-align: center;
    position: relative;
}

.spinner {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.spinner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid #e8edf2;
    border-top-color: #0071F1;
    border-right-color: #0071F1;
    animation: spin 0.8s linear infinite;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-image: url('../img/favicon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

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

.spinner-container p {
    margin: 0;
    color: #333;
    font-weight: 500;
}


.page-detalhes-prof .foto-profissional {
    width: 250px;
    height: 250px;
    border-radius: 5px;
}



.detail-section {
    float: left;
    width: 100%;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--cor-borda);
    margin-bottom: 24px;
}


.detail-section h5 {
    font-size: 18px;
    color: #212121;
    font-weight: 600;
    margin-bottom: 24px;
}

.detail-section span.badge {
    min-width: 5rem;
    padding: 0 6px;
    margin-left: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 22px;
    height: 22px;
    color: #757575;
    float: right;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    border-radius: 500px;
    padding: 0 !important;
    color: #fff;
}




.detail-section .detail-label {
    font-weight: bold;
    float: left;
    width: 100%;
    font-size: 12px;
}

.detail-section .detail-value {
    float: left;
    font-family: 16px;
    width: 100%;
}

.detail-section .detail-row {
    margin-bottom: 10px;
    padding-bottom: 50px;
}


.detail-section .disponibilidade-grid {
    width: 100%;
    float: left;
}

.detail-section .disponibilidade-dia {
    float: left;
    width: 235px;
    background: var(--cor-cinza-claro);
    padding: 25px;
    margin: 0 30px 40px 0;
    border-radius: 9px;
    height: 450px;
}


.detail-section .disponibilidade-dia h6 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 17px;
}


.page-detalhes-prof .btn-large {
    width: 100%;
}


.card-action .btn-small {
    width: 100%;
}


.card-action .btn-small i {
    font-size: 1.2rem;
    float: left;
}


.page-professionals .card-title {
    font-size: 18px;
    font-weight: 500;
}


.page-professionals .card-image img {
    display: block;
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 12px;
    bottom: 0;
    width: 320px;
    margin: 0 auto;
    border-radius: 25px;
    height: 270px;
    margin-bottom: 15px;
}



.page-companys .card {
    height: 310px;
}


.page-configuracoes .card {
    width: 100%;
    height: 260px;
    padding: 20px;
}


.conteudo-box-horarios {
    border: 1px solid #ccc;
    padding: 25px;
    border-radius: 20px;
    height: 570px;
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

/* ===== Menu lateral — NR-1 dropdown animado ===== */
.menu-nr1-wrapper {
    list-style: none;
}

.menu-nr1-toggle {
    display: flex !important;
    float: none !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.menu-nr1-toggle span {
    display: flex;
    align-items: center;
}

.menu-nr1-arrow {
    font-size: 20px !important;
    margin: 0 !important;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.menu-nr1-wrapper.is-open .menu-nr1-arrow {
    transform: rotate(180deg);
}

.menu-nr1-sub {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    clear: both;
    width: 100%;
}

.menu-nr1-wrapper.is-open .menu-nr1-sub {
    max-height: 200px;
}

.menu-nr1-sub li {
    float: none !important;
    width: 100%;
}

.menu-nr1-sub a {
    float: none !important;
    margin-bottom: 4px !important;
    padding: 0 14px 12px 32px !important;
    font-size: 0.85rem !important;
    color: var(--cor-texto-cinza) !important;
    /* background: #fff !important; */
    border-radius: 6px !important;
    height: 36px !important;
    float: left !important;
    width: fit-content;
}

.menu-nr1-sub a i {
    font-size: 17px !important;
    margin: 0 12px 0 0 !important;
}

.menu-nr1-sub a:hover {
    background: #f0f0f0 !important;
}

/* ===== Active states NR-1, Programas, Planos ===== */
.page-nr1 .link-nr1,
.page-programas .link-nr1,
.page-planos .link-nr1 {
    background-color: var(--cor-primaria) !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.page-nr1 .link-nr1 .menu-nr1-arrow,
.page-programas .link-nr1 .menu-nr1-arrow,
.page-planos .link-nr1 .menu-nr1-arrow {
    color: #fff !important;
}

.page-nr1 .link-diagnostico,
.page-programas .link-programas,
.page-planos .link-planos {
    color: var(--cor-primaria) !important;
    font-weight: 700 !important;
}

/* ===== Cards de dashboard / KPI (.dc) ===== */
.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.dash-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .dash-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .dash-grid,
    .dash-grid--2 {
        grid-template-columns: 1fr;
    }
}

.dc {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    padding: 25px 19px 31px 25px;
    position: relative;
    transition: box-shadow .15s;
}

.dc__menu {
    position: absolute;
    top: 12px;
    right: 10px;
}

.dc__btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #aab0bb;
    padding: 0 4px;
    border-radius: 6px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.dc__btn:hover {
    background: #f3f4f6;
    color: #555;
}

.dc__drop {
    display: none;
    position: absolute;
    right: 0;
    top: 24px;
    z-index: 200;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
    min-width: 150px;
    overflow: hidden;
}

.dc__drop.open {
    display: block;
}

.dc__drop-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #374151;
    text-decoration: none;
}

.dc__drop-item:hover {
    background: #f9fafb;
}

.dc__drop-item i {
    font-size: 16px;
    color: #6b7280;
}

.dc__main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.dc__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dc__icon i {
    font-size: 22px;
    color: #ffffff;
    background: var(--cor-primaria);
    padding: 8px;
    border-radius: 500px;
}

.dc__value {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: #1a1a2e;
}


.dc__right {
    margin-left: auto;
    text-align: right;
    padding-right: 20px;
}

.dc__prev {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    line-height: 1;
    margin-bottom: 2px;
}

.dc__prev-label {
    font-size: 0.65rem;
    color: #aab0bb;
}

.dc__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dc__label {
    font-size: 14px;
    color: #050505;
    font-weight: 400;
}

.dc__badge {
    display: inline-block;
    font-size: 0.70rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
}

.dc__badge--up {
    background: #e6f9f0;
    color: #15803d;
}

.dc__badge--down {
    background: #fef2f2;
    color: #dc2626;
}

.dc__badge--neutral {
    background: #f3f4f6;
    color: #6b7280;
}

.dash-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    padding: 24px 24px 0;
    margin: 24px 0 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.dash-section-title i {
    font-size: 20px;
    color: var(--cor-primaria);
}

.dash-section-sub {
    font-size: 0.78rem;
    font-weight: 400;
    color: #9ca3af;
}

.dash-section-title+.dash-section-sub {
    display: block;
    margin: 0;
    padding: 6px 24px 18px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.dash-section-title+.dash-section-sub+.dash-grid,
.dash-section-title+.dash-grid,
.dash-section-title+.dash-grid--2 {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    padding: 0 24px 24px;
    margin-bottom: 24px;
}

.dash-section-title:has(.dash-section-sub) {
    padding-bottom: 18px;
}

.dash-section-title:has(.dash-section-sub) .dash-section-sub {
    font-size: 0.78rem;
    margin: 0;
}

.dash-section-title:has(.dash-section-sub)+.dash-grid {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    padding: 0 24px 24px;
    margin-bottom: 24px;
}

.dash-section-title+.dash-section-sub+.dash-grid .dc,
.dash-section-title+.dash-grid .dc,
.dash-section-title+.dash-grid--2 .dc,
.dash-section-title:has(.dash-section-sub)+.dash-grid .dc {
    border-radius: 14px !important;
}



.empresa-section-title {
    font-weight: 600 !important;
}


.materia-card h4 {
    font-weight: 600 !important;
}

.empresa-empty i {
    color: #858585 !important;
}


.empresa-empty {
    width: 100%;
}

.termometro-emoji {
    gap: 101px !important;
}


.empresa-section-subtitle {
    margin: 8px 0 19px 0 !important;
}

/* ================================
   Checkbox global — override Materialize
   ================================ */
[type="checkbox"]:not(.filled-in)+span:not(.lever):before {
    border: 1.5px solid #d0d5dd !important;
    border-radius: 4px !important;
    background: #fff !important;
    width: 18px !important;
    height: 18px !important;
}

[type="checkbox"]:not(.filled-in):checked+span:not(.lever):before {
    border: none !important;
    background: #16a34a !important;
    width: 18px !important;
    height: 18px !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    border-radius: 4px !important;
}

[type="checkbox"]:not(.filled-in):checked+span:not(.lever):after {
    content: '' !important;
    position: absolute !important;
    top: 4px !important;
    left: 3px !important;
    width: 10px !important;
    height: 6px !important;
    border-left: 2px solid #fff !important;
    border-bottom: 2px solid #fff !important;
    border-top: none !important;
    border-right: none !important;
    transform: rotate(-45deg) !important;
    background: transparent !important;
}


/* ============================================================
   SCUTHA MODAL - Padrão de modal nativo/app-like
   Uso: <div class="modal scutha-modal">
     <button class="scutha-modal__close modal-close"><i class="ph ph-x"></i></button>
     <div class="modal-content scutha-modal__content"> ... </div>
     <div class="modal-footer scutha-modal__footer">
        <a class="scutha-modal__cta">Acao primaria</a>
     </div>
   </div>
   ============================================================ */

.scutha-modal.modal {
    border-radius: 16px !important;
    max-width: 420px !important;
    width: 92% !important;
    max-height: 90% !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 24px 48px rgba(15, 23, 42, .18) !important;
    top: 5% !important;
}

.scutha-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #f1f5f9 !important;
    color: #475569;
    cursor: pointer;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .15s, color .15s;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
}

.scutha-modal__close:hover {
    background: #e2e8f0 !important;
    color: #1a1a2e;
}

.scutha-modal__close:focus,
.scutha-modal__close:active {
    background: #f1f5f9 !important;
    outline: none;
}

.scutha-modal__content {
    padding: 32px 24px 16px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

.scutha-modal__photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background: #f1f5f9;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
}

.scutha-modal__icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #eff6ff;
    color: #0071F1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.scutha-modal__title {
    margin: 4px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.scutha-modal__subtitle {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    max-width: 320px;
}

.scutha-modal__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0071F1;
    font-size: 12px;
    font-weight: 600;
}

.scutha-modal__chip-sep {
    color: #93c5fd;
    font-weight: 400;
}

.scutha-modal__divider {
    width: 100%;
    height: 1px;
    background: #f1f5f9;
    margin: 14px 0 6px;
}

.scutha-modal__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.scutha-modal__info-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 500;
}

.scutha-modal__info-row i {
    color: #0071F1;
    font-size: 18px;
}

.scutha-modal__info-row .cap::first-letter {
    text-transform: uppercase;
}

.scutha-modal__footer {
    padding: 12px 24px 20px !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 0 !important;
    background: #fff !important;
    border-radius: 0 0 16px 16px;
    height: auto !important;
    line-height: 1 !important;
    position: sticky;
    bottom: 0;
}

.scutha-modal__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    line-height: 48px;
    border-radius: 12px;
    background: #0071F1 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: none;
    box-shadow: none !important;
    transition: background .15s;
    text-decoration: none;
}

.scutha-modal__cta:hover {
    background: #005ecb !important;
    color: #fff !important;
}

.scutha-modal__cta--danger {
    background: #dc2626 !important;
}

.scutha-modal__cta--danger:hover {
    background: #b91c1c !important;
}

.scutha-modal__cta--success {
    background: #16a34a !important;
}

.scutha-modal__cta--success:hover {
    background: #15803d !important;
}