:root {
    --vantara-app-sidebar-width: 276px;
    --vantara-app-sidebar-blue: #0145f2;
    --vantara-app-sidebar-gold: #f59e0b;
    --vantara-app-sidebar-gold-strong: #d97706;
    --vantara-app-sidebar-border: #dbe3f0;
    --vantara-app-sidebar-text: #0f172a;
    --vantara-app-sidebar-muted: #475569;
}

.vantara_app_sidebar {
    position: fixed;
    z-index: 1200;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--vantara-app-sidebar-width);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 22px;
    overflow-y: auto;
    border-right: 1px solid rgba(219, 227, 240, 0.86);
    background:
        radial-gradient(
            circle at 20% 0,
            rgba(245, 158, 11, 0.12),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.96);
    box-shadow: 14px 0 34px rgba(15, 23, 42, 0.045);
    backdrop-filter: blur(14px);
    transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 260ms ease;
}

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

.vantara_app_sidebar_brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--vantara-app-sidebar-text);
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}

.vantara_app_sidebar_brand img {
    width: 120px;
    height: 62px;
    object-fit: contain;
}

.vantara_app_sidebar_brand span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.vantara_app_sidebar_close {
    width: 34px;
    height: 34px;
    display: none;
    place-items: center;
    flex: 0 0 34px;
    border: 1px solid var(--vantara-app-sidebar-border);
    border-radius: 10px;
    background: #ffffff;
    color: #64748b;
    font-size: 19px;
    cursor: pointer;
}

.vantara_app_sidebar_nav {
    display: grid;
    gap: 7px;
    margin-top: 4px;
}

.vantara_app_sidebar_link {
    min-height: 43px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 13px;
    color: var(--vantara-app-sidebar-muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.vantara_app_sidebar_link:hover,
.vantara_app_sidebar_link:focus-visible {
    outline: none;
    color: var(--vantara-app-sidebar-gold-strong);
    border-color: rgba(245, 158, 11, 0.22);
    background:
        linear-gradient(
            135deg,
            rgba(255, 251, 235, 0.9),
            rgba(255, 255, 255, 0.96)
        );
    transform: translateX(2px);
}

.vantara_app_sidebar_link.is_active {
    border-color: rgba(245, 158, 11, 0.35);
    background:
        linear-gradient(
            135deg,
            rgba(1, 69, 242, 0.09),
            rgba(245, 158, 11, 0.12)
        ),
        #ffffff;
    color: var(--vantara-app-sidebar-text);
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.1);
}

.vantara_app_sidebar_icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    border-radius: 9px;
    background: #eef4ff;
    color: var(--vantara-app-sidebar-blue);
    font-size: 13px;
    font-weight: 800;
}

.vantara_app_sidebar_link[data-sidebar-page="horizons"] .vantara_app_sidebar_icon,
.vantara_app_sidebar_link:hover .vantara_app_sidebar_icon {
    background: #fffbeb;
    color: var(--vantara-app-sidebar-gold-strong);
}

.vantara_app_sidebar_card {
    margin-top: auto;
    padding: 16px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(245, 158, 11, 0.15),
            transparent 40%
        ),
        #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
}

.vantara_app_sidebar_card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--vantara-app-sidebar-gold-strong);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vantara_app_sidebar_card strong {
    display: block;
    color: var(--vantara-app-sidebar-text);
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.vantara_app_sidebar_card p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.55;
}

.vantara_sidebar_feedback_button {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(1, 69, 242, 0.16);
    border-radius: 16px;
    padding: 10px 11px;
    background:
        linear-gradient(
            135deg,
            rgba(1, 69, 242, 0.08),
            rgba(245, 158, 11, 0.12)
        ),
        #ffffff;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.055),
        inset 3px 0 0 rgba(245, 158, 11, 0.86);
    transition:
        transform 170ms ease,
        border-color 170ms ease,
        box-shadow 170ms ease;
}

.vantara_sidebar_feedback_button:hover,
.vantara_sidebar_feedback_button:focus-visible {
    outline: none;
    transform: translateX(2px);
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow:
        0 14px 30px rgba(1, 69, 242, 0.09),
        inset 3px 0 0 rgba(245, 158, 11, 0.94);
}

.vantara_sidebar_feedback_icon {
    width: 30px;
    height: 30px;
    display: grid;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 11px;
    background:
        linear-gradient(135deg, var(--vantara-app-sidebar-blue), #4debff);
    color: #ffffff;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 9px 20px rgba(1, 69, 242, 0.2);
}

.vantara_sidebar_feedback_button span:last-child {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.vantara_sidebar_feedback_button strong {
    color: #0f172a;
    font-size: 12px;
    font-weight: 860;
}

.vantara_sidebar_feedback_button small {
    color: #64748b;
    font-size: 10px;
    font-weight: 680;
}

html.vantara_theme_dark body .vantara_sidebar_feedback_button,
body.dark .vantara_sidebar_feedback_button,
body.tema_escuro .vantara_sidebar_feedback_button {
    border-color: rgba(245, 158, 11, 0.26);
    background:
        linear-gradient(
            135deg,
            rgba(1, 69, 242, 0.18),
            rgba(245, 158, 11, 0.14)
        ),
        rgba(15, 23, 42, 0.92);
    color: #e5edf8;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.24),
        inset 3px 0 0 rgba(245, 158, 11, 0.88);
}

html.vantara_theme_dark body .vantara_sidebar_feedback_button strong,
body.dark .vantara_sidebar_feedback_button strong,
body.tema_escuro .vantara_sidebar_feedback_button strong {
    color: #f8fafc;
}

html.vantara_theme_dark body .vantara_sidebar_feedback_button small,
body.dark .vantara_sidebar_feedback_button small,
body.tema_escuro .vantara_sidebar_feedback_button small {
    color: #b8c5d8;
}

.vantara_ecosystem_open {
    overflow: hidden;
}

.vantara_ecosystem_switcher {
    position: fixed;
    inset: 0;
    z-index: 2400;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.vantara_ecosystem_switcher.is_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vantara_ecosystem_backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(1, 69, 242, 0.2), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(14, 165, 233, 0.18), transparent 30%),
        rgba(2, 8, 23, 0.72);
    backdrop-filter: blur(14px);
}

.vantara_ecosystem_panel {
    position: relative;
    width: min(720px, 100%);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 8, 23, 0.96));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
    transform: translateY(18px) scale(0.985);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vantara_ecosystem_switcher.is_open .vantara_ecosystem_panel {
    transform: translateY(0) scale(1);
}

.vantara_ecosystem_header {
    position: relative;
    padding: 18px 20px 14px;
}

.vantara_ecosystem_header span {
    color: #38bdf8;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vantara_ecosystem_header h2 {
    margin: 5px 44px 0 0;
    color: #f8fafc;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 560;
    letter-spacing: -0.055em;
}

.vantara_ecosystem_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.78);
    color: #e2e8f0;
    font-size: 17px;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.vantara_ecosystem_close:hover,
.vantara_ecosystem_close:focus-visible {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, 0.55);
    background: rgba(30, 41, 59, 0.92);
}

.vantara_ecosystem_options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 20px 20px;
}

.vantara_ecosystem_option {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 17px;
    border-radius: 18px;
    text-decoration: none;
    isolation: isolate;
    transform: translateY(10px);
    opacity: 0;
    animation: vantaraEcosystemCardIn 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.vantara_ecosystem_option:nth-child(2) {
    animation-delay: 70ms;
}

.vantara_ecosystem_option:hover,
.vantara_ecosystem_option:focus-visible {
    outline: none;
    transform: translateY(-3px);
}

.vantara_ecosystem_connect {
    border: 1px solid rgba(1, 69, 242, 0.24);
    background:
        radial-gradient(circle at 20% 14%, rgba(34, 211, 238, 0.18), transparent 28%),
        linear-gradient(145deg, #ffffff, #eef5ff);
    box-shadow: 0 18px 45px rgba(1, 69, 242, 0.16);
    color: #0f172a !important;
}

.vantara_ecosystem_hubs {
    border: 1px solid rgba(56, 189, 248, 0.26);
    background:
        radial-gradient(circle at 22% 12%, rgba(56, 189, 248, 0.28), transparent 30%),
        linear-gradient(145deg, #081426, #020817 64%, #061a33);
    box-shadow: 0 18px 45px rgba(14, 165, 233, 0.18);
    color: #f8fafc;
}

.vantara_ecosystem_logo {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 84px;
    height: 38px;
    object-fit: contain;
}

.vantara_ecosystem_hubs .vantara_ecosystem_logo {
    width: 90px;
}

.vantara_ecosystem_option > span {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin-bottom: 7px;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vantara_ecosystem_connect > span {
    background: rgba(1, 69, 242, 0.08);
    color: #0145f2 !important;
}

.vantara_ecosystem_hubs > span {
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
}

.vantara_ecosystem_option strong {
    position: relative;
    z-index: 2;
    max-width: 250px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 560;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.vantara_ecosystem_option p {
    position: relative;
    z-index: 2;
    max-width: 260px;
    margin: 9px 0 0;
    font-size: 11px;
    font-weight: 430;
    line-height: 1.55;
}

.vantara_ecosystem_connect p {
    color: #475569 !important;
}

.vantara_ecosystem_connect strong {
    color: #0f172a !important;
}

html.vantara_theme_dark body .vantara_ecosystem_connect {
    color: #0f172a !important;
}

html.vantara_theme_dark body .vantara_ecosystem_connect > span {
    background: rgba(1, 69, 242, 0.08) !important;
    color: #0145f2 !important;
}

html.vantara_theme_dark body .vantara_ecosystem_connect strong {
    color: #0f172a !important;
}

html.vantara_theme_dark body .vantara_ecosystem_connect p {
    color: #475569 !important;
}

.vantara_ecosystem_hubs p {
    color: #a7b7cc;
}

.vantara_ecosystem_illustration {
    position: absolute;
    inset: 30px 20px auto auto;
    width: 140px;
    height: 92px;
    z-index: 1;
    opacity: 0.92;
}

.vantara_ecosystem_illustration.connect {
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(1, 69, 242, 0.1), rgba(34, 211, 238, 0.1));
}

.vantara_ecosystem_illustration.connect::before {
    content: "";
    position: absolute;
    inset: 18px 38px;
    border: 1px dashed rgba(1, 69, 242, 0.28);
    border-radius: 999px;
    animation: vantaraEcosystemSpin 11s linear infinite;
}

.vantara_ecosystem_illustration.connect i {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0145f2, #22d3ee);
    box-shadow: 0 10px 26px rgba(1, 69, 242, 0.22);
}

.vantara_ecosystem_illustration.connect i:nth-child(1) { left: 26px; top: 22px; }
.vantara_ecosystem_illustration.connect i:nth-child(2) { right: 30px; top: 18px; }
.vantara_ecosystem_illustration.connect i:nth-child(3) { left: 50px; bottom: 18px; }
.vantara_ecosystem_illustration.connect i:nth-child(4) { right: 48px; bottom: 24px; }

.vantara_ecosystem_illustration.hubs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.vantara_ecosystem_illustration.hubs i {
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.3));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vantara_ecosystem_illustration.hubs i:nth-child(2),
.vantara_ecosystem_illustration.hubs i:nth-child(4) {
    background:
        linear-gradient(145deg, rgba(1, 69, 242, 0.35), rgba(14, 165, 233, 0.16));
}

@keyframes vantaraEcosystemCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vantaraEcosystemSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 760px) {
    .vantara_ecosystem_panel {
        max-height: calc(100dvh - 24px);
        overflow: auto;
    }

    .vantara_ecosystem_options {
        grid-template-columns: 1fr;
        padding: 0 14px 14px;
    }

    .vantara_ecosystem_option {
        min-height: 172px;
    }

    .vantara_ecosystem_illustration {
        opacity: 0.55;
        transform: scale(0.86);
        transform-origin: top right;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vantara_ecosystem_switcher,
    .vantara_ecosystem_panel,
    .vantara_ecosystem_option,
    .vantara_ecosystem_illustration.connect::before {
        animation: none !important;
        transition: none !important;
    }
}

.vantara_app_sidebar_overlay {
    position: fixed;
    z-index: 1190;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    cursor: default;
    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.vantara_mobile_sidebar_toggle {
    display: none;
    width: 38px;
    height: 36px;
    flex: 0 0 38px;
    place-items: center;
    gap: 3px;
    padding: 0;
    border: 1px solid rgba(203, 213, 225, 0.76);
    border-radius: 13px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.94),
            rgba(248, 250, 252, 0.9)
        );
    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.vantara_mobile_sidebar_toggle span {
    width: 17px;
    height: 1.7px;
    display: block;
    border-radius: 999px;
    background: #64748b;
    transition:
        width 160ms ease,
        transform 180ms ease,
        opacity 160ms ease,
        background 160ms ease;
}

.vantara_mobile_sidebar_toggle span:nth-child(1) {
    width: 14px;
    transform: translateX(-1.5px);
}

.vantara_mobile_sidebar_toggle span:nth-child(2) {
    width: 18px;
}

.vantara_mobile_sidebar_toggle span:nth-child(3) {
    width: 12px;
    transform: translateX(2px);
}

.vantara_mobile_sidebar_toggle:hover,
.vantara_mobile_sidebar_toggle:focus-visible {
    border-color: rgba(148, 163, 184, 0.92);
    background: #ffffff;
    box-shadow:
        0 12px 26px rgba(15, 23, 42, 0.075),
        0 0 0 4px rgba(1, 69, 242, 0.055);
}

.vantara_mobile_sidebar_toggle:active {
    transform: scale(0.96);
}

body.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(1) {
    width: 17px;
    transform: translateY(4.7px) rotate(45deg);
}

body.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.45);
}

body.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(3) {
    width: 17px;
    transform: translateY(-4.7px) rotate(-45deg);
}

body.vantara_sidebar_open .vantara_mobile_sidebar_toggle span {
    background: #475569;
}

body.vantara_sidebar_fixed:not(.home_feed_page):not(.talentos_page):not(.chat_page) {
    padding-left: var(--vantara-app-sidebar-width);
}

body.vantara_sidebar_fixed:not(.home_feed_page):not(.talentos_page):not(.chat_page) > .container > .sidebar {
    display: none !important;
}

body.vantara_sidebar_fixed:not(.home_feed_page):not(.talentos_page):not(.chat_page) > .container {
    grid-template-columns: minmax(0, 1fr) !important;
}

@media (min-width: 861px) {
    body.vantara_sidebar_fixed .navbar .brand_link,
    body.vantara_sidebar_fixed .navbar > a:first-child,
    body.vantara_sidebar_fixed .cabecalho_logo_click {
        display: none !important;
    }

    body.vantara_sidebar_fixed .navbar_inner {
        grid-template-columns: minmax(0, 1fr) 48px;
    }
}

body.vantara_sidebar_drawer .vantara_app_sidebar {
    transform: translateX(-104%);
    visibility: hidden;
    pointer-events: none;
}

body.vantara_sidebar_drawer.vantara_sidebar_open .vantara_app_sidebar {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 861px) {
    body.vantara_sidebar_horizon_drawer[data-vantara-sidebar-mode="horizon-drawer"]:not(.vantara_sidebar_open) {
        padding-left: 0 !important;
    }

    body.vantara_sidebar_horizon_drawer[data-vantara-sidebar-mode="horizon-drawer"]:not(.vantara_sidebar_open) .vantara_app_sidebar {
        transform: translateX(-104%) !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.vantara_sidebar_horizon_drawer[data-vantara-sidebar-mode="horizon-drawer"].vantara_sidebar_open .vantara_app_sidebar {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    body.vantara_sidebar_horizon_drawer[data-vantara-sidebar-mode="horizon-drawer"]:not(.vantara_sidebar_open) .vantara_app_sidebar_overlay {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.vantara_sidebar_horizon_drawer[data-vantara-sidebar-mode="horizon-drawer"].vantara_sidebar_open .vantara_app_sidebar_overlay {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

body.vantara_sidebar_drawer .vantara_app_sidebar_close {
    display: grid;
}

body.vantara_sidebar_horizon_drawer:not(.home_feed_page):not(.talentos_page) > .container > .sidebar {
    display: none !important;
}

body.vantara_sidebar_horizon_drawer:not(.home_feed_page):not(.talentos_page) > .container {
    grid-template-columns: minmax(0, 1fr) !important;
}

body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle {
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + 104px) !important;
    left: 0 !important;
    z-index: 1235 !important;
    width: 30px !important;
    height: 54px !important;
    min-width: 30px !important;
    flex: 0 0 30px !important;
    display: grid !important;
    place-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(203, 213, 225, 0.82) !important;
    border-left: 0 !important;
    border-radius: 0 15px 15px 0 !important;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 250, 252, 0.94)
        ) !important;
    box-shadow:
        8px 10px 24px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
    color: #64748b !important;
    cursor: pointer !important;
    transition:
        left 260ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease !important;
}

body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle span,
body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle span:nth-child(1),
body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle span:nth-child(2),
body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle span:nth-child(3),
body.vantara_sidebar_horizon_drawer.vantara_sidebar_open .vantara_mobile_sidebar_toggle span,
body.vantara_sidebar_horizon_drawer.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(1),
body.vantara_sidebar_horizon_drawer.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(2),
body.vantara_sidebar_horizon_drawer.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(3) {
    width: auto !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: inherit !important;
    opacity: 1 !important;
    transform: none !important;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif !important;
    font-size: 22px !important;
    font-weight: 780 !important;
    line-height: 1 !important;
    letter-spacing: -0.08em !important;
}

body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle:hover,
body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle:focus-visible {
    border-color: rgba(148, 163, 184, 0.95) !important;
    background: #ffffff !important;
    color: #475569 !important;
    box-shadow:
        10px 12px 28px rgba(15, 23, 42, 0.15),
        0 0 0 4px rgba(1, 69, 242, 0.055) !important;
    outline: none !important;
}

body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle:active {
    transform: translateX(-1px) scale(0.98) !important;
}

body.vantara_sidebar_horizon_drawer.vantara_sidebar_open .vantara_mobile_sidebar_toggle {
    left: min(
        var(--vantara-app-sidebar-width),
        calc(100vw - 34px)
    ) !important;
    border-right: 0 !important;
    border-left: 1px solid rgba(203, 213, 225, 0.82) !important;
    border-radius: 15px 0 0 15px !important;
    color: #475569 !important;
    box-shadow:
        8px 10px 24px rgba(15, 23, 42, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

@media (min-width: 861px) {
    body.vantara_sidebar_horizon_drawer .vantara_mobile_sidebar_toggle {
        display: none !important;
    }
}

body.vantara_sidebar_open {
    overflow: hidden;
}

body.vantara_sidebar_open .vantara_app_sidebar {
    transform: translateX(0);
    visibility: visible;
}

body.vantara_sidebar_open .vantara_app_sidebar_overlay {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1120px) {
    :root {
        --vantara-app-sidebar-width: 232px;
    }
}

@media (max-width: 860px) {
    :root {
        --vantara-app-sidebar-width: min(88vw, 320px);
    }

    body.vantara_mobile_sidebar_enabled,
    body.vantara_sidebar_fixed,
    body.vantara_sidebar_drawer,
    body.vantara_sidebar_free_drawer {
        padding-left: 0 !important;
        overflow-x: hidden !important;
    }

    body.vantara_mobile_sidebar_enabled > :where(
        .container,
        .vagas_page,
        .perfil_shell,
        .chat_page_shell,
        .admin_shell,
        #projetoContainer
    ) {
        margin-left: 0 !important;
        transform: none !important;
    }

    .vantara_app_sidebar {
        gap: 16px;
        padding: 16px;
        box-shadow: 10px 0 28px rgba(15, 23, 42, 0.08);
    }

    .vantara_app_sidebar_brand img {
        width: 120px;
        height: 62px;
    }

    .vantara_app_sidebar_brand span {
        font-size: 16px;
    }

    .vantara_app_sidebar_close {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 10px;
        font-size: 18px;
    }

    .vantara_app_sidebar_nav {
        gap: 6px;
    }

    .vantara_app_sidebar_link {
        min-height: 39px;
        gap: 9px;
        padding: 0 10px;
        border-radius: 12px;
        font-size: 12px;
    }

    .vantara_app_sidebar_icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
        border-radius: 8px;
        font-size: 12px;
    }

    .vantara_app_sidebar_card {
        padding: 14px;
        border-radius: 16px;
    }

    .vantara_app_sidebar_card strong {
        font-size: 14px;
    }

    .vantara_app_sidebar_card p {
        font-size: 10.5px;
        line-height: 1.5;
    }

    .vantara_app_sidebar .mobile_sidebar_only {
        display: flex !important;
    }

    body.vantara_sidebar_fixed {
        padding-left: 0;
    }

    body.vantara_sidebar_fixed .vantara_app_sidebar {
        transform: translateX(-104%);
        visibility: hidden;
    }

    body.vantara_sidebar_fixed .vantara_app_sidebar_close {
        display: grid;
    }

    body.vantara_sidebar_fixed.vantara_sidebar_open .vantara_app_sidebar {
        transform: translateX(0);
        visibility: visible;
    }

    body.vantara_sidebar_free_drawer .container > .sidebar,
    body.vantara_sidebar_free_drawer aside.sidebar {
        position: fixed !important;
        z-index: 1200;
        top: 0;
        bottom: 0;
        left: 0;
        width: var(--vantara-app-sidebar-width);
        max-width: var(--vantara-app-sidebar-width);
        height: 100vh;
        max-height: none;
        display: flex !important;
        flex-direction: column;
        gap: 9px;
        margin: 0 !important;
        padding: 18px;
        overflow-y: auto;
        border: 0;
        border-right: 1px solid rgba(219, 227, 240, 0.9);
        border-radius: 0 22px 22px 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 18px 0 46px rgba(15, 23, 42, 0.14);
        transform: translateX(-104%);
        visibility: hidden;
        transition:
            transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
            visibility 260ms ease;
    }

    body.vantara_sidebar_free_drawer.vantara_sidebar_open .container > .sidebar,
    body.vantara_sidebar_free_drawer.vantara_sidebar_open aside.sidebar {
        transform: translateX(0);
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .vantara_mobile_sidebar_toggle {
        display: inline-grid;
    }

    body.vantara_mobile_sidebar_enabled.home_feed_page .navbar,
    body.vantara_mobile_sidebar_enabled.talentos_page .navbar {
        min-height: auto;
    }

    body.vantara_mobile_sidebar_enabled.home_feed_page .navbar_inner,
    body.vantara_mobile_sidebar_enabled.talentos_page .navbar_inner {
        width: calc(100% - 24px);
        min-height: auto;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px 10px;
        padding: 8px 0 10px;
        align-items: center;
    }

    body.vantara_mobile_sidebar_enabled.home_feed_page .navbar_inner > .brand_link,
    body.vantara_mobile_sidebar_enabled.talentos_page .navbar_inner > .brand_link {
        grid-column: 1;
        grid-row: 1;
    }

    body.vantara_mobile_sidebar_enabled.home_feed_page .navbar_inner > .user_area,
    body.vantara_mobile_sidebar_enabled.talentos_page .navbar_inner > .user_area {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        gap: 7px;
    }

    body.vantara_mobile_sidebar_enabled.home_feed_page .navbar_inner > nav,
    body.vantara_mobile_sidebar_enabled.talentos_page .navbar_inner > nav {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        overflow-x: auto;
        overflow-y: visible;
        padding: 4px 2px 6px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    body.vantara_mobile_sidebar_enabled.home_feed_page .navbar_inner > nav::-webkit-scrollbar,
    body.vantara_mobile_sidebar_enabled.talentos_page .navbar_inner > nav::-webkit-scrollbar {
        display: none;
    }

    body.vantara_mobile_sidebar_enabled.home_feed_page .navbar_inner > nav a,
    body.vantara_mobile_sidebar_enabled.talentos_page .navbar_inner > nav a {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 11px;
        font-size: 11px;
        line-height: 1.25;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar {
        min-height: auto;
        padding: 8px 12px 10px;
        align-items: stretch;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar,
    body:not(.home_feed_page):not(.talentos_page) .navbar_inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px 10px;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar_inner {
        width: 100%;
        min-height: auto;
        padding: 0;
        align-items: center;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar > a,
    body:not(.home_feed_page):not(.talentos_page) .navbar_inner > a,
    body:not(.home_feed_page):not(.talentos_page) .navbar .brand_link {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        align-self: center;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar .logo_vantara {
        width: 120px;
        max-width: 120px;
        height: 62px;
        object-fit: contain;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar .user,
    body:not(.home_feed_page):not(.talentos_page) .navbar .user_area {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        min-width: 0;
        gap: 7px;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar #username {
        max-width: 112px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 11px;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar .avatar,
    body:not(.home_feed_page):not(.talentos_page) .navbar .avatar_link {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 13px;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar nav {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        margin-top: 8px;
        overflow-x: auto;
        overflow-y: visible;
        padding: 4px 2px 6px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar nav::-webkit-scrollbar {
        display: none;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar nav a {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 11px;
        font-size: 11px;
        line-height: 1.25;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    body:not(.home_feed_page):not(.talentos_page) .navbar nav a::after {
        bottom: 2px;
    }
}

@media (max-width: 480px) {
    :root {
        --vantara-app-sidebar-width: min(86vw, 296px);
    }

    .vantara_app_sidebar {
        padding: 14px;
    }

    .vantara_app_sidebar_overlay {
        background: rgba(15, 23, 42, 0.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vantara_app_sidebar,
    .vantara_app_sidebar_overlay,
    .vantara_app_sidebar_link {
        transition: none !important;
    }
}

/*
    Free-feed mobile drawer hardening.
    O feed tem regras próprias para .sidebar; aqui garantimos que, no mobile,
    ela vire uma gaveta real e não uma barra flutuante com textos cortados.
*/

.mobile_sidebar_only {
    display: none !important;
}

@media (max-width: 860px) {
    body:not(.home_feed_page):not(.talentos_page) > .container,
    body:not(.home_feed_page):not(.talentos_page) > .vagas_page,
    body:not(.home_feed_page):not(.talentos_page) > .perfil_shell,
    body:not(.home_feed_page):not(.talentos_page) > .chat_page_shell,
    body:not(.home_feed_page):not(.talentos_page) > .admin_shell,
    body:not(.home_feed_page):not(.talentos_page) > #projetoContainer {
        margin-top: clamp(18px, 4vw, 28px) !important;
    }

    body.vantara_sidebar_free_drawer .app_shell > aside.sidebar,
    body.vantara_sidebar_free_drawer .container > aside.sidebar,
    body.vantara_sidebar_free_drawer .container > .sidebar,
    body.vantara_sidebar_free_drawer aside.sidebar {
        position: fixed !important;
        z-index: 1200 !important;
        top: 0 !important;
        right: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        width: var(--vantara-app-sidebar-width) !important;
        max-width: var(--vantara-app-sidebar-width) !important;
        height: 100dvh !important;
        max-height: none !important;
        display: flex !important;
        align-items: stretch !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        margin: 0 !important;
        padding: 18px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        border: 0 !important;
        border-right: 1px solid rgba(219, 227, 240, 0.9) !important;
        border-radius: 0 22px 22px 0 !important;
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.99),
                rgba(248, 250, 252, 0.985)
            ) !important;
        box-shadow: 18px 0 46px rgba(15, 23, 42, 0.14) !important;
        transform: translateX(-104%) !important;
        visibility: hidden !important;
        scrollbar-width: thin;
    }

    body.vantara_sidebar_free_drawer.vantara_sidebar_open .app_shell > aside.sidebar,
    body.vantara_sidebar_free_drawer.vantara_sidebar_open .container > aside.sidebar,
    body.vantara_sidebar_free_drawer.vantara_sidebar_open .container > .sidebar,
    body.vantara_sidebar_free_drawer.vantara_sidebar_open aside.sidebar {
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    body.vantara_sidebar_free_drawer aside.sidebar .sidebar_label {
        width: 100% !important;
        display: block !important;
        margin: 8px 0 4px !important;
        padding: 0 4px !important;
        color: #64748b !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        letter-spacing: 0.08em !important;
        line-height: 1.2 !important;
        text-transform: uppercase !important;
    }

    body.vantara_sidebar_free_drawer aside.sidebar .menu,
    body.vantara_sidebar_free_drawer aside.sidebar .menu_item {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 0 0 auto !important;
        gap: 9px !important;
        padding: 10px 12px !important;
        overflow: visible !important;
        border: 1px solid rgba(226, 232, 240, 0.92) !important;
        border-radius: 13px !important;
        background: #ffffff !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035) !important;
        color: #334155 !important;
        font-size: 13px !important;
        font-weight: 650 !important;
        line-height: 1.25 !important;
        text-align: left !important;
        white-space: normal !important;
    }

    body.vantara_sidebar_free_drawer aside.sidebar .menu:hover,
    body.vantara_sidebar_free_drawer aside.sidebar .menu:focus-visible,
    body.vantara_sidebar_free_drawer aside.sidebar .menu.active,
    body.vantara_sidebar_free_drawer aside.sidebar .menu_item:hover,
    body.vantara_sidebar_free_drawer aside.sidebar .menu_item:focus-visible,
    body.vantara_sidebar_free_drawer aside.sidebar .menu_item.active {
        border-color: rgba(1, 69, 242, 0.16) !important;
        background:
            linear-gradient(
                135deg,
                rgba(1, 69, 242, 0.08),
                rgba(77, 235, 255, 0.09)
            ) !important;
        color: #0145f2 !important;
        box-shadow:
            inset 3px 0 0 rgba(1, 69, 242, 0.85),
            0 10px 22px rgba(1, 69, 242, 0.055) !important;
    }

    body.vantara_sidebar_free_drawer aside.sidebar .sidebar_link_horizons {
        margin-top: 4px !important;
    }

    body.vantara_sidebar_free_drawer aside.sidebar .mobile_sidebar_only {
        display: flex !important;
    }

    body.vantara_sidebar_free_drawer aside.sidebar .sidebar_label.mobile_sidebar_only {
        display: block !important;
        margin-top: 14px !important;
    }
}

/*
    Mobile header nav clipping fix.
    Alguns estilos antigos usavam line-height baixo e overflow vertical escondido,
    cortando a parte inferior das palavras nos links do cabeçalho.
*/

@media (max-width: 860px) {
    body .navbar nav,
    body .navbar_inner > nav {
        align-items: center !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        padding-top: 6px !important;
        padding-bottom: 8px !important;
    }

    body .navbar nav a,
    body .navbar_inner > nav a {
        height: auto !important;
        min-height: 38px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding-top: 7px !important;
        padding-bottom: 7px !important;
        line-height: 1.35 !important;
        overflow: visible !important;
        vertical-align: middle !important;
    }

    body .navbar nav a::after,
    body .navbar_inner > nav a::after {
        bottom: 2px !important;
    }
}

/*
    Mobile sidebar edge tab.
    Botao fixo na lateral esquerda: fechado mostra ">", aberto acompanha a
    gaveta e vira "<".
*/

@media (max-width: 860px) {
    .vantara_mobile_sidebar_toggle {
        position: fixed !important;
        top: calc(env(safe-area-inset-top, 0px) + 94px) !important;
        left: 0 !important;
        z-index: 1235 !important;
        width: 30px !important;
        height: 54px !important;
        min-width: 30px !important;
        flex: 0 0 30px !important;
        display: grid !important;
        place-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        border: 1px solid rgba(203, 213, 225, 0.82) !important;
        border-left: 0 !important;
        border-radius: 0 15px 15px 0 !important;
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.98),
                rgba(248, 250, 252, 0.94)
            ) !important;
        box-shadow:
            8px 10px 24px rgba(15, 23, 42, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
        color: #64748b !important;
        cursor: pointer !important;
        transition:
            left 260ms cubic-bezier(0.22, 1, 0.36, 1),
            border-color 160ms ease,
            background 160ms ease,
            color 160ms ease,
            box-shadow 160ms ease,
            transform 160ms ease !important;
    }

    .vantara_mobile_sidebar_toggle span,
    .vantara_mobile_sidebar_toggle span:nth-child(1),
    .vantara_mobile_sidebar_toggle span:nth-child(2),
    .vantara_mobile_sidebar_toggle span:nth-child(3),
    body.vantara_sidebar_open .vantara_mobile_sidebar_toggle span,
    body.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(1),
    body.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(2),
    body.vantara_sidebar_open .vantara_mobile_sidebar_toggle span:nth-child(3) {
        width: auto !important;
        height: auto !important;
        display: block !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: inherit !important;
        opacity: 1 !important;
        transform: none !important;
        font-family:
            Inter,
            system-ui,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif !important;
        font-size: 22px !important;
        font-weight: 780 !important;
        line-height: 1 !important;
        letter-spacing: -0.08em !important;
    }

    .vantara_mobile_sidebar_toggle:hover,
    .vantara_mobile_sidebar_toggle:focus-visible {
        border-color: rgba(148, 163, 184, 0.95) !important;
        background: #ffffff !important;
        color: #475569 !important;
        box-shadow:
            10px 12px 28px rgba(15, 23, 42, 0.15),
            0 0 0 4px rgba(1, 69, 242, 0.055) !important;
        outline: none !important;
    }

    .vantara_mobile_sidebar_toggle:active {
        transform: translateX(-1px) scale(0.98) !important;
    }

    body.vantara_sidebar_open .vantara_mobile_sidebar_toggle {
        left: min(
            var(--vantara-app-sidebar-width),
            calc(100vw - 34px)
        ) !important;
        border-right: 0 !important;
        border-left: 1px solid rgba(203, 213, 225, 0.82) !important;
        border-radius: 15px 0 0 15px !important;
        color: #475569 !important;
        box-shadow:
            8px 10px 24px rgba(15, 23, 42, 0.13),
            inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
    }
}

@media (max-width: 480px) {
    .vantara_mobile_sidebar_toggle {
        top: calc(env(safe-area-inset-top, 0px) + 86px) !important;
        width: 28px !important;
        min-width: 28px !important;
        height: 50px !important;
    }

    .vantara_mobile_sidebar_toggle span {
        font-size: 20px !important;
    }
}
