*,
*::before,
*::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Urbanist, system-ui, sans-serif;
    background: #fff;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.topbar {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #fff 57%);
    border-bottom: 1px solid #a2b7e840;
}

.topbar__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.brand img {
    height: 32px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
}

.conteudo {
    min-height: calc(100svh - 72px);
    padding: 56px 0 72px;
    background:
        linear-gradient(94deg, rgba(255, 0, 154, 0.05) -0.05%, rgba(255, 0, 92, 0) 32.16%),
        linear-gradient(105deg, rgba(0, 70, 209, 0) 33.84%, rgba(162, 196, 233, 0.12) 69.93%);
}

.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

.topo-busca {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.topo-busca strong {
    display: inline-flex;
    padding: 1px;
    border-radius: 50px;
    background: radial-gradient(circle, #0066ffb3, #d6dcff, #ff007a33);
    background-size: 200% 200%;
    animation: rotateBackground 6s ease-in-out infinite;
}

.topo-busca h5 {
    margin: 0;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #737E97;
    background: #ffffffc9;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.topo-busca h5 figure {
    display: inline-flex;
    width: 20px;
    height: 20px;
    margin: 0 6px 0 0;
    align-items: center;
    justify-content: center;
}

.topo-busca h5 b {
    color: #0066FF;
    margin-left: 4px;
}

.topo-busca h1 {
    margin: 10px 0 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    background-image: linear-gradient(90deg, #6e40aa, #963db3, #ff0050, #008eff, #ff0050, #008eff);
    background-size: 500% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bv-search-form {
    width: 100%;
    margin-top: 22px;
    border-radius: 14px;
    border: 1px solid #dce4f1;
    border-bottom: 2px solid #0066ff;
    box-shadow: 0 12px 40px rgba(61, 101, 159, 0.08);
    padding: 18px;
    background: #fff;
}

.bv-search-form__inner {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.bv-search-form__input,
.bv-search-form__select {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #dce4f1;
    padding: 0 14px;
    font-family: Urbanist, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    background: #fff;
}

.bv-search-form__input { flex: 1 1 auto; min-width: 0; }
.bv-search-form__select { flex: 0 0 190px; }

.cs {
    position: relative;
    flex: 0 0 190px;
    min-width: 150px;
    display: block;
}

.cs__toggle {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #dce4f1;
    border-radius: 10px;
    background: #fff;
    font-family: Urbanist, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    text-align: left;
}

.cs__toggle:hover { border-color: #b9cdec; }

.cs.cs--open .cs__toggle {
    border-color: #0073ff;
    box-shadow: 0 0 0 3px rgba(0, 115, 255, 0.12);
}

.cs__value {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cs.cs--placeholder .cs__value {
    color: #94a3b8;
    font-weight: 500;
}

.cs__value.cs__value--with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cs__arrow {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #64748b;
    transition: transform 0.2s ease;
}

.cs.cs--open .cs__arrow { transform: rotate(180deg); }

.cs__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 80;
    min-width: 100%;
    width: max(100%, 240px);
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border: 1px solid #e6edf6;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
}

.cs.cs--open .cs__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.3;
    color: #334155;
    cursor: pointer;
}

.cs__option + .cs__option { margin-top: 2px; }
.cs__option:hover { background: #f1f6ff; color: #0368ff; }
.cs__option.is-selected { background: #eef4ff; color: #0368ff; font-weight: 600; }

.cs__option.is-selected::after {
    content: "";
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%230368ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.cs__option-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
}

.cs__option-icon svg { width: 16px; height: 16px; display: block; }
.cs__option-text { flex: 1; min-width: 0; font-weight: 600; }
.cs__option-icon--junior { background: #ecfdf5; color: #059669; }
.cs__option-icon--pleno { background: #fef3c7; color: #d97706; }
.cs__option-icon--senior { background: #ede9fe; color: #7c3aed; }
.cs__option-icon--especialista { background: #fce7f3; color: #db2777; }

.cs__value.cs__value--with-icon .cs__option-icon {
    width: 24px;
    height: 24px;
}
.cs__value.cs__value--with-icon .cs__option-icon svg {
    width: 14px;
    height: 14px;
}

.bv-search-form__btn {
    flex: 0 0 auto;
    min-width: 148px;
    height: 52px;
    border: 0;
    border-radius: 10px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-family: Urbanist, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(93deg, #0066ff -3.82%, #00bfa6 104.23%);
}

.bv-search-form__btn figure {
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin: 0;
}

.count {
    margin: 16px 0 0;
    font-size: 13px;
    color: #94a3b8;
}

.buscavagas { padding: 32px 0 0; }

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

.vaga-link { text-decoration: none; display: block; height: 100%; }

.card-vaga {
    height: 100%;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(158, 175, 202, 0.12) 0%, rgba(198, 213, 251, 0.35) 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-vaga:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(3, 104, 255, 0.1);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.08) 0%, rgba(198, 213, 251, 0.45) 100%);
}

.card-vaga-mask {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 148px;
    padding: 18px 56px 18px 18px;
    border-radius: 13px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #fff;
}

.card-vaga-mask figure {
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

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

.card-vaga h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-vaga span {
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #0368ff;
    background: #eff6ff;
    border: 1px solid rgba(3, 104, 255, 0.12);
}

.card-vaga-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag-tipo,
.tag-salario {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.tag-tipo { color: #7c3aed; background: #f5f3ff; }
.tag-salario { color: #059669; background: #ecfdf5; }

.arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1f5f9;
}

.card-vaga:hover .arrow { background: #eff6ff; }

.vaga-empty {
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-align: center;
    color: #64748b;
}

.vaga-empty a { color: #0368ff; }

.foot {
    margin: 28px 0 0;
    font-size: 14px;
    color: #64748b;
    text-align: left;
}

.foot a { color: #0368ff; }

.pj-foot {
    width: 100%;
    max-width: none;
    margin: 0;
    background: #0b1224;
    color: #c8d0e0;
    padding: 48px 20px 28px;
    text-align: left;
}
.pj-foot__grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: 40px;
    align-items: start;
}
.pj-foot__brand { text-align: left; }
.pj-foot__brand img { display: block; height: 34px; width: auto; margin: 0 0 20px; }
.pj-foot__brand p {
    margin: 0 0 20px;
    max-width: 320px;
    font-size: 15px;
    line-height: 1.6;
    color: #8f9bb3;
    text-align: left;
}
.pj-foot__cta {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    background: #0368ff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.pj-foot__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    text-align: left;
}
.pj-foot__nav h4 {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
}
.pj-foot__nav ul { list-style: none; margin: 0; padding: 0; }
.pj-foot__nav li { margin: 0 0 10px; }
.pj-foot__nav a { color: #c8d0e0; text-decoration: none; }
.pj-foot__nav a:hover { color: #fff; }
.pj-foot__legal {
    max-width: 1120px;
    margin: 36px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #8f9bb3;
    text-align: left;
}
@media (max-width: 800px) {
    .pj-foot__grid,
    .pj-foot__nav { grid-template-columns: 1fr; }
}

@keyframes rotateBackground {
    0% { background-position: 100% 0%; }
    25% { background-position: 100% 100%; }
    50% { background-position: 0% 100%; }
    75% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

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

@media (max-width: 640px) {
    .conteudo { padding: 32px 0 48px; }
    .bv-search-form__inner { flex-direction: column; }
    .bv-search-form__select,
    .cs,
    .bv-search-form__btn { width: 100%; flex: 1 1 auto; }
}

.crumbs {
    margin: 0 0 20px;
    font-size: 13px;
    color: #64748b;
}

.crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.crumbs li {
    display: inline-flex;
    align-items: center;
}

.crumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #e2e8f0;
}

.crumbs a {
    color: #0368ff;
    text-decoration: none;
}

.crumbs a:hover { text-decoration: underline; }

.seo-nav { margin-top: 28px; }

.seo-nav__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.seo-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.seo-nav a {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    color: #7c3aed;
    background: #f5f3ff;
}

.seo-nav a:hover { color: #0368ff; background: #eff6ff; }

.pager { margin: 24px 0 0; }

.pager ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pager a,
.pager span {
    display: inline-flex;
    min-width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    font-family: Urbanist, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.pager a { color: #0368ff; }
.pager a:hover { background: #eff6ff; }
.pager span[aria-current="page"] {
    background: #0368ff;
    color: #fff;
    border-color: #0368ff;
}

.cat-intro {
    margin: 28px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    text-align: center;
}

.job {
    margin: 8px 0 0;
    padding: 28px 24px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.job h1 {
    margin: 8px 0 0;
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.job__kicker {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0368ff;
}

.job__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
}

.job__meta > span:first-child {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #0368ff;
    background: #eff6ff;
    border: 1px solid rgba(3, 104, 255, 0.12);
}

.job__resumo {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: #64748b;
}

.job .js-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(93deg, #0066ff -3.82%, #00bfa6 104.23%);
}

.job__related {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
}

.job__related a { text-decoration: none; }

.job__aviso {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.job__facts {
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px 16px;
}

.job__facts dt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.job__facts dd {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.job__bloco {
    margin: 22px 0 0;
}

.job__bloco h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.job__bloco p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #334155;
    white-space: pre-line;
}

.job p > a:not(.js-apply):not(.tag-tipo) { color: #0368ff; }

