@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
    --background: #edf1f5;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --blue: #0145f2;
    --blue-dark: #0138c7;
    --cyan: #4debff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #dbe3f0;
    --green: #087f5b;
    --green-dark: #056347;
    --green-soft: #ecfdf5;
    --danger: #be123c;
    --talentos-main: #ea580c;
    --talentos-strong: #c2410c;
    --talentos-dark: #9a3412;
    --talentos-accent: #fb923c;
    --talentos-soft: #fff7ed;
    --talentos-border: #fed7aa;
    --talentos-ring: rgba(249, 115, 22, 0.34);
}

@property --feed-mode-transition-level {
    syntax: "<number>";
    inherits: true;
    initial-value: 1;
}

body.feed_transition_from_talents,
body.talentos_page.feed_transition_from_projects {
    --feed-mode-transition-level: 1;
    animation:
        vantaraFeedModeColorFade
        760ms ease forwards;
}

body.feed_transition_from_talents {
    --blue:
        color-mix(
            in srgb,
            #ea580c
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #0145f2
            calc(var(--feed-mode-transition-level) * 100%)
        );
    --blue-dark:
        color-mix(
            in srgb,
            #9a3412
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #0138c7
            calc(var(--feed-mode-transition-level) * 100%)
        );
    --cyan:
        color-mix(
            in srgb,
            #fb923c
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #4debff
            calc(var(--feed-mode-transition-level) * 100%)
        );
}

body.talentos_page.feed_transition_from_projects {
    --talentos-main:
        color-mix(
            in srgb,
            #0145f2
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #ea580c
            calc(var(--feed-mode-transition-level) * 100%)
        );
    --talentos-strong:
        color-mix(
            in srgb,
            #0138c7
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #c2410c
            calc(var(--feed-mode-transition-level) * 100%)
        );
    --talentos-dark:
        color-mix(
            in srgb,
            #0f3bb3
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #9a3412
            calc(var(--feed-mode-transition-level) * 100%)
        );
    --talentos-accent:
        color-mix(
            in srgb,
            #4debff
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #fb923c
            calc(var(--feed-mode-transition-level) * 100%)
        );
    --talentos-soft:
        color-mix(
            in srgb,
            #f1f6ff
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #fff7ed
            calc(var(--feed-mode-transition-level) * 100%)
        );
    --talentos-border:
        color-mix(
            in srgb,
            #bfdbfe
            calc(100% - var(--feed-mode-transition-level) * 100%),
            #fed7aa
            calc(var(--feed-mode-transition-level) * 100%)
        );
}

body.feed_transition_from_talents
    .feed_mode_button.projetos {
    background:
        linear-gradient(
            135deg,
            #0145f2,
            #2563eb 64%,
            #4debff
        ) !important;
}

body.talentos_page.feed_transition_from_projects
    .feed_mode_button.talentos {
    background:
        linear-gradient(
            135deg,
            #c2410c,
            #ea580c 62%,
            #fb923c
        ) !important;
}

@keyframes vantaraFeedModeColorFade {
    from {
        --feed-mode-transition-level: 0;
    }

    to {
        --feed-mode-transition-level: 1;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    min-height: 100vh;
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
}

button,
input,
select {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

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

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.navbar_inner {
    width: min(1440px, calc(100% - 40px));
    min-height: 70px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 24px;
}

.brand_link {
    width: 120px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo_vantara {
    width: 120px;
    height: 62px;
    display: block;
    object-fit: contain;
}

.navbar nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.navbar nav a {
    min-height: 36px;
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition:
        color 0.18s ease,
        background 0.18s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: var(--blue);
    background: #f1f6ff;
}

.navbar nav a.talentos_nav_link:hover,
.navbar nav a.talentos_nav_link:focus-visible {
    outline: none;
    background: var(--talentos-soft);
    color: var(--talentos-strong);
}

.user_area {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.avatar_link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.avatar_link:focus-visible {
    outline: 3px solid rgba(1, 69, 242, 0.18);
    outline-offset: 2px;
}

.avatar {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #2563eb 58%,
            var(--cyan)
        );
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 0 1px rgba(1, 69, 242, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.avatar_com_foto {
    color: transparent;
}

.avatar_menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 70;
    width: 190px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}

.avatar_menu[hidden] {
    display: none;
}

.avatar_menu::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 12px;
    left: 12px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.avatar_menu_label {
    display: block;
    padding: 7px 9px 6px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.avatar_menu a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 9px;
    border-radius: 6px;
    color: #475569;
    font-size: 12px;
    font-weight: 550;
}

.avatar_menu a:hover,
.avatar_menu a:focus-visible {
    outline: none;
    background: #f1f6ff;
    color: var(--blue);
}

.discovery_wrap {
    width: min(1440px, calc(100% - 40px));
    margin: 22px auto 0;
}

.feed_discovery {
    overflow: visible;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.discovery_identity_line {
    height: 4px;
    border-radius: 7px 7px 0 0;
    background:
        linear-gradient(
            90deg,
            var(--blue),
            #1d72f3 62%,
            var(--cyan)
        );
}

.discovery_content {
    padding: 22px 24px 20px;
}

.feed_mode_selector {
    position: relative;
    z-index: 45;
    width: 196px;
    max-width: 100%;
    margin-bottom: 17px;
}

.feed_mode_label {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.feed_mode_button {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 650;
    text-align: left;
    box-shadow: 0 7px 16px rgba(15, 23, 42, 0.11);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.feed_mode_button.projetos {
    border-color: rgba(1, 69, 242, 0.22);
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #2563eb 64%,
            var(--cyan)
        );
}

.feed_mode_button.projetos:hover {
    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            #1d58d8 68%,
            #35cee2
        );
}

.feed_mode_button.vagas_publicas {
    border-color: rgba(8, 127, 91, 0.22);
    background:
        linear-gradient(
            135deg,
            #0f7f59,
            #18a36f 58%,
            #86efac
        );
}

.feed_mode_button.vagas_publicas:hover {
    background:
        linear-gradient(
            135deg,
            #07543d,
            #12845e 64%,
            #5ddf91
        );
}

.feed_mode_button:focus-visible {
    outline: 3px solid rgba(1, 69, 242, 0.24);
    outline-offset: 3px;
}

.feed_mode_caret {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
}

.feed_mode_button[aria-expanded="true"]
    .feed_mode_caret {
    transform: rotate(225deg) translate(-2px, -2px);
}

.feed_mode_menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    z-index: 60;
    width: 232px;
    max-width: min(232px, calc(100vw - 48px));
    display: grid;
    gap: 4px;
    padding: 7px;
    border: 1px solid #d3ddea;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.15);
}

.feed_mode_menu[hidden] {
    display: none;
}

.feed_mode_option {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease;
}

.feed_mode_dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.12);
}

.feed_mode_option.projetos
    .feed_mode_dot {
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #2563eb
        );
}

.feed_mode_option.talentos
    .feed_mode_dot {
    background:
        linear-gradient(
            135deg,
            var(--talentos-strong),
            var(--talentos-accent)
        );
}

.feed_mode_option.vagas_publicas
    .feed_mode_dot {
    background:
        linear-gradient(
            135deg,
            #0f7f59,
            #86efac
        );
}

.feed_mode_option.projetos:hover,
.feed_mode_option.projetos:focus-visible,
.feed_mode_option.projetos.is_selected {
    border-color: rgba(1, 69, 242, 0.15);
    outline: none;
    background: #eef4ff;
    color: var(--blue);
}

.feed_mode_option.talentos:hover,
.feed_mode_option.talentos:focus-visible,
.feed_mode_option.talentos.is_selected {
    border-color: var(--talentos-border);
    outline: none;
    background: var(--talentos-soft);
    color: var(--talentos-dark);
}

.feed_mode_option.vagas_publicas:hover,
.feed_mode_option.vagas_publicas:focus-visible,
.feed_mode_option.vagas_publicas.is_selected {
    border-color: rgba(8, 127, 91, 0.18);
    outline: none;
    background: #ecfdf5;
    color: #047857;
}

.feed_mode_option.is_selected {
    font-weight: 700;
}

.discovery_heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.section_label,
.sidebar_label {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.discovery_heading h1 {
    max-width: 760px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.18;
    font-weight: 650;
}

.result_summary {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.search_toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    align-items: end;
    gap: 10px;
}

.search_field,
.filter_field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.search_field > span,
.filter_field > span {
    color: #475569;
    font-size: 11px;
    font-weight: 600;
}

.search_field input,
.filter_field select {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 7px;
    outline: none;
    background: var(--surface);
    color: var(--text);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.search_field input {
    height: 46px;
    padding: 0 15px;
    background: #fbfdff;
    font-size: 14px;
}

.search_field input::placeholder {
    color: #94a3b8;
}

.search_field input:focus,
.filter_field select:focus {
    border-color: rgba(1, 69, 242, 0.72);
    box-shadow: 0 0 0 3px rgba(1, 69, 242, 0.1);
    background: #ffffff;
}

.filter_toggle,
.clear_filters {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.filter_toggle {
    border: 1px solid rgba(1, 69, 242, 0.22);
    background: #f4f8ff;
    color: var(--blue);
}

.filter_toggle:hover,
.filter_toggle.active {
    border-color: rgba(1, 69, 242, 0.38);
    background: #eaf2ff;
    box-shadow: 0 5px 14px rgba(1, 69, 242, 0.08);
}

.clear_filters {
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--muted);
}

.clear_filters:hover {
    border-color: #c7d3e4;
    color: var(--text);
    background: var(--surface-soft);
}

.filters_panel {
    display: grid;
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e7edf5;
}

.filters_panel.is_collapsed {
    display: none;
}

.filter_field select {
    height: 40px;
    padding: 0 34px 0 11px;
    font-size: 12px;
}

.sr_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.area_filter {
    position: relative;
    min-width: 0;
}

.area_filter_button {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 11px;
    border: 1px solid var(--border);
    border-radius: 7px;
    outline: none;
    background: var(--surface);
    color: var(--text);
    font-size: 12px;
    text-align: left;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.area_filter_button > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.area_filter_button:hover {
    border-color: #c4d0df;
    background: #fbfdff;
}

.area_filter_button:focus-visible,
.area_filter_button[aria-expanded="true"] {
    border-color: rgba(1, 69, 242, 0.72);
    box-shadow: 0 0 0 3px rgba(1, 69, 242, 0.1);
    background: #ffffff;
}

.area_filter_caret {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-right: 1.5px solid #64748b;
    border-bottom: 1.5px solid #64748b;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
}

.area_filter_button[aria-expanded="true"]
    .area_filter_caret {
    transform: rotate(225deg) translate(-2px, -2px);
}

.area_filter_menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    z-index: 40;
    width: max(100%, 280px);
    max-width: calc(100vw - 48px);
    padding: 9px;
    border: 1px solid #cfd9e7;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.area_filter_menu[hidden] {
    display: none;
}

.area_filter_search {
    display: block;
}

.area_filter_search input {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    background: #f8fafc;
    color: var(--text);
    font-size: 12px;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.area_filter_search input::placeholder {
    color: #94a3b8;
}

.area_filter_search input:focus {
    border-color: rgba(1, 69, 242, 0.72);
    box-shadow: 0 0 0 3px rgba(1, 69, 242, 0.1);
    background: #ffffff;
}

.area_filter_options {
    max-height: 246px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
    padding-right: 3px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #b9c8dc transparent;
}

.area_filter_option {
    width: 100%;
    min-height: 34px;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: transparent;
    color: #334155;
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
}

.area_filter_option:hover,
.area_filter_option:focus-visible {
    border-color: rgba(1, 69, 242, 0.12);
    outline: none;
    background: #f1f6ff;
    color: var(--blue);
}

.area_filter_option.is_selected {
    border-color: rgba(1, 69, 242, 0.18);
    background: #eaf2ff;
    color: #1746a2;
    font-weight: 600;
}

.area_filter_empty {
    margin: 0;
    padding: 14px 9px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.active_filters {
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.active_filters:not(:empty) {
    margin-top: 14px;
}

.active_filter {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 9px;
    border: 1px solid rgba(1, 69, 242, 0.16);
    border-radius: 6px;
    background: #f4f8ff;
    color: #1746a2;
    font-size: 11px;
    font-weight: 600;
}

.active_filter:hover {
    border-color: rgba(1, 69, 242, 0.3);
    background: #eaf2ff;
}

.active_filter span:last-child {
    color: var(--blue);
    font-size: 15px;
    line-height: 1;
}

.app_shell {
    width: min(1440px, calc(100% - 40px));
    margin: 20px auto 40px;
    display: grid;
    grid-template-columns:
        minmax(180px, 210px)
        minmax(0, 1fr)
        minmax(220px, 260px);
    align-items: start;
    gap: 20px;
}

.sidebar,
.insight_panel,
.vacancy_summary,
.welcome,
.feed_card,
.feed_state {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.sidebar {
    position: sticky;
    top: 90px;
    padding: 16px 12px;
}

.sidebar_label {
    padding: 0 8px;
    color: #64748b;
}

.menu_item {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 9px 10px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.menu_item:hover,
.menu_item.active {
    background: #f1f6ff;
    color: var(--blue);
}

.menu_item.talentos_link:hover,
.menu_item.talentos_link:focus-visible {
    outline: none;
    background: var(--talentos-soft);
    color: var(--talentos-strong);
}

.menu_item.active {
    box-shadow: inset 2px 0 0 var(--blue);
}

.feed {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.welcome {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
}

.welcome h2 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 650;
}

.welcome p {
    max-width: 360px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    text-align: right;
}

.feed_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feed_loading_skeleton {
    --vantara-runtime-base: rgba(148, 163, 184, 0.16);
    --vantara-runtime-mid: rgba(96, 165, 250, 0.26);
    --vantara-runtime-border: rgba(96, 165, 250, 0.16);
    --vantara-runtime-shadow: 0 22px 52px rgba(15, 23, 42, 0.16);
}

.feed_loading_skeleton .vantara_runtime_skeleton_hero,
.feed_loading_skeleton .vantara_runtime_skeleton_card {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.88),
            rgba(239, 246, 255, 0.72)
        );
}

[data-theme="dark"] .feed_loading_skeleton,
body.dark .feed_loading_skeleton,
body.tema_escuro .feed_loading_skeleton {
    --vantara-runtime-base: rgba(30, 41, 59, 0.82);
    --vantara-runtime-mid: rgba(56, 189, 248, 0.28);
    --vantara-runtime-border: rgba(96, 165, 250, 0.18);
    --vantara-runtime-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .feed_loading_skeleton .vantara_runtime_skeleton_hero,
[data-theme="dark"] .feed_loading_skeleton .vantara_runtime_skeleton_card,
body.dark .feed_loading_skeleton .vantara_runtime_skeleton_hero,
body.dark .feed_loading_skeleton .vantara_runtime_skeleton_card,
body.tema_escuro .feed_loading_skeleton .vantara_runtime_skeleton_hero,
body.tema_escuro .feed_loading_skeleton .vantara_runtime_skeleton_card {
    background:
        linear-gradient(
            135deg,
            rgba(2, 8, 23, 0.82),
            rgba(15, 23, 42, 0.78)
        );
}

.feed_card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.feed_card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.feed_card:hover {
    border-color: #c9d7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.065);
}

.results_group_heading {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 4px;
    color: #526176;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.results_group_heading strong {
    min-width: 26px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    border-radius: 5px;
    background: #e8effa;
    color: #41516a;
    font-size: 10px;
}

.feed_card_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.project_identity {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project_identity_copy {
    min-width: 0;
}

.project_context_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.project_area_chip {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #f8fafc;
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
}

.project_initial {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #2563eb 65%,
            var(--cyan)
        );
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.project_initial_image {
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #ffffff;
    cursor: zoom-in;
}

.project_logo_zoom_button:focus-visible {
    outline: 3px solid rgba(1, 69, 242, 0.28);
    outline-offset: 3px;
}

.project_logo_zoom_button:hover {
    transform: translateY(-1px);
}

.project_initial_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

html.feed_project_logo_open,
html.feed_project_logo_open body {
    overflow: hidden;
}

.feed_project_logo_lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(77, 235, 255, 0.14),
            transparent 34%
        ),
        rgba(15, 23, 42, 0.72);
    animation: feed-logo-fade 180ms ease both;
}

.feed_project_logo_lightbox[hidden] {
    display: none;
}

.feed_project_logo_dialog {
    position: relative;
    width: min(78vw, 520px);
    aspect-ratio: 1;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.34);
    animation: feed-logo-pop 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feed_project_logo_expanded {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 21px;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #2563eb 64%,
            var(--cyan)
        );
}

.feed_project_logo_close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

@keyframes feed-logo-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes feed-logo-pop {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project_area {
    display: block;
    margin-bottom: 4px;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feed_card h3 {
    overflow-wrap: anywhere;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 650;
}

.status_badge {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 1px solid rgba(1, 69, 242, 0.13);
    border-radius: 6px;
    background: #f3f7ff;
    color: #234f9c;
    font-size: 10px;
    font-weight: 650;
}

.project_description {
    margin-top: 15px;
    color: #526176;
    font-size: 13px;
    line-height: 1.65;
}

.project_signals {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.project_signals > span {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border: 1px solid #e1e8f1;
    border-radius: 6px;
    background: #f8fafc;
    color: #526176;
    font-size: 10px;
    font-weight: 600;
}

.project_signals .investment_signal {
    border-color: #d6c8fa;
    background: #f7f4ff;
    color: #6651a6;
}

.project_signals .vacancy_signal {
    border-color: rgba(8, 127, 91, 0.18);
    background: var(--green-soft);
    color: var(--green-dark);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.skill_tag {
    padding: 5px 8px;
    border: 1px solid #dfe7f1;
    border-radius: 5px;
    background: #ffffff;
    color: #41516a;
    font-size: 10px;
    font-weight: 500;
}

.skill_tag.muted {
    color: #94a3b8;
}

.vacancy_card {
    border-color: rgba(8, 127, 91, 0.24);
    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #ffffff 62%,
            #f6fcf9 100%
        );
}

.vacancy_card::before {
    background:
        linear-gradient(
            90deg,
            var(--green-dark),
            #15946b 62%,
            #69d7b2
        );
}

.vacancy_card:hover {
    border-color: rgba(8, 127, 91, 0.36);
    box-shadow: 0 10px 26px rgba(8, 127, 91, 0.09);
}

.vacancy_context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -2px 0 17px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(8, 127, 91, 0.13);
}

.vacancy_context > div {
    min-width: 0;
}

.vacancy_context > div > span {
    display: block;
    margin-bottom: 3px;
    color: #718096;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.vacancy_context strong {
    display: block;
    overflow: hidden;
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vacancy_project_area {
    flex: 0 1 auto;
    padding: 5px 8px;
    border: 1px solid rgba(8, 127, 91, 0.15);
    border-radius: 5px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 600;
}

.vacancy_header {
    align-items: center;
}

.vacancy_label {
    display: block;
    margin-bottom: 5px;
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.vacancy_status {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 1px solid rgba(8, 127, 91, 0.18);
    border-radius: 6px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 700;
}

.vacancy_signals {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.vacancy_signals span {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border: 1px solid rgba(8, 127, 91, 0.15);
    border-radius: 6px;
    background: #f4fbf8;
    color: #326b59;
    font-size: 10px;
    font-weight: 600;
}

.vacancy_skills .skill_tag {
    border-color: rgba(8, 127, 91, 0.16);
    color: #326b59;
}

.vacancy_footer {
    border-top-color: rgba(8, 127, 91, 0.13);
}

.vacancy_primary,
.vacancy_secondary {
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.vacancy_primary {
    border: 1px solid rgba(8, 127, 91, 0.24);
    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            #15946b
        );
    box-shadow: 0 7px 16px rgba(8, 127, 91, 0.14);
    color: #ffffff;
}

.vacancy_primary:hover {
    background:
        linear-gradient(
            135deg,
            #044f3a,
            var(--green)
        );
}

.vacancy_secondary {
    border: 1px solid rgba(8, 127, 91, 0.2);
    background: #ffffff;
    color: var(--green-dark);
}

.vacancy_secondary:hover {
    border-color: rgba(8, 127, 91, 0.34);
    background: var(--green-soft);
}

.feed_vagas_publicas_page .discovery_identity_line {
    background:
        linear-gradient(
            90deg,
            #0f7f59,
            #18a36f,
            #86efac
        );
}

.feed_vagas_publicas_page .section_label {
    color: #047857;
}

.feed_vagas_publicas_page .vacancy_card {
    border-color: rgba(8, 127, 91, 0.2);
    box-shadow:
        0 12px 30px
        rgba(8, 127, 91, 0.07);
}

.feed_vagas_publicas_page .vacancy_context {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.feed_vagas_publicas_page .vacancy_header h3 {
    font-size: 1.18rem;
    letter-spacing: -0.035em;
}

.feed_vagas_publicas_page .vacancy_card .project_description {
    max-width: 760px;
}

.feed_vagas_publicas_page .vacancy_footer .project_author {
    color: #64748b;
}

.feed_load_more {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px dashed rgba(8, 127, 91, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(236, 253, 245, 0.82),
            rgba(255, 255, 255, 0.92)
        );
    color: #047857;
    font-size: 0.86rem;
    font-weight: 750;
}

.feed_load_more button {
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(8, 127, 91, 0.22);
    border-radius: 12px;
    background: #ffffff;
    color: #047857;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.feed_load_more button:hover,
.feed_load_more button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(8, 127, 91, 0.34);
    background: #ecfdf5;
    outline: none;
}

.feed_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #e8eef5;
}

.project_author {
    min-width: 0;
    color: #8491a5;
    font-size: 11px;
}

.project_author strong {
    color: #526176;
    font-weight: 600;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.primary,
.secondary,
.feed_state button {
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.primary {
    border: 1px solid rgba(1, 69, 242, 0.18);
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #2563eb
        );
    box-shadow: 0 7px 16px rgba(1, 69, 242, 0.16);
    color: #ffffff;
}

.primary:hover {
    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            #1d58d8
        );
}

.secondary {
    border: 1px solid rgba(8, 127, 91, 0.24);
    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            #15946b
        );
    box-shadow: 0 7px 16px rgba(8, 127, 91, 0.13);
    color: #ffffff;
}

.secondary:hover {
    border-color: rgba(5, 99, 71, 0.34);
    background:
        linear-gradient(
            135deg,
            #044f3a,
            var(--green)
        );
}

.right_panel {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.insight_panel {
    padding: 16px 14px;
}

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

.area_highlight {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #526176;
    text-align: left;
}

.area_highlight:hover {
    background: #f1f6ff;
    color: var(--blue);
}

.area_highlight span {
    min-width: 0;
    overflow: hidden;
    font-size: 11px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.area_highlight strong {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #edf3ff;
    color: var(--blue);
    font-size: 10px;
}

.aside_empty {
    padding: 8px;
    color: #94a3b8;
    font-size: 11px;
}

.vacancy_summary {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-color: rgba(8, 127, 91, 0.18);
}

.vacancy_summary::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background:
        linear-gradient(
            180deg,
            var(--green-dark),
            #37b58d
        );
}

.vacancy_summary span {
    color: #526176;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
}

.vacancy_summary strong {
    color: var(--green-dark);
    font-size: 24px;
    line-height: 1;
}

.feed_state {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 28px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

html.vantara_theme_dark body :where(.feed_discovery, .welcome, .insight_panel, .vacancy_summary) {
    background:
        linear-gradient(
            145deg,
            rgba(15, 23, 42, 0.94),
            rgba(2, 8, 23, 0.9)
        ) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    color: #e5edf7 !important;
}

html.vantara_theme_dark body .vacancy_summary {
    background:
        radial-gradient(circle at 92% 10%, rgba(34, 197, 94, 0.18), transparent 36%),
        linear-gradient(
            145deg,
            rgba(2, 8, 23, 0.96),
            rgba(5, 46, 33, 0.88)
        ) !important;
    border-color: rgba(134, 239, 172, 0.22) !important;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

html.vantara_theme_dark body .vacancy_summary::before {
    background:
        linear-gradient(
            180deg,
            #34d399,
            #86efac
        ) !important;
    opacity: 0.95 !important;
}

html.vantara_theme_dark body .vacancy_summary span {
    color: #bbf7d0 !important;
}

html.vantara_theme_dark body .feed_mode_menu,
html.vantara_theme_dark body .area_filter_menu {
    background: rgba(15, 23, 42, 0.98) !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34) !important;
}

html.vantara_theme_dark body .feed_mode_button.projetos {
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #2563eb 64%,
            var(--cyan)
        ) !important;
    color: #ffffff !important;
}

html.vantara_theme_dark body .feed_mode_button.talentos {
    background:
        linear-gradient(
            135deg,
            var(--talentos-strong),
            var(--talentos-main) 62%,
            var(--talentos-accent)
        ) !important;
    color: #ffffff !important;
}

html.vantara_theme_dark body .feed_mode_button.vagas_publicas {
    background:
        linear-gradient(
            135deg,
            #0f7f59,
            #18a36f 58%,
            #86efac
        ) !important;
    color: #ffffff !important;
}

html.vantara_theme_dark body .feed_mode_option {
    background: rgba(15, 23, 42, 0.72) !important;
    color: #cbd5e1 !important;
}

html.vantara_theme_dark body .feed_mode_option.projetos:hover,
html.vantara_theme_dark body .feed_mode_option.projetos:focus-visible,
html.vantara_theme_dark body .feed_mode_option.projetos.is_selected {
    background: rgba(1, 69, 242, 0.18) !important;
    border-color: rgba(77, 235, 255, 0.28) !important;
    color: #bfdbfe !important;
}

html.vantara_theme_dark body .feed_mode_option.talentos:hover,
html.vantara_theme_dark body .feed_mode_option.talentos:focus-visible,
html.vantara_theme_dark body .feed_mode_option.talentos.is_selected {
    background: rgba(234, 88, 12, 0.18) !important;
    border-color: rgba(251, 146, 60, 0.34) !important;
    color: #fed7aa !important;
}

html.vantara_theme_dark body .feed_mode_option.vagas_publicas:hover,
html.vantara_theme_dark body .feed_mode_option.vagas_publicas:focus-visible,
html.vantara_theme_dark body .feed_mode_option.vagas_publicas.is_selected {
    background: rgba(8, 127, 91, 0.2) !important;
    border-color: rgba(134, 239, 172, 0.3) !important;
    color: #bbf7d0 !important;
}

html.vantara_theme_dark body :where(
    .project_area_chip,
    .project_signals > span,
    .skill_tag,
    .status_badge,
    .results_group_heading strong,
    .active_filter
) {
    background: rgba(30, 41, 59, 0.92) !important;
    border-color: rgba(96, 165, 250, 0.26) !important;
    color: #dbeafe !important;
}

html.vantara_theme_dark body .project_signals .investment_signal {
    background: rgba(124, 58, 237, 0.18) !important;
    border-color: rgba(167, 139, 250, 0.28) !important;
    color: #ddd6fe !important;
}

html.vantara_theme_dark body .project_signals .vacancy_signal,
html.vantara_theme_dark body :where(
    .vacancy_project_area,
    .vacancy_status,
    .vacancy_signals span,
    .vacancy_skills .skill_tag
) {
    background: rgba(8, 127, 91, 0.18) !important;
    border-color: rgba(134, 239, 172, 0.28) !important;
    color: #bbf7d0 !important;
}

html.vantara_theme_dark body .area_highlight {
    background: transparent !important;
    color: #cbd5e1 !important;
}

html.vantara_theme_dark body .area_highlight:hover,
html.vantara_theme_dark body .area_highlight:focus-visible {
    background: rgba(30, 41, 59, 0.78) !important;
    color: #e5edf7 !important;
}

html.vantara_theme_dark body .area_highlight strong {
    background: rgba(30, 41, 59, 0.92) !important;
    border: 1px solid rgba(96, 165, 250, 0.24) !important;
    color: #bfdbfe !important;
}

html.vantara_theme_dark body.talentos_page .area_highlight strong {
    background: rgba(234, 88, 12, 0.16) !important;
    border-color: rgba(251, 146, 60, 0.28) !important;
    color: #fed7aa !important;
}

html.vantara_theme_dark body.talentos_page :where(
    .project_context_chips .project_area_chip,
    .project_context_chips .project_location_chip,
    .project_signals > span,
    .talento_card .project_area_chip,
    .talento_card .project_signals > span,
    .talent_card .project_area_chip,
    .talent_card .project_signals > span
) {
    background: rgba(154, 52, 18, 0.22) !important;
    border-color: rgba(251, 146, 60, 0.34) !important;
    color: #fed7aa !important;
    box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.08) !important;
}

html.vantara_theme_dark body.talentos_page :where(
    .project_signals .vacancy_signal,
    .talento_card .vacancy_signal,
    .talent_card .vacancy_signal
) {
    background: rgba(8, 127, 91, 0.2) !important;
    border-color: rgba(134, 239, 172, 0.3) !important;
    color: #bbf7d0 !important;
}

html.vantara_theme_dark body.feed_vagas_publicas_page .area_highlight strong,
html.vantara_theme_dark body.feed_vagas_publicas_page .vacancy_summary strong {
    background: rgba(8, 127, 91, 0.18) !important;
    border-color: rgba(134, 239, 172, 0.28) !important;
    color: #bbf7d0 !important;
}

html.vantara_theme_dark body .vacancy_summary strong {
    color: #ecfdf5 !important;
    text-shadow: 0 0 18px rgba(34, 197, 94, 0.24) !important;
}

html.vantara_theme_dark body .feed_state,
html.vantara_theme_dark body .feed_state.empty,
html.vantara_theme_dark body.feed_vagas_publicas_page .feed_state,
html.vantara_theme_dark body.talentos_page .feed_state {
    background:
        radial-gradient(
            circle at 18% 0,
            rgba(77, 235, 255, 0.08),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(15, 23, 42, 0.95),
            rgba(2, 8, 23, 0.92)
        ) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    color: #b7c6dc !important;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

html.vantara_theme_dark body .feed_state strong,
html.vantara_theme_dark body.feed_vagas_publicas_page .feed_state strong,
html.vantara_theme_dark body.talentos_page .feed_state strong {
    color: #f8fafc !important;
}

html.vantara_theme_dark body .feed_state p,
html.vantara_theme_dark body.feed_vagas_publicas_page .feed_state p,
html.vantara_theme_dark body.talentos_page .feed_state p {
    color: #94a3b8 !important;
}

html.vantara_theme_dark body .feed_state button,
html.vantara_theme_dark body.feed_vagas_publicas_page .feed_state button,
html.vantara_theme_dark body.talentos_page .feed_state button {
    background:
        linear-gradient(
            135deg,
            rgba(1, 69, 242, 0.2),
            rgba(77, 235, 255, 0.14)
        ) !important;
    border-color: rgba(96, 165, 250, 0.28) !important;
    color: #dbeafe !important;
}

.feed_state strong {
    color: var(--text);
    font-size: 15px;
}

.feed_state p {
    max-width: 440px;
    line-height: 1.55;
}

.feed_state button {
    margin-top: 6px;
    border: 1px solid rgba(1, 69, 242, 0.2);
    background: #f1f6ff;
    color: var(--blue);
}

.feed_state button:hover {
    border-color: rgba(1, 69, 242, 0.34);
    background: #e7f0ff;
}

.feed_state.error {
    border-color: rgba(190, 18, 60, 0.2);
}

.feed_state.error strong {
    color: var(--danger);
}

.feed_pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 14px 34px
        rgba(15, 23, 42, 0.06);
}

.feed_pagination_summary {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.feed_pagination_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.feed_pagination_button {
    min-width: 38px;
    height: 38px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 14px;
    background: #fff;
    color: var(--muted-strong);
    cursor: pointer;
    font-weight: 900;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.feed_pagination_button:hover:not(:disabled),
.feed_pagination_button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(1, 69, 242, 0.34);
    background: #eff6ff;
    color: var(--blue);
    box-shadow:
        0 12px 22px
        rgba(1, 69, 242, 0.11);
    outline: none;
}

.feed_pagination_button.is_current {
    border-color: rgba(1, 69, 242, 0.44);
    background: linear-gradient(
        135deg,
        #0145f2,
        #1db4ff
    );
    color: #fff;
    box-shadow:
        0 14px 26px
        rgba(1, 69, 242, 0.2);
}

.feed_pagination_button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.feed_pagination_gap {
    color: var(--muted);
    font-weight: 900;
    padding: 0 2px;
}

@media (max-width: 1180px) {
    .filters_panel {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .app_shell {
        grid-template-columns:
            minmax(180px, 210px)
            minmax(0, 1fr);
    }

    .right_panel {
        display: none;
    }
}

@media (max-width: 860px) {
    .navbar_inner,
    .discovery_wrap,
    .app_shell {
        width: min(100% - 24px, 720px);
    }

    .navbar_inner {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 10px;
    }

    .navbar nav {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .navbar nav::-webkit-scrollbar {
        display: none;
    }

    .navbar nav a {
        padding-right: 9px;
        padding-left: 9px;
    }

    .discovery_heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .result_summary {
        white-space: normal;
    }

    .filters_panel {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

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

    .sidebar {
        position: static;
        display: flex;
        align-items: center;
        gap: 4px;
        overflow-x: auto;
        padding: 8px;
        scrollbar-width: none;
    }

    .sidebar::-webkit-scrollbar {
        display: none;
    }

    .sidebar .sidebar_label,
    .sidebar .sidebar_label {
        display: none;
    }

    .menu_item {
        flex: 0 0 auto;
    }
}

@media (max-width: 620px) {
    .navbar_inner {
        min-height: 62px;
    }

    .navbar nav a {
        font-size: 12px;
    }

    .navbar nav a:nth-child(5) {
        display: none;
    }

    .discovery_wrap {
        margin-top: 12px;
    }

    .discovery_content {
        padding: 18px 15px 16px;
    }

    .feed_mode_selector {
        width: min(100%, 220px);
    }

    .feed_mode_menu {
        width: 100%;
        max-width: 100%;
    }

    .feed_pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .feed_pagination_summary {
        text-align: center;
    }

    .feed_pagination_controls {
        gap: 6px;
    }

    .feed_pagination_button {
        min-width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .discovery_heading h1 {
        font-size: 22px;
    }

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

    .search_field {
        grid-column: 1 / -1;
    }

    .filter_toggle,
    .clear_filters {
        width: 100%;
    }

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

    .app_shell {
        margin-top: 12px;
    }

    .welcome {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
    }

    .welcome p {
        text-align: left;
    }

    .feed_card {
        padding: 18px 15px 15px;
    }

    .feed_card_header,
    .feed_card_footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .vacancy_context {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .status_badge {
        margin-left: 54px;
    }

    .actions {
        width: 100%;
        justify-content: flex-start;
    }

    .primary,
    .secondary,
    .vacancy_primary,
    .vacancy_secondary {
        flex: 1 1 140px;
    }
}


/*
    ========================================
    REFINAMENTO FINAL — HEADER, AVATAR E FEED MODE
    ========================================
*/

.navbar nav a {
    position: relative;
}

.navbar nav a::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 4px;
    left: 10px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    opacity: 0;
    transform: scaleX(0.58);
    transition:
        opacity .18s ease,
        transform .18s ease,
        background .18s ease;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
    opacity: 1;
    transform: scaleX(1);
    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.navbar nav a.talentos_nav_link:hover::after,
.navbar nav a.talentos_nav_link.active::after {
    background:
        linear-gradient(
            90deg,
            var(--talentos-strong),
            var(--talentos-accent)
        );
}

.avatar_link {
    cursor: pointer;
}

.avatar_menu {
    overflow: hidden;
    transform-origin: top right;
    animation:
        avatarMenuEntrada
        .16s ease both;
}

.avatar_menu a {
    gap: 8px;
}

.avatar_menu a::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );
    opacity: .88;
}

@keyframes avatarMenuEntrada {
    from {
        opacity: 0;
        transform:
            translateY(-4px)
            scale(.98);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

.feed_mode_selector {
    isolation: isolate;
}

.feed_mode_button {
    position: relative;
    overflow: hidden;
}

.feed_mode_button::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255,255,255,.34),
            transparent 34%
        );
    opacity: .75;
    pointer-events: none;
}

.feed_mode_button span {
    position: relative;
    z-index: 1;
}

.feed_mode_menu {
    overflow: hidden;
    transform-origin: top left;
    animation:
        feedModeMenuEntrada
        .16s ease both;
}

@keyframes feedModeMenuEntrada {
    from {
        opacity: 0;
        transform:
            translateY(-5px)
            scale(.98);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

body.feed_transition_from_talents
    .feed_discovery,
body.talentos_page.feed_transition_from_projects
    .feed_discovery {
    animation:
        feedSurfaceColorEntry
        .82s ease both;
}

body.feed_transition_from_talents
    .discovery_identity_line,
body.talentos_page.feed_transition_from_projects
    .discovery_identity_line {
    animation:
        feedLineColorEntry
        .82s ease both;
}

body.feed_transition_from_talents
    .section_label,
body.talentos_page.feed_transition_from_projects
    .section_label {
    animation:
        feedLabelColorEntry
        .82s ease both;
}

@keyframes feedSurfaceColorEntry {
    0% {
        border-color: rgba(249,115,22,.26);
        box-shadow:
            0 15px 34px
            rgba(194,65,12,.07);
    }

    100% {
        border-color: var(--border);
        box-shadow:
            0 12px 30px
            rgba(15,23,42,.055);
    }
}

@keyframes feedLineColorEntry {
    0% {
        filter:
            saturate(1.2)
            hue-rotate(28deg);
    }

    100% {
        filter: none;
    }
}

@keyframes feedLabelColorEntry {
    0% {
        opacity: .64;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 700px) {

    .navbar_inner {
        width: min(100% - 24px, 1440px);
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 12px;
    }

    .navbar nav {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .navbar nav::-webkit-scrollbar {
        display: none;
    }

    .feed_mode_selector {
        width: 100%;
        max-width: 260px;
    }

}

/*
    ========================================
    VANTARA — NAVBAR PADRONIZADA
    ========================================
*/

:root {
    --nav-blue: #0145f2;
    --nav-blue-2: #2563eb;
    --nav-cyan: #4debff;
    --nav-green: #047857;
    --nav-green-2: #10b981;
    --nav-green-soft: #ecfdf5;
    --nav-orange: #ea580c;
    --nav-orange-strong: #c2410c;
    --nav-orange-accent: #fb923c;
    --nav-orange-soft: #fff7ed;
    --nav-border: #dbe3f0;
    --nav-muted: #64748b;
}

.navbar nav a {
    position: relative;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--nav-muted);
    white-space: nowrap;
    transition:
        color .18s ease,
        background .18s ease,
        transform .18s ease;
}

.navbar nav a::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(.56);
    transform-origin: center;
    background:
        linear-gradient(
            90deg,
            var(--nav-blue),
            var(--nav-cyan)
        );
    transition:
        opacity .18s ease,
        transform .18s ease,
        background .18s ease;
}

.navbar nav a:hover,
.navbar nav a:focus-visible,
.navbar nav a.active {
    outline: none;
    color: var(--nav-blue);
    background: #f1f6ff;
}

.navbar nav a:hover::after,
.navbar nav a:focus-visible::after,
.navbar nav a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar nav a.nav_talentos_link:hover,
.navbar nav a.nav_talentos_link:focus-visible,
.navbar nav a.nav_talentos_link.active,
.navbar nav a.talentos_nav_link:hover,
.navbar nav a.talentos_nav_link:focus-visible,
.navbar nav a.talentos_nav_link.active {
    color: var(--nav-orange-strong);
    background: var(--nav-orange-soft);
}

.navbar nav a.nav_talentos_link::after,
.navbar nav a.talentos_nav_link::after {
    background:
        linear-gradient(
            90deg,
            var(--nav-orange-strong),
            var(--nav-orange-accent)
        );
}

.navbar nav a.nav_vagas_link:hover,
.navbar nav a.nav_vagas_link:focus-visible,
.navbar nav a.nav_vagas_link.active {
    color: var(--nav-green);
    background: var(--nav-green-soft);
}

.navbar nav a.nav_vagas_link::after {
    background:
        linear-gradient(
            90deg,
            var(--nav-green),
            var(--nav-green-2)
        );
}

.navbar nav a.nav_projetos_link:hover,
.navbar nav a.nav_projetos_link:focus-visible,
.navbar nav a.nav_projetos_link.active,
.navbar nav a.nav_feed_link:hover,
.navbar nav a.nav_feed_link:focus-visible,
.navbar nav a.nav_feed_link.active,
.navbar nav a.nav_mensagens_link:hover,
.navbar nav a.nav_mensagens_link:focus-visible,
.navbar nav a.nav_mensagens_link.active {
    color: var(--nav-blue);
    background: #f1f6ff;
}

.navbar nav a.nav_projetos_link::after,
.navbar nav a.nav_feed_link::after,
.navbar nav a.nav_mensagens_link::after {
    background:
        linear-gradient(
            90deg,
            var(--nav-blue),
            var(--nav-cyan)
        );
}

.user,
.user_area {
    position: relative;
}

.avatar_link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.avatar_link:focus-visible {
    outline: 3px solid rgba(1,69,242,.18);
    outline-offset: 3px;
}

.avatar_menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 80;
    width: 196px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15,23,42,.15);
    transform-origin: top right;
    animation: avatarMenuEntrada .16s ease both;
}

.avatar_menu[hidden] {
    display: none;
}

.avatar_menu::before {
    content: "";
    position: absolute;
    top: 0;
    right: 10px;
    left: 10px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background:
        linear-gradient(
            90deg,
            var(--nav-blue),
            var(--nav-cyan)
        );
}

.avatar_menu_label {
    display: block;
    padding: 10px 10px 7px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .55px;
    text-transform: uppercase;
}

.avatar_menu a {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 8px;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    transition:
        background .18s ease,
        color .18s ease;
}

.avatar_menu a::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            var(--nav-blue),
            var(--nav-cyan)
        );
}

.avatar_menu a:hover,
.avatar_menu a:focus-visible {
    outline: none;
    background: #f1f6ff;
    color: var(--nav-blue);
}

.menu_talentos:hover,
.menu_talentos.active {
    background: var(--nav-orange-soft) !important;
    color: var(--nav-orange-strong) !important;
}

.menu_talentos:focus-visible {
    outline: 3px solid rgba(249,115,22,.22);
    outline-offset: 2px;
}

@keyframes avatarMenuEntrada {
    from {
        opacity: 0;
        transform: translateY(-5px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 760px) {
    .navbar {
        padding-right: 18px;
        padding-left: 18px;
    }

    .navbar nav {
        max-width: 64vw;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 8px;
        scrollbar-width: none;
    }

    .navbar nav::-webkit-scrollbar {
        display: none;
    }
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: vantara-page-exit 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

::view-transition-new(root) {
    animation: vantara-page-enter 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes vantara-page-exit {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(var(--vantara-page-exit-x, -18px)) scale(0.992);
    }
}

@keyframes vantara-page-enter {
    from {
        opacity: 0;
        transform: translateX(var(--vantara-page-enter-x, 18px)) scale(0.992);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none !important;
    }

    .project_logo_zoom_button,
    .feed_project_logo_lightbox,
    .feed_project_logo_dialog {
        animation: none !important;
        transition: none !important;
    }

    * {
        scroll-behavior: auto !important;
    }
}


/*
    ========================================
    VANTARA MOBILE APP DENSITY
    ========================================
*/

@media (max-width: 768px) {
    body {
        background: #edf1f5;
    }

    .container {
        width: 100%;
        gap: 14px;
        padding: 14px;
    }

    .main_content,
    .feed_column,
    .feed_panel,
    .feed_list {
        min-width: 0;
    }

    .feed_list {
        gap: 11px;
    }

    .feed_card {
        padding: 16px;
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
    }

    .feed_card_header {
        gap: 12px;
    }

    .project_identity {
        gap: 10px;
    }

    .project_initial {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
        font-size: 15px;
    }

    .feed_project_logo_dialog {
        width: min(84vw, 340px);
    }

    .project_area,
    .vacancy_label {
        margin-bottom: 3px;
        font-size: 10px;
    }

    .feed_card h3 {
        font-size: 16px;
        line-height: 1.22;
        letter-spacing: -0.25px;
    }

    .status_badge,
    .vacancy_status {
        padding: 4px 7px;
        border-radius: 999px;
        font-size: 9px;
    }

    .project_description,
    .talento_bio,
    .vacancy_card .project_description {
        margin-top: 10px;
        overflow: hidden;
        display: -webkit-box;
        color: #526176;
        font-size: 13px;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .project_context_chips,
    .project_signals,
    .vacancy_signals,
    .skills {
        gap: 5px;
        margin-top: 10px;
    }

    .project_area_chip,
    .project_signals > span,
    .vacancy_signals span,
    .skill_tag {
        min-height: 24px;
        padding: 4px 7px;
        border-radius: 999px;
        font-size: 10px;
        line-height: 1;
    }

    .vacancy_context {
        gap: 10px;
        margin: -2px 0 12px;
        padding-bottom: 10px;
    }

    .vacancy_context strong {
        font-size: 12px;
    }

    .vacancy_project_area {
        padding: 4px 7px;
        border-radius: 999px;
        font-size: 9px;
    }

    .feed_card_footer {
        align-items: flex-start;
        gap: 10px;
        margin-top: 13px;
        padding-top: 12px;
    }

    .project_author {
        font-size: 10px;
        line-height: 1.35;
    }

    .actions {
        gap: 6px;
    }

    .primary,
    .secondary,
    .vacancy_primary,
    .vacancy_secondary,
    .feed_state button {
        min-height: 36px;
        padding: 8px 11px;
        border-radius: 12px;
        font-size: 12px;
    }

    .feed_mode_selector,
    .feed_mode_panel,
    .search_filters,
    .filters_panel {
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }

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

    .feed_card_header,
    .feed_card_footer,
    .vacancy_context {
        flex-direction: column;
        align-items: stretch;
    }

    .status_badge,
    .vacancy_status,
    .vacancy_project_area {
        width: fit-content;
    }

    .feed_card h3 {
        font-size: 15.5px;
    }

    .project_description,
    .vacancy_card .project_description {
        -webkit-line-clamp: 2;
    }

    .actions {
        justify-content: stretch;
    }

    .actions .primary,
    .actions .secondary,
    .vacancy_primary,
    .vacancy_secondary {
        flex: 1 1 auto;
    }
}

html.vantara_page_reveal body {
    animation: vantara-page-enter 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
    html.vantara_page_reveal body {
        animation: none !important;
    }
}

/*
    Mobile card compactness refinement.
    Mantem os cards com cara de app: menos altura inutil e botoes em grade.
*/

@media (max-width: 768px) {
    .feed_card {
        padding: 14px;
    }

    .feed_card_footer {
        gap: 8px;
        margin-top: 10px;
        padding-top: 10px;
    }

    .actions {
        gap: 7px;
    }

    .primary,
    .secondary,
    .vacancy_primary,
    .vacancy_secondary,
    .feed_state button {
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 11px;
    }
}

@media (max-width: 480px) {
    .feed_card_header {
        flex-direction: row;
        align-items: flex-start;
    }

    .feed_card_footer {
        flex-direction: column;
        align-items: stretch;
    }

    .vacancy_context {
        gap: 8px;
    }

    .actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
    }

    .actions .primary,
    .actions .secondary,
    .vacancy_primary,
    .vacancy_secondary {
        width: 100%;
        min-width: 0;
        flex: initial;
    }
}

@media (max-width: 360px) {
    .actions {
        grid-template-columns: 1fr;
    }
}
