:root {
    --primary: #0f4c81;
    --primary-dark: #0a355a;
    --primary-soft: #eaf3fb;
    --accent: #1f9cf0;

    --success: #169873;
    --warning: #f39c12;
    --danger: #d84a4a;
    --info: #2f80ed;

    --background: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #f8fafc;

    --border: #dfe7f0;
    --border-strong: #cad6e2;

    --text: #1f2937;
    --text-soft: #667085;
    --text-light: #98a2b3;

    --sidebar-width: 260px;
    --topbar-height: 88px;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --shadow-soft: 0 10px 30px rgba(15, 76, 129, 0.08);
    --shadow-medium: 0 18px 45px rgba(31, 41, 55, 0.12);

    --transition: 0.22s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--background);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.app-shell {
    min-height: 100vh;
    display: flex;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1000;

    width: var(--sidebar-width);
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            #0f4c81 0%,
            #0b3b66 58%,
            #082e50 100%
        );

    color: #ffffff;

    box-shadow: 12px 0 30px rgba(8, 45, 77, 0.14);

    transition:
        transform var(--transition),
        width var(--transition);
}

.sidebar-brand {
    min-height: var(--topbar-height);
    padding: 18px 22px;

    display: flex;
    align-items: center;
    gap: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-mark {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #ffffff;
    color: var(--primary);

    font-size: 23px;
    font-weight: 800;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-text strong {
    font-size: 16px;
    font-weight: 750;
}

.brand-text span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.sidebar-nav {
    flex: 1;
    padding: 22px 14px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    overflow-y: auto;
}

.nav-section-title {
    margin: 14px 12px 6px;

    color: rgba(255, 255, 255, 0.46);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.nav-section-title:first-child {
    margin-top: 0;
}

.nav-link {
    min-height: 46px;
    padding: 9px 13px;

    display: flex;
    align-items: center;
    gap: 13px;

    border-radius: 12px;

    color: rgba(255, 255, 255, 0.78);

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 3px 0 0 #ffffff;
}

.nav-icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.1);

    font-size: 15px;
}

.nav-label {
    font-size: 14px;
    font-weight: 650;
}

.sidebar-footer {
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 950;

    display: none;

    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
}

.main-area {
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    margin-left: var(--sidebar-width);

    transition:
        margin-left var(--transition),
        width var(--transition);
}

.topbar {
    min-height: var(--topbar-height);
    padding: 15px 30px;

    position: sticky;
    top: 0;
    z-index: 900;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--border);
}

.topbar-left,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-button {
    width: 42px;
    height: 42px;

    display: none;
    place-items: center;

    border-radius: 11px;

    background: var(--primary-soft);
    color: var(--primary);

    font-size: 23px;
}

.topbar-eyebrow,
.section-eyebrow {
    display: block;
    margin-bottom: 4px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.page-title-area h1 {
    font-size: 24px;
    font-weight: 760;
    line-height: 1.15;
}

.icon-button {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: #ffffff;
    color: var(--text-soft);

    font-size: 17px;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.icon-button:hover {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: rgba(15, 76, 129, 0.22);
}

.notification-button {
    position: relative;
}

.notification-button::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;

    width: 7px;
    height: 7px;

    border: 2px solid #ffffff;
    border-radius: 50%;

    background: var(--danger);
}

.user-menu {
    position: relative;
}

.user-menu-button {
    padding: 5px 8px 5px 5px;

    display: flex;
    align-items: center;
    gap: 10px;

    border-radius: 13px;

    background: transparent;
    color: var(--text);

    transition: background var(--transition);
}

.user-menu-button:hover {
    background: var(--surface-soft);
}

.user-avatar {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

    color: #ffffff;

    font-size: 17px;
    font-weight: 800;
}

.user-info {
    min-width: 120px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.user-info strong {
    font-size: 13px;
    font-weight: 750;
}

.user-info span {
    color: var(--text-soft);
    font-size: 11px;
}

.user-menu-arrow {
    color: var(--text-light);
    font-size: 12px;

    transition: transform var(--transition);
}

.user-menu.open .user-menu-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1100;

    width: 230px;
    padding: 8px;

    display: none;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: #ffffff;

    box-shadow: var(--shadow-medium);
}

.user-menu.open .user-dropdown {
    display: block;
}

.user-dropdown-header {
    padding: 10px 11px 12px;
    margin-bottom: 5px;

    display: flex;
    flex-direction: column;
    gap: 3px;

    border-bottom: 1px solid var(--border);
}

.user-dropdown-header strong {
    font-size: 13px;
}

.user-dropdown-header span {
    color: var(--text-soft);
    font-size: 11px;
    word-break: break-word;
}

.user-dropdown a,
.user-dropdown button {
    width: 100%;
    min-height: 40px;
    padding: 9px 11px;

    display: flex;
    align-items: center;
    gap: 9px;

    border-radius: 9px;

    background: transparent;
    color: var(--text);

    font-size: 13px;
    text-align: left;

    transition:
        background var(--transition),
        color var(--transition);
}

.user-dropdown a:hover,
.user-dropdown button:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.page-content {
    padding: 30px;
}

.messages-container {
    margin-bottom: 18px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert {
    min-height: 48px;
    padding: 12px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: #ffffff;

    font-size: 13px;

    box-shadow: var(--shadow-soft);
}

.alert-success {
    border-color: rgba(22, 152, 115, 0.28);
    background: #effaf6;
    color: #116c54;
}

.alert-warning {
    border-color: rgba(243, 156, 18, 0.28);
    background: #fff8e8;
    color: #9a6100;
}

.alert-error,
.alert-danger {
    border-color: rgba(216, 74, 74, 0.28);
    background: #fff1f1;
    color: #a63232;
}

.alert-info {
    border-color: rgba(47, 128, 237, 0.28);
    background: #eef6ff;
    color: #245fa8;
}

.alert-close {
    background: transparent;
    color: currentColor;
    opacity: 0.72;
}

.page-heading {
    margin-bottom: 24px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.page-heading h2 {
    margin-bottom: 7px;

    font-size: 27px;
    font-weight: 760;
    letter-spacing: -0.4px;
}

.page-heading p {
    max-width: 720px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.65;
}

.page-date {
    padding: 10px 14px;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: var(--surface);
    color: var(--text-soft);

    font-size: 13px;
    font-weight: 650;

    box-shadow: var(--shadow-soft);
}

.dashboard-grid {
    margin-bottom: 24px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.metric-card {
    min-height: 168px;
    padding: 21px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--surface);

    box-shadow: var(--shadow-soft);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.metric-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 76, 129, 0.28);
    box-shadow: var(--shadow-medium);
}

.metric-card-header {
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.metric-label {
    color: var(--text-soft);

    font-size: 13px;
    font-weight: 700;
}

.metric-icon {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--primary-soft);
    color: var(--primary);

    font-size: 16px;
    font-weight: 800;
}

.metric-value {
    margin-bottom: 7px;

    color: var(--text);

    font-size: 29px;
    font-weight: 800;
    line-height: 1;
}

.metric-description {
    color: var(--text-light);

    font-size: 12px;
    line-height: 1.45;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 18px;
}

.content-card {
    min-height: 360px;
    padding: 22px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--surface);

    box-shadow: var(--shadow-soft);
}

.content-card-header {
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.content-card-header h3 {
    font-size: 19px;
    font-weight: 760;
}

.empty-state {
    min-height: 260px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px dashed #cdd9e5;
    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            rgba(234, 243, 251, 0.5),
            rgba(255, 255, 255, 0.8)
        );
}

.empty-state-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: var(--primary-soft);
    color: var(--primary);

    font-size: 26px;
}

.empty-state h4 {
    margin-bottom: 7px;

    font-size: 17px;
    font-weight: 760;
}

.empty-state p {
    max-width: 520px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.65;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    min-height: 58px;
    padding: 13px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: #ffffff;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.quick-link:hover {
    transform: translateX(3px);
    background: var(--primary-soft);
    border-color: rgba(15, 76, 129, 0.24);
}

.quick-link span {
    font-size: 14px;
    font-weight: 700;
}

.quick-link strong {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

body.sidebar-collapsed .sidebar {
    transform: translateX(-100%);
}

body.sidebar-collapsed .main-area {
    width: 100%;
    margin-left: 0;
}

/* LOGIN */

.login-page {
    background: #edf3f8;
}

.login-shell {
    min-height: 100vh;

    display: grid;
    grid-template-columns: minmax(420px, 1.15fr) minmax(420px, 0.85fr);
}

.login-presentation {
    min-height: 100vh;
    padding: 42px 54px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            rgba(15, 76, 129, 0.96),
            rgba(8, 46, 80, 0.98)
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(31, 156, 240, 0.34),
            transparent 40%
        );
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.login-brand-mark {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #ffffff;
    color: var(--primary);

    font-size: 24px;
    font-weight: 800;
}

.login-brand > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.login-brand strong {
    font-size: 17px;
}

.login-brand span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.login-presentation-content {
    max-width: 590px;
}

.login-eyebrow {
    display: block;
    margin-bottom: 14px;

    color: #9ed7ff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.login-presentation-content h1 {
    margin-bottom: 20px;

    font-size: clamp(36px, 5vw, 60px);
    font-weight: 780;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.login-presentation-content > p {
    max-width: 540px;
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 16px;
    line-height: 1.75;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-feature {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 14px;
    font-weight: 650;
}

.login-feature i {
    color: #7cd8ff;
}

.login-presentation-footer {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.login-form-area {
    min-height: 100vh;
    padding: 34px;

    display: grid;
    place-items: center;
}

.login-card {
    width: 100%;
    max-width: 430px;
    padding: 34px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: #ffffff;

    box-shadow: var(--shadow-medium);
}

.login-card-header {
    margin-bottom: 26px;
    text-align: center;
}

.login-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: var(--primary-soft);
    color: var(--primary);

    font-size: 22px;
}

.login-card-header h2 {
    margin-bottom: 8px;

    font-size: 25px;
    font-weight: 780;
}

.login-card-header p {
    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.55;
}

.login-error {
    margin-bottom: 18px;
    padding: 12px 13px;

    display: flex;
    align-items: center;
    gap: 9px;

    border: 1px solid rgba(216, 74, 74, 0.24);
    border-radius: 10px;

    background: #fff1f1;
    color: #a63232;

    font-size: 13px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text);

    font-size: 13px;
    font-weight: 700;
}

.input-with-icon {
    position: relative;
}

.input-with-icon > i {
    position: absolute;
    top: 50%;
    left: 14px;

    transform: translateY(-50%);

    color: var(--text-light);
    font-size: 16px;
}

.input-with-icon input {
    width: 100%;
    min-height: 48px;
    padding: 11px 44px 11px 42px;

    border: 1px solid var(--border-strong);
    border-radius: 11px;

    background: #ffffff;
    color: var(--text);

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.input-with-icon input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.input-with-icon input::placeholder {
    color: #b0bac6;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;

    width: 32px;
    height: 32px;

    transform: translateY(-50%);

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: transparent;
    color: var(--text-light);
}

.password-toggle:hover {
    background: var(--surface-soft);
    color: var(--primary);
}

.login-submit-button {
    width: 100%;
    min-height: 49px;
    padding: 11px 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

    color: #ffffff;

    font-size: 14px;
    font-weight: 750;

    box-shadow: 0 10px 22px rgba(15, 76, 129, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.login-submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 76, 129, 0.25);
}

.login-support {
    margin-top: 22px;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-top: 1px solid var(--border);

    color: var(--text-soft);

    font-size: 11px;
    text-align: center;
}

@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .login-shell {
        grid-template-columns: 1fr 1fr;
    }

    .login-presentation {
        padding: 38px;
    }
}

@media (max-width: 980px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .main-area {
        width: 100%;
        margin-left: 0;
    }

    .menu-button {
        display: grid;
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    body.sidebar-open .sidebar-overlay {
        display: block;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-card {
        min-height: auto;
    }

    .login-shell {
        grid-template-columns: 1fr;
    }

    .login-presentation {
        display: none;
    }
}

@media (max-width: 720px) {
    .topbar {
        min-height: 76px;
        padding: 14px 18px;
    }

    .page-title-area h1 {
        font-size: 20px;
    }

    .topbar-actions > .icon-button {
        display: none;
    }

    .user-info,
    .user-menu-arrow {
        display: none;
    }

    .page-content {
        padding: 20px 16px;
    }

    .page-heading {
        flex-direction: column;
    }

    .page-heading h2 {
        font-size: 23px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .metric-card {
        min-height: 150px;
    }

    .page-date {
        align-self: flex-start;
    }

    .login-form-area {
        padding: 18px;
    }

    .login-card {
        padding: 26px 22px;
        border-radius: 18px;
    }
}

@media (max-width: 420px) {
    .sidebar {
        width: 88%;
        max-width: 300px;
    }

    .page-content {
        padding-inline: 12px;
    }

    .login-card-header h2 {
        font-size: 22px;
    }
}

/* ==========================================================
   SUBMENU DO MÓDULO MOTOS
   ========================================================== */

.nav-group {
    display: flex;
    flex-direction: column;
}

.nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 2px 0 8px 43px;
    padding-left: 12px;
    border-left: 1px solid rgb(255 255 255 / 12%);
}

.nav-sublink {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    color: rgb(255 255 255 / 66%);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition:
        background-color 0.18s ease,
        color 0.18s ease;
}

.nav-sublink:hover {
    background: rgb(255 255 255 / 7%);
    color: #ffffff;
}

.nav-sublink.active {
    background: rgb(59 130 246 / 16%);
    color: #dbeafe;
}


/* ==========================================================
   MENU MOTOS EXPANSÍVEL
   ========================================================== */

.nav-group-collapsible {
    display: flex;
    flex-direction: column;
}

.nav-toggle {
    width: 100%;
    border: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.nav-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: rgb(255 255 255 / 55%);
    font-size: 11px;
    transition: transform 0.2s ease;
}

.nav-group-collapsible .nav-submenu {
    display: none;
}

.nav-group-collapsible.is-open .nav-submenu {
    display: flex;
}

.nav-group-collapsible.is-open .nav-toggle-icon {
    transform: rotate(180deg);
}

.nav-group-collapsible .nav-submenu {
    flex-direction: column;
    gap: 3px;
    margin: 3px 0 8px 43px;
    padding-left: 12px;
    border-left: 1px solid rgb(255 255 255 / 12%);
}

.nav-group-collapsible .nav-sublink {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    color: rgb(255 255 255 / 66%);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition:
        background-color 0.18s ease,
        color 0.18s ease;
}

.nav-group-collapsible .nav-sublink:hover {
    background: rgb(255 255 255 / 7%);
    color: #ffffff;
}

.nav-group-collapsible .nav-sublink.active {
    background: rgb(59 130 246 / 16%);
    color: #dbeafe;
}


/* ==========================================================
   CORREÇÃO VISUAL DO BOTÃO EXPANSÍVEL DE MOTOS
   ========================================================== */

button.nav-toggle {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    margin: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    box-shadow: none;
}

button.nav-toggle:not(.active) {
    background: transparent;
    color: inherit;
}

button.nav-toggle:not(.active):hover {
    background: rgb(255 255 255 / 8%);
}

button.nav-toggle:focus {
    outline: none;
}

button.nav-toggle:focus-visible {
    outline: 2px solid rgb(255 255 255 / 35%);
    outline-offset: -2px;
}


/* ==========================================================
   LOGOTIPO OFICIAL DO ERP
   ========================================================== */

.brand-mark-logo {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    border-radius: 14px;
    background: #ffffff;
}

.brand-mark-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-brand-logo {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}


/* ==========================================================
   SÍMBOLO DA GOO NA BARRA LATERAL
   ========================================================== */

.sidebar-brand .brand-mark-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    padding: 7px;
    border-radius: 16px;
    background: #ffffff;
}

.sidebar-brand .brand-mark-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
