/* ===================================
   TRABALHE CONOSCO PAGE
   It! Wheel - Trabalhe Conosco
   =================================== */


/* =============================================
   GLOBAL BTN OVERRIDE (orange pattern)
   ============================================= */
.vagas-gradient-wrapper .btn {
        display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
    border: none;
    border-radius: 64px;
    color: #FFF;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 30px;
    position: relative;
    overflow: hidden;
    height: 48px;
    z-index: 0;
    transition: all 0.5s ease;
}

.vagas-gradient-wrapper .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 64px;
    background: linear-gradient(180deg, #58BED1 0%, #014A6E 140.35%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.vagas-gradient-wrapper .btn::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #FFF;
    transform: translateY(0%);
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vagas-gradient-wrapper .btn span {
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.5s ease;
    color: #FFF;
}

.vagas-gradient-wrapper .btn:hover {
    
    box-shadow: 0px 0px 0px 3px rgba(60, 60, 60, 0.15);
}

.vagas-gradient-wrapper .btn:hover::after {
    opacity: 1;
}

.vagas-gradient-wrapper .btn:hover span {
    transform: translateY(-250%);
}

.vagas-gradient-wrapper .btn:hover::before {
    transform: translateY(-100%);
}


/* =============================================
   BODY BG — match gradient bottom to kill white
   ============================================= */
body:has(.vagas-gradient-wrapper) {
    background: #EEF7F8 !important;
}


/* =============================================
   GRADIENT BACKGROUND WRAPPER
   ============================================= */
.vagas-gradient-wrapper {
    position: relative;
    background: linear-gradient(180deg, #C6EBF6 0%, #EEF7F8 100%);
    overflow: visible;
    isolation: isolate;
}

/* Parceiros section inside gradient: harmonize bg2 band */
.vagas-gradient-wrapper .section-parceiros {
    margin-top: 0;
}
.vagas-gradient-wrapper .section-parceiros .bg2 {
    background-color: #D2EAEF !important;
}


/* =============================================
   BANNER HERO + LINHA INVERTIDA
   (Same pattern as blog/contato)
   ============================================= */
.vagas-banner-wrapper {
    z-index: auto;
}

.vagas-banner {
    position: relative;
    width: 100%;
    overflow: visible !important;
    top: -90px;
}

.vagas-banner-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Dark gradient overlay for header contrast */
.vagas-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.97) 0%, rgba(11, 11, 11, 0) 100%);
}

/* Text overlay */
.vagas-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vagas-banner-text {
    text-align: left;
}

.vagas-banner-text h1 {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 400;
    font-size: 45px;
    line-height: 54px;
    letter-spacing: 0.02em;
    color: #FFF;
    text-transform: uppercase;
    margin-left: 350px;
    z-index: 3;
}

/* Linha invertida — clip-path reveal top→bottom */
.vagas-banner-linha {
    position: absolute;
    right: 0;
    bottom: -186px;
    width: auto;
    z-index: 115;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    animation: vagasClipRevealTopBottom 3.5s cubic-bezier(0.22, 1, 0.36, 1.5) 0.3s forwards;
}

@keyframes vagasClipRevealTopBottom {
    0%   { clip-path: inset(0 0 100% 0); }
    100% { clip-path: inset(0 0 0% 0); }
}


/* =============================================
   BARRA INGRESSOS
   (Same as blog/contato — reuses sticky-ingresso-* classes)
   ============================================= */
.vagas-ingresso-anchor {
    position: relative;
    z-index: 120;
    display: flex;
    justify-content: flex-end;
    margin-top: -280px;
}

.vagas-ingresso-anchor.has-placeholder {
    min-height: 79px;
}

.vagas-ingresso-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px 0 40px;
    width: 1109px;
    max-width: 100%;
    height: 79px;
    background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    transform: translateX(110%);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    pointer-events: none;
}

.vagas-ingresso-bar.is-visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Stagger children */
.vagas-ingresso-bar .sticky-ingresso-label,
.vagas-ingresso-bar .sticky-ingresso-btn {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.vagas-ingresso-bar.is-visible .sticky-ingresso-label {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}
.vagas-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}
.vagas-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}
.vagas-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.75s;
}

/* Stuck near top */
.vagas-ingresso-bar.is-stuck {
    position: fixed;
    top: 15px;
    right: 0;
    z-index: 201;
    border-radius: 200px 0 0 200px;
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}
.vagas-ingresso-bar.is-stuck .sticky-ingresso-label,
.vagas-ingresso-bar.is-stuck .sticky-ingresso-btn {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
}

/* Scale label & buttons */
.vagas-ingresso-bar .sticky-ingresso-label {
    font-size: 16px;
    margin-right: 12px;
}
.vagas-ingresso-bar .sticky-ingresso-btn {
    font-size: 13px;
    padding: 9px 20px;
    width: 152px;
    height: 44px;
}
.vagas-ingresso-bar .sticky-ingresso-btn img {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
    margin-left: -5px;
}
.vagas-ingresso-bar .sticky-ingresso-btn span {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vagas-ingresso-anchor {
    overflow: hidden;
}

.vagas-ingresso-bar.is-stuck,
.vagas-ingresso-bar.is-stuck {
    position: fixed;
    right: 0;
    z-index: 201;
    border-radius: 200px 0 0 200px;
    transform-origin: right center;
    transform: scaleX(0.82) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    will-change: transform, opacity;
}

.vagas-ingresso-bar.is-stuck.is-stuck-active {
    transform: scaleX(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.vagas-ingresso-bar.is-banner-hidden {
    transform-origin: right center;
    transform: scaleX(0.82) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.vagas-ingresso-bar.is-stuck-top {
    top: 15px;
    bottom: auto;
}

.vagas-ingresso-bar.is-stuck-bottom {
    top: auto;
    bottom: var(--vagas-mobile-ingresso-bottom-gap, 16px);
}

.vagas-ingresso-bar .sticky-ingresso-label {
    color: #fff;
}


/* =============================================
   NUVENS FLUTUANTES (same as blog/contato)
   ============================================= */
.vagas-nuvens {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

.vagas-nuvens .nuvem-float {
    position: absolute;
    height: auto;
    will-change: transform;
}

.vagas-nuvens .nuvem1 {
    top: 10%;
    width: 918px;
    animation: vagasNuvemDrift1 160s linear infinite;
    animation-delay: -110s;
}
.vagas-nuvens .nuvem2 {
    top: 8%;
    width: 683px;
    animation: vagasNuvemDrift2 180s linear infinite;
    animation-delay: -70s;
}
.vagas-nuvens .nuvem3 {
    top: 2%;
    width: 1071px;
    animation: vagasNuvemDrift3 200s linear infinite;
    animation-delay: -20s;
}

@keyframes vagasNuvemDrift1 {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-120%); }
}
@keyframes vagasNuvemDrift2 {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-120%); }
}
@keyframes vagasNuvemDrift3 {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-120%); }
}


/* =============================================
   VAGAS CONTENT
   ============================================= */
.vagas-content {
    position: relative;
    z-index: 4;
    padding: 120px 0 100px;
}

.vagas-content .wrap {
    max-width: 1280px;
    position: relative;
}


/* --- Intro section: title + description + astronaut --- */
.vagas-intro {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.vagas-intro-text {
    flex: 1;
    max-width: 680px;
}

.vagas-intro-title {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #EC6608;
    margin: 0 0 30px;
}

.vagas-intro-desc {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0;
    color: #279BB1;
    margin: 0;
    max-width: 690px;
}

/* Astronauta direita — floating */
.vagas-astronauta {
    flex: 0 0 auto;
    width: 220px;
    pointer-events: none;
    margin-top: -20px;
    margin-left: 100px;
}

.vagas-astronauta img {
    width: 100%;
    height: auto;
    display: block;
    animation: astronaut-bob 3s ease-in-out infinite;
}

@keyframes astronaut-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}


/* --- Vagas section title --- */
.vagas-section-title {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #EC6608;
    margin: 0 0 40px;
}

.vagas-section-title br.home-mobile-break {
    display: none;
}
.vagas-intro-desc br.home-mobile-break {
    display: none;
}

/* --- Divider line below section title --- */
.vagas-divider-top {
    border: none;
    border-top: 2px solid #EC6608;
    margin: 20px 0 30px;
    opacity: 1;
}

/* --- Vagas count --- */
.vagas-count {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    color: #279BB1;
    margin: 0 0 30px;
}

.vagas-count strong {
    font-weight: 700;
}


/* =============================================
   FILTER BAR
   ============================================= */
.vagas-filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: 2px solid #279BB1;
    border-radius: 40px;
    padding: 16px 20px;
    margin-bottom: 10px;
    position: relative;
    z-index: 20;
    isolation: isolate;
}

.vagas-filter-select {
    flex: 1;
    position: relative;
    z-index: 1;
}

.vagas-filter-select.is-wide {
    flex: 1.5;
}

.vagas-filter-select select {
    width: 100%;
    height: 46px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    padding: 0 40px 0 22px;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    color: #279BB1;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.3s ease;
}

.vagas-filter-select select:focus {
    border-color: #279BB1;
}

.vagas-filter-ico {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 5px;
    pointer-events: none;
}

.vagas-filter-btn {
    flex-shrink: 0;
    height: 46px;
    padding: 0 28px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.vagas-filter-btn span {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    color: #5D767A;
    transition: color 0.3s ease;
}

.vagas-filter-btn i {
    font-size: 14px;
    color: #5D767A;
    transition: color 0.3s ease;
}

.vagas-filter-btn:hover {
    border-color: #279BB1;
    background: #279BB1;
}

.vagas-filter-btn:hover span,
.vagas-filter-btn:hover i {
    color: #FFF;
}

/* =============================================
   VAGAS FILTER — custom animated dropdown
   Replaces native <select> via JS
   ============================================= */
.vagas-filter-bar {
    overflow: visible;
}
.vagas-filter-select {
    overflow: visible;
}
.vagas-filter-custom-btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    padding: 0 18px 0 22px;
    gap: 10px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.vagas-filter-custom-btn:hover {
    background: rgba(39, 155, 177, 0.06);
}
.vagas-filter-custom-label {
    flex: 1;
    text-align: left;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    color: #279BB1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Arrow: override absolute positioning from base .vagas-filter-ico */
.vagas-filter-custom-btn .vagas-filter-ico {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    flex-shrink: 0;
    width: 10px;
    height: 5px;
    transition: transform 0.25s ease;
}
.vagas-filter-wrap.is-open .vagas-filter-custom-btn .vagas-filter-ico {
    transform: rotate(180deg);
}
.vagas-filter-wrap.is-open {
    z-index: 40;
}
/* Dropdown list — gradient, slides down with float-up animation */
.vagas-filter-custom-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 140px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: linear-gradient(180deg, #EEF7F8 0%, #9FE4F1 100%);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease, transform 0.28s ease;
    z-index: 300;
}
.vagas-filter-wrap.is-open .vagas-filter-custom-list {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
    padding: 12px 10px;
    transform: translateY(0);
}
.vagas-filter-custom-item {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 50px;
    color: #279BB1;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 4px;
    white-space: nowrap;
    transition: background 0.15s ease;
}
.vagas-filter-custom-item:last-child { margin-bottom: 0; }
.vagas-filter-custom-item:hover { background: rgba(255,255,255,0.6); }
.vagas-filter-custom-item.is-selected { font-size: 14px; font-weight: 600; color: #EC6608; }
.vagas-filter-custom-item[data-value=""] { opacity: 0.65; }


/* =============================================
   VAGAS LIST — inside box
   ============================================= */
.vagas-box {
    --vagas-row-hover-inset-block: 6px;
    --vagas-row-hover-inset-inline: -28px;
    --vagas-row-hover-radius: 20px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    padding: 0 40px;
    background: transparent;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.vagas-list-item {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(140px, 1fr) minmax(140px, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    text-decoration: none;
    position: relative;
    isolation: isolate;
    z-index: 0;
    transition: background-color 0.25s ease;
}

.vagas-list-item::before {
    content: '';
    position: absolute;
    top: var(--vagas-row-hover-inset-block);
    right: var(--vagas-row-hover-inset-inline);
    bottom: var(--vagas-row-hover-inset-block);
    left: var(--vagas-row-hover-inset-inline);
    border-radius: var(--vagas-row-hover-radius);
    background: rgba(39, 155, 177, 0.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.vagas-list-item:not(:last-child) {
    border-bottom: 1px solid rgba(39, 155, 177, 0.22);
}

.vagas-list-item:hover {
    background: transparent;
}

.vagas-list-item:focus-visible {
    outline: none;
    background: transparent;
}

.vagas-list-item:hover::before,
.vagas-list-item:focus-visible::before {
    opacity: 1;
}

.vagas-list-item.is-hidden {
    display: none;
}

.vagas-list-titulo {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #279BB1;
}

.vagas-list-cidade {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    color: #5D767A;
    text-align: center;
}

.vagas-list-tipo {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    color: #5D767A;
    text-align: right;
}

.vagas-list-titulo,
.vagas-list-cidade,
.vagas-list-tipo {
    min-width: 0;
}

.vagas-list-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-width: 118px;
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(180deg, #58BED1 0%, #014A6E 140.35%);
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: all 0.5s ease;
}

.vagas-list-action::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.vagas-list-action::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translateY(0%);
    transition: transform 0.5s ease;
    z-index: 1;
}

.vagas-list-action span {
    position: relative;
    z-index: 1;
    display: block;
    color: #FFFFFF;
    transition: transform 0.5s ease;
}

.vagas-list-item:hover .vagas-list-action,
.vagas-list-item:focus-visible .vagas-list-action {
    box-shadow: 0px 0px 0px 3px rgba(60, 60, 60, 0.15);
}

.vagas-list-item:hover .vagas-list-action::after,
.vagas-list-item:focus-visible .vagas-list-action::after {
    opacity: 1;
}

.vagas-list-item:hover .vagas-list-action span,
.vagas-list-item:focus-visible .vagas-list-action span {
    transform: translateY(-250%);
}

.vagas-list-item:hover .vagas-list-action::before,
.vagas-list-item:focus-visible .vagas-list-action::before {
    transform: translateY(-100%);
}

/* Empty state */
.vagas-empty-msg {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 18px;
    color: #5D767A;
    text-align: center;
    padding: 40px 0;
}


/* --- Banco de talentos section --- */
.vagas-banco {
    margin-top: 180px;
    text-align: left;
}

.vagas-banco-title {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #EC6608;
    margin: 0 0 15px;
}

.vagas-banco-desc {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #279BB1;
    margin: 0 0 30px;
    width: 240px;
}

.vagas-banco .btn {
    margin: 0;
}


/* =============================================
   VAGA DETAIL PAGE
   ============================================= */
.vaga-detail {
    position: relative;
    z-index: 4;
    padding: 120px 0 290px; /* espaço p/ o astronauta (seção de parceiros desativada) */
}

.vaga-detail .wrap {
    max-width: 1280px;
    position: relative;
}

.vaga-detail-inner {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
}

.vaga-detail-title {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #279BB1;
    margin: 0 0 10px;
}

.vaga-detail-date {
    font-family: 'Exo', sans-serif !important;
    font-weight: 400;
    font-size: 15px;
    color: #5D767A;
    margin: 0 0 15px;
}

.vaga-detail-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.vaga-detail-meta-item {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #5D767A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vaga-detail-meta-item i {
    color: #EC6608;
}

.vaga-detail-divider {
    border: none;
    border-top: 1px solid #279BB1;
    margin: 25px 0 35px;
    opacity: 0.3;
}

.vaga-detail-section-title {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #EC6608;
    margin: 0 0 25px;
}

.vaga-detail-content {
    position: relative;
}

.vaga-detail-content p,
.vaga-detail-content ul,
.vaga-detail-content li {
    font-family: 'Exo', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    color: #279BB1;
}

.vaga-detail-content ul {
    padding-left: 20px;
}

.vaga-detail-content ul li {
    margin-bottom: 5px;
}

/* Astronauta inside vaga detail */
.vaga-detail-astronauta {
    position: absolute;
    right: 10px;
    bottom: -270px;
    width: 180px;
    pointer-events: none;
}

.vaga-detail-astronauta img {
    width: 100%;
    height: auto;
    display: block;
    animation: none;
}

@media only screen and (min-width: 1025px) {
    .vaga-detail-astronauta img {
        animation: astronaut-bob 3s ease-in-out infinite;
        will-change: transform;
    }
}

.vaga-detail-actions {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 30px;
    
    gap: 16px;
}

.vaga-detail-actions .btn {
    min-width: 200px;
    text-align: center;
    justify-content: center;
}


/* =============================================
   CADASTRO PAGE (vagas-cadastro)
   ============================================= */
.vagas-cadastro-content {
    position: relative;
    z-index: 4;
    padding: 120px 0 100px;
}

.vagas-cadastro-content .wrap {
    max-width: 1280px;
    position: relative;
}

.vagas-cadastro-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Title above form --- */
.vagas-cadastro-heading {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #EC6608;
    margin: 0 0 40px;
    max-width: 650px;
}

/* --- Vaga chosen info --- */
.vagas-cadastro-vaga-info {
    margin-bottom: 30px;
}

.vagas-cadastro-vaga-label {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    color: #279BB1;
    margin: 0 0 5px;
}

.vagas-cadastro-vaga-nome {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500 !important;
    font-size: 22px;
    line-height: 100%;
    color: #279BB1;
    margin: 0;
}


/* --- Form grid --- */
.vagas-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Row with side-by-side fields */
.vagas-form-row {
    display: flex;
    gap: 16px;
}

.vagas-form-row > * {
    flex: 1;
}

/* Input fields — transparent with blue border */
.vagas-form input[type="text"],
.vagas-form input[type="email"] {
    width: 100%;
    height: 50px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    padding: 0 25px;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #279BB1;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vagas-form input[type="text"]::placeholder,
.vagas-form input[type="email"]::placeholder {
    color: #279BB1;
    opacity: 0.6;
}

.vagas-form input[type="text"]:focus,
.vagas-form input[type="email"]:focus {
    border-color: #EC6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

/* --- Textarea (mensagem) --- */
.vagas-form textarea {
    width: 100%;
    height: 120px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    padding: 15px 25px;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #279BB1;
    outline: none;
    resize: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vagas-form textarea::placeholder {
    color: #279BB1;
    opacity: 0.6;
}

.vagas-form textarea:focus {
    border-color: #EC6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

/* --- Area of interest select (banco de talentos) --- */
.vagas-form-area-select {
    position: relative;
    width: 100%;
}

.vagas-form-area-select select {
    width: 100%;
    height: 50px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    padding: 0 45px 0 25px;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #279BB1;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vagas-form-area-select select:focus {
    border-color: #EC6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

.vagas-form-area-ico {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 5px;
    pointer-events: none;
}

/* --- Phone input with DDI selector --- */
.vagas-telefone-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vagas-telefone-wrapper:focus-within {
    border-color: #EC6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

.vagas-ddd-select {
    flex-shrink: 0;
    padding-left: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vagas-ddi-icon {
    width: 10px;
    height: 5px;
    pointer-events: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.vagas-ddd-select.is-open .vagas-ddi-icon {
    transform: rotate(180deg);
}

.vagas-ddi {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    color: #279BB1;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.vagas-telefone-input {
    border: none !important;
    border-radius: 0 !important;
    height: 100% !important;
    width: auto !important;
    flex: 1;
    box-shadow: none !important;
}

.vagas-telefone-input:focus {
    border: none !important;
    box-shadow: none !important;
}


/* --- File upload with built-in button --- */
.vagas-form-file-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vagas-form-file-wrapper:focus-within {
    border-color: #EC6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

.vagas-form-file-text {
    flex: 1;
    padding: 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.vagas-form-file-placeholder {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #279BB1;
    opacity: 0.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vagas-form-file-name {
    font-family: 'Exo', sans-serif !important;
    font-weight: 700;
    font-size: 14px;
    color: #EC6608;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vagas-form-file-btn {
    flex-shrink: 0;
    height: 46px;
    padding: 0 25px;
    background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
    border: none;
    border-radius: 64px;
    display: flex;
    margin-right: -10px !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-right: 2px;
}

.vagas-form-file-btn:hover {
    opacity: 0.85;
}

.vagas-form-file-btn i {
    color: #FFF;
    font-size: 16px;
}

.vagas-form-file-btn span {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFF;
    white-space: nowrap;
}

.vagas-form-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* --- Privacy text --- */
.vagas-form-privacy {
    font-family: 'Exo', sans-serif !important;
    font-weight: 400;
    font-size: 13px;
    color: #5D767A;
    margin: 0;
}

.vagas-form-privacy a {
    color: #279BB1;
    text-decoration: underline;
}


/* --- Submit button — blue gradient --- */
.vagas-form-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8px;
    gap: 16px;
}

.vagas-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 48px;
    border: none;
    border-radius: 64px;
    background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    color: #FFF;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: box-shadow 0.4s ease;
    flex-shrink: 0;
}

.vagas-submit span {
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.vagas-submit::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
    color: #FFF;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vagas-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: 64px;
}

.vagas-submit:hover {
    box-shadow: 0px 0px 0px 3px rgba(60, 60, 60, 0.15);
}

.vagas-submit:hover span {
    transform: translateY(-250%);
}

.vagas-submit:hover::before {
    transform: translateY(-100%);
}

.vagas-submit:hover::after {
    opacity: 1;
}


/* --- Voltar button — blue gradient, same animation --- */
.vagas-voltar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 48px;
    border: none;
    border-radius: 64px;
    background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: box-shadow 0.4s ease;
    flex-shrink: 0;
}

.vagas-voltar span {
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.5s ease;
    color: #FFF;
}

.vagas-voltar::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0%);
    transition: transform 0.5s ease;
    z-index: 1;
    color: #FFF;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vagas-voltar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: 64px;
}

.vagas-voltar:hover {
    box-shadow: 0px 0px 0px 3px rgba(60, 60, 60, 0.15);
    color: #FFF;
}

.vagas-voltar:hover span {
    transform: translateY(-250%);
}

.vagas-voltar:hover::before {
    transform: translateY(-100%);
}

.vagas-voltar:hover::after {
    opacity: 1;
}


/* =============================================
   RESPONSIVE — 1440px (Notebook)
   ============================================= */
@media screen and (max-width: 1440px) {
.vagas-gradient-wrapper .btn {
    font-size: 13px;
    min-width: 170px;
    height: 40px;
}

.vagas-gradient-wrapper .btn::before{
    font-size: 13px;

}
    /* ---- Banner ---- */
    .vagas-banner-text h1 {
        font-size: 34px;
        line-height: 41px;
        margin-left: 210px;
    }
    .vagas-banner-linha {
        bottom: -100px;
        width: 318px;
        height: 321px;
    }

    /* ---- Ingresso bar ---- */
    .vagas-ingresso-anchor {
        margin-top: -250px;
    }
    .vagas-ingresso-anchor.has-placeholder {
        min-height: 65px;
    }
    .vagas-ingresso-bar {
        width: 832px;
        height: 65px;
        gap: 9px;
        padding: 0 23px 0 30px;
    }
    .vagas-ingresso-bar .sticky-ingresso-label {
        font-size: 14px;
        margin-right: 9px;
    }
    .vagas-ingresso-bar .sticky-ingresso-btn {
        font-size: 12px;
        padding: 7px 15px;
        width: 108px;
        height: 31px;
    }
    .vagas-ingresso-bar .sticky-ingresso-btn img {
        width: 15px;
        height: 15px;
        margin-bottom: 4px;
        margin-left: -7px;
    }
    .vagas-ingresso-bar .sticky-ingresso-btn span {
        font-size: 10px;
        letter-spacing: 0.01em;
    }

    /* ---- Nuvens ---- */
    .vagas-nuvens .nuvem1 { width: 689px; }
    .vagas-nuvens .nuvem2 { width: 512px; }
    .vagas-nuvens .nuvem3 { width: 803px; }

    /* =============================================
       TRABALHE-CONOSCO listing page
       ============================================= */
    .vagas-content {
        padding: 90px 0 68px;
    }
    .vagas-content .wrap {
        max-width: 910px;
    }
    .vagas-intro {
        gap: 30px;
        margin-bottom: 60px;
    }
    .vagas-intro-title,
    .vagas-section-title {
        font-size: 20px;
    }
    .vagas-intro-desc {
        font-size: 17px;
        max-width: 520px;
    }
    .vagas-astronauta {
        width: 165px;
        margin-left: -100px;
    }
    .vagas-count {
        font-size: 18px;
    }

    /* Filter bar */
    .vagas-filter-bar {
        padding: 12px 16px;
        gap: 12px;
    }
    .vagas-filter-select select {
        height: 40px;
        font-size: 13px;
        padding: 0 35px 0 18px;
    }
    .vagas-filter-btn {
        height: 40px;
        padding: 0 22px;
    }
    .vagas-filter-btn span {
        font-size: 13px;
    }

    /* Vagas list */
    .vagas-box {
        --vagas-row-hover-inset-block: 5px;
        --vagas-row-hover-inset-inline: -20px;
        --vagas-row-hover-radius: 18px;
        padding: 0 30px;
    }
    .vagas-list-titulo {
        font-size: 14px;
    }
    .vagas-list-cidade,
    .vagas-list-tipo {
        font-size: 13px;
    }
    .vagas-list-item {
        grid-template-columns: minmax(0, 1.55fr) minmax(120px, 0.9fr) minmax(120px, 0.9fr) auto;
        padding: 16px 0;
        gap: 12px;
    }
    .vagas-list-action {
        min-width: 108px;
        height: 36px;
        padding: 0 16px;
        font-size: 11px;
    }
    .vagas-list-action::before {
        font-size: 11px;
    }

    /* Banco de talentos */
    .vagas-banco {
        margin-top: 60px;
    }
    .vagas-banco-title {
        font-size: 20px;
    }
    .vagas-banco-desc {
        font-size: 17px;
    }

    /* =============================================
       VAGA detail page
       ============================================= */
    .vaga-detail {
        padding: 90px 0 220px;
    }
    .vaga-detail .wrap {
        max-width: 910px;
    }
    .vaga-detail-inner {
        max-width: 910px;
    }
    .vaga-detail-title {
        font-size: 26px;
    }
    .vaga-detail-date {
        font-size: 14px;
    }
    .vaga-detail-meta-item {
        font-size: 14px;
    }
    .vaga-detail-section-title {
        font-size: 17px;
    }
    .vaga-detail-content p,
    .vaga-detail-content ul,
    .vaga-detail-content li {
        font-size: 14px;
        line-height: 26px;
    }
    .vaga-detail-astronauta {
        right: -40px;
        bottom: -200px !important;
        width: 135px;
    }
    .vaga-detail-actions {
        gap: 16px;
    }
    .vaga-detail-actions .btn {
        min-width: 170px;
        height: 40px;
        font-size: 13px;
    }
    .vaga-detail-actions .btn::before {
        font-size: 13px;
    }


    /* =============================================
       VAGAS-CADASTRO form page
       ============================================= */
    .vagas-cadastro-content {
        padding: 90px 0 68px;
    }
    .vagas-cadastro-content .wrap {
        max-width: 910px;
    }
    .vagas-cadastro-inner {
        max-width: 910px;
    }
    .vagas-cadastro-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .vagas-cadastro-vaga-label {
        font-size: 14px;
    }
    .vagas-cadastro-vaga-nome {
        font-size: 18px;
    }

    /* Form fields */
    .vagas-form {
        gap: 13px;
    }
    .vagas-form-row {
        gap: 13px;
    }
    .vagas-form input[type="text"],
    .vagas-form input[type="email"] {
        height: 42px;
        font-size: 14px;
        border-radius: 21px;
        padding: 0 20px;
    }
    .vagas-form textarea {
        height: 100px;
        font-size: 14px;
        border-radius: 21px;
        padding: 12px 20px;
    }
    .vagas-telefone-wrapper {
        height: 42px;
        border-radius: 21px;
    }
    .vagas-ddd-select {
        padding-left: 16px;
    }
    .vagas-ddi {
        font-size: 14px;
    }
    .vagas-form-file-wrapper {
        height: 42px;
        border-radius: 21px;
    }
    .vagas-form-file-placeholder {
        font-size: 14px;
    }
    .vagas-form-file-name {
        font-size: 12px;
    }
    .vagas-form-file-btn {
        height: 38px;
        padding: 0 20px;
    }
    .vagas-form-file-btn span {
        font-size: 11px;
    }
    .vagas-form-area-select select {
        height: 42px;
        font-size: 14px;
        border-radius: 21px;
        padding: 0 40px 0 20px;
    }

    /* Submit / Voltar buttons */
    .vagas-submit {
        width: 170px;
        height: 40px;
        font-size: 13px;
     
    }
    .vagas-submit::before {
        font-size: 13px;
        
    }
    .vagas-voltar {
        width: 170px;
        height: 40px;
        font-size: 13px;
    }
    .vagas-voltar::before {
        font-size: 13px;
    }
    .vagas-form-privacy {
        font-size: 12px;
    }
}


/* =============================================
   RESPONSIVE — 1024px (TABLET)
   Escala: 1024/1440 ≈ 0.711 (do notebook)
   ============================================= */
@media screen and (max-width: 1024px) {

    /* ---- Banner ---- */
    .vagas-banner {
        top: -60px;
    }
    .vagas-banner-text h1 {
        font-size: 28px;
        line-height: 34px;
        margin-left: 0;
        text-align: center;
    }
    .vagas-banner-linha {
        bottom: -70px;
        width: 240px;
        height: 242px;
    }

    /* ---- Ingresso bar ---- */
    .vagas-ingresso-anchor {
        margin-top: -210px;
    }
    .vagas-ingresso-anchor.has-placeholder {
        min-height: 55px;
    }
    .vagas-ingresso-bar {
        width: 591px;
        height: 60px;
        gap: 8px;
        padding: 0 20px 0 25px;
    }
    .vagas-ingresso-bar .sticky-ingresso-label {
        font-size: 13px;
        margin-right: 8px;
    }
    .vagas-ingresso-bar .sticky-ingresso-btn {
        font-size: 11px;
        padding: 6px 14px;
        width: 100px;
        height: 28px;
    }
    .vagas-ingresso-bar .sticky-ingresso-btn img {
        width: 13px;
        height: 13px;
        margin-bottom: 3px;
        margin-left: -5px;
    }
    .vagas-ingresso-bar .sticky-ingresso-btn span {
        font-size: 9px;
    }

    /* ---- Nuvens ---- */
    .vagas-nuvens .nuvem1 { width: 520px; }
    .vagas-nuvens .nuvem2 { width: 385px; }
    .vagas-nuvens .nuvem3 { width: 600px; }

    /* ---- Buttons global ---- */
    .vagas-gradient-wrapper .btn {
        font-size: 12px;
        min-width: 150px;
        height: 36px;
    }
    .vagas-gradient-wrapper .btn::before {
        font-size: 12px;
    }

    /* ---- Content ---- */
    .vagas-content {
        padding: 60px 0 50px;
    }
    .vagas-content .wrap {
        max-width: 100%;
        padding-left: 25px !important;
        padding-right: 25px !important;
       
    }
    .vagas-intro {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 45px;
    }
    .vagas-intro-text {
        max-width: 100%;
         margin-left: 20px !important;
    }
    .vagas-intro-title,
    .vagas-section-title {
        font-size: 18px;
    }
    .vagas-intro-desc {
        font-size: 15px;
        max-width: 100%;
    }
    .vagas-astronauta {
        width: 140px;
        align-self: center;
        margin-left: 0;
    }
    .vagas-count {
        font-size: 16px;
    }

    /* ---- Filter bar ---- */
    .vagas-filter-bar {
        padding: 10px 14px;
        gap: 10px;
    }
    .vagas-filter-select select {
        height: 38px;
        font-size: 12px;
        padding: 0 30px 0 15px;
    }
    .vagas-filter-btn {
        height: 38px;
        padding: 0 18px;
    }
    .vagas-filter-btn span {
        font-size: 12px;
    }

    /* ---- Vagas list ---- */
    .vagas-box {
        --vagas-row-hover-inset-block: 4px;
        --vagas-row-hover-inset-inline: -12px;
        --vagas-row-hover-radius: 16px;
        padding: 0 20px;
    }
    .vagas-list-item {
        grid-template-columns: minmax(0, 1.3fr) minmax(98px, 0.9fr) minmax(110px, 0.95fr) auto;
        gap: 10px;
        padding: 14px 0;
    }
    .vagas-list-titulo {
        font-size: 13px;
    }
    .vagas-list-cidade,
    .vagas-list-tipo {
        font-size: 12px;
    }
    .vagas-list-action {
        min-width: 92px;
        height: 34px;
        padding: 0 14px;
        font-size: 10px;
    }
    .vagas-list-action::before {
        font-size: 10px;
    }

    /* ---- Banco de talentos ---- */
    .vagas-banco {
        margin-top: 45px;
    }
    .vagas-banco-title {
        font-size: 18px;
    }
    .vagas-banco-desc {
        font-size: 15px;
    }

    /* ---- Vaga detail ---- */
    .vaga-detail {
        padding: 60px 0 50px;
    }
    .vaga-detail .wrap {
        max-width: 100%;
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    .vaga-detail-inner {
        max-width: 100%;
    }
    .vaga-detail-title {
        font-size: 22px;
    }
    .vaga-detail-date {
        font-size: 13px;
    }
    .vaga-detail-meta-item {
        font-size: 15px;
    }
    .vaga-detail-section-title {
        font-size: 15px;
    }
    .vaga-detail-content p,
    .vaga-detail-content ul,
    .vaga-detail-content li {
        font-size: 13px;
        line-height: 24px;
    }
    .vaga-detail-astronauta {
        display: none;
    }
    .vaga-detail-actions {
        gap: 14px;
    }
    .vaga-detail-actions .btn {
        min-width: 150px;
        height: 36px;
        font-size: 12px;
    }
    .vaga-detail-actions .btn::before {
        font-size: 12px;
    }

    /* ---- Cadastro form ---- */
    .vagas-cadastro-content {
        padding: 60px 0 50px;
    }
    .vagas-cadastro-content .wrap {
        max-width: 100%;
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    .vagas-cadastro-inner {
        max-width: 100%;
    }
    .vagas-cadastro-heading {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .vagas-cadastro-vaga-label {
        font-size: 13px;
    }
    .vagas-cadastro-vaga-nome {
        font-size: 16px;
    }

    /* Form fields */
    .vagas-form {
        gap: 11px;
    }
    .vagas-form-row {
        gap: 11px;
    }
    .vagas-form input[type="text"],
    .vagas-form input[type="email"] {
        height: 40px;
        font-size: 13px;
        border-radius: 20px;
        padding: 0 18px;
    }
    .vagas-form textarea {
        height: 90px;
        font-size: 13px;
        border-radius: 20px;
        padding: 10px 18px;
    }
    .vagas-telefone-wrapper {
        height: 40px;
        border-radius: 20px;
    }
    .vagas-ddd-select {
        padding-left: 14px;
    }
    .vagas-ddi {
        font-size: 13px;
    }
    .vagas-form-file-wrapper {
        height: 40px;
        border-radius: 20px;
    }
    .vagas-form-file-placeholder {
        font-size: 13px;
    }
    .vagas-form-file-name {
        font-size: 11px;
    }
    .vagas-form-file-btn {
        height: 36px;
        padding: 0 18px;
    }
    .vagas-form-file-btn span {
        font-size: 10px;
    }
    .vagas-form-area-select select {
        height: 40px;
        font-size: 13px;
        border-radius: 20px;
        padding: 0 35px 0 18px;
    }

    /* Submit / Voltar buttons */
    .vagas-submit {
        width: 150px;
        height: 36px;
        font-size: 12px;
    }
    .vagas-submit::before {
        font-size: 12px;
    }
    .vagas-voltar {
        width: 150px;
        height: 36px;
        font-size: 12px;
    }
    .vagas-voltar::before {
        font-size: 12px;
    }
    .vagas-form-privacy {
        font-size: 11px;
    }
}


/* =============================================
   INGRESSO SELECT DROPDOWN (mobile, inside bar)
   Same base styles as institucional/blog/contato
   ============================================= */
.inst-ingresso-mobile-picker {
    display: none;
}
.inst-ingresso-select-wrap {
    position: relative;
}
.inst-ingresso-select-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 284px;
    height: 46px;
    border-radius: 64px;
    background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 20px;
}
.inst-ingresso-select-icon,
.inst-ingresso-dropdown-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.inst-ingresso-select-btn[data-inst-current-key="individual"] .inst-ingresso-select-icon,
.inst-ingresso-dropdown-item[data-key="individual"] .inst-ingresso-dropdown-icon {
    background-image: url('../img/home/individual.png');
}

.inst-ingresso-select-btn[data-inst-current-key="cabine"] .inst-ingresso-select-icon,
.inst-ingresso-dropdown-item[data-key="cabine"] .inst-ingresso-dropdown-icon {
    background-image: url('../img/home/cabine.webp');
}

.inst-ingresso-select-btn[data-inst-current-key="especial"] .inst-ingresso-select-icon,
.inst-ingresso-dropdown-item[data-key="especial"] .inst-ingresso-dropdown-icon {
    background-image: url('../img/home/especial.png');
}

.inst-ingresso-select-label {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.inst-ingresso-select-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}
.inst-ingresso-select-wrap.is-open .inst-ingresso-select-arrow {
    transform: translateY(2px) rotate(-135deg);
}
.inst-ingresso-dropdown-list {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    width: 284px;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    background: linear-gradient(180deg, #EEF7F8 0%, #9FE4F1 100%);
    border: none;
    border-radius: 24px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
    z-index: 310;
}
.inst-ingresso-select-wrap.is-open .inst-ingresso-dropdown-list {
    max-height: 220px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 14px;
}
.inst-ingresso-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 18px;
    margin-bottom: 8px;
    border-radius: 64px;
    color: #EC6608;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease;
}
.inst-ingresso-dropdown-icon {
    filter: brightness(0) saturate(100%) invert(49%) sepia(94%) saturate(1910%) hue-rotate(357deg) brightness(96%) contrast(92%);
}
.inst-ingresso-dropdown-text {
    text-align: left;
}

.inst-ingresso-dropdown-item:last-child { margin-bottom: 0; }

.inst-ingresso-dropdown-item.is-active,
.inst-ingresso-dropdown-item:hover {
    background: rgba(236, 102, 8, 0.12);
    border-radius: 64px;
}


/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media only screen and (max-width: 768px) {

    body:has(.vagas-gradient-wrapper) {
        --home-mobile-side-gap: clamp(23.111px, 5.9259vw, 32px);
        --home-mobile-content-width: min(476px, calc(100vw - (var(--home-mobile-side-gap) * 2)));
        --home-mobile-footer-width: clamp(277.667px, 88.1481vw, 476px);
        --home-mobile-footer-map-btn-width: clamp(109.083px, 34.6296vw, 187px);
        --home-mobile-footer-map-btn-height: clamp(28px, 8.8889vw, 48px);
        --home-mobile-partner-slot-width: clamp(104.333px, 26.7407vw, 144.406px);
        --home-mobile-partner-logo-width: clamp(57.778px, 14.8148vw, 80px);
        --home-mobile-partner-logo-height: clamp(47.667px, 12.2222vw, 66px);
        --home-mobile-lines-width: clamp(144.444px, 37.037vw, 200px);
        --home-mobile-lines-height: clamp(145.574px, 37.3055vw, 201.4499px);
        --vagas-mobile-ingresso-bar-width: min(508px, 94.0741vw);
        --vagas-mobile-ingresso-bar-height: clamp(57.056px, 14.6294vw, 79px);
        --vagas-mobile-ingresso-select-width: min(284px, 52.5926vw);
        --vagas-mobile-ingresso-select-height: clamp(33.351px, 8.5516vw, 46.179px);
        --vagas-mobile-ingresso-bottom-gap: clamp(12px, 3.0769vw, 16px);
        --vagas-mobile-text-inset: clamp(18px, 4.6154vw, 24px);
        --vagas-mobile-text-width: calc(var(--home-mobile-content-width) - (var(--vagas-mobile-text-inset) * 2));
        --vagas-mobile-cta-gap: clamp(12px, 3.7037vw, 20px);
        --vagas-mobile-cta-width: min(250px, calc((100vw - 24px - var(--vagas-mobile-cta-gap)) / 2));
        --vagas-mobile-cta-height: clamp(43px, 11.1111vw, 60px);
        --vagas-mobile-cta-font-size: clamp(13px, 3.3333vw, 18px);
        --vaga-detail-mobile-cta-width: min(250px, calc((var(--home-mobile-content-width) - var(--vagas-mobile-cta-gap)) / 2));
        --vaga-detail-mobile-cta-font-size: clamp(11.5px, 3vw, 18px);
        --vagas-mobile-detail-astro-width: clamp(96px, 24.6154vw, 110px);
        --vagas-mobile-detail-astro-offset: clamp(4px, 1.8519vw, 10px);
    }

    /* =============================================
       BANNER — 430px fixed height
       ============================================= */
    .vagas-banner {
     
        min-height: 430px;
    }
    .vagas-banner-img {
        height: 430px;
        object-fit: cover;
        object-position: center top;
    }
    .vagas-banner-text {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding: 0 var(--home-mobile-side-gap);
        box-sizing: border-box;
    }
    .vagas-banner-text h1 {
        font-size: 28px;
        line-height: 34px;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        text-wrap: balance;
    }
    .vagas-banner-linha {
        width: var(--home-mobile-lines-width);
        height: var(--home-mobile-lines-height);
        bottom: 25px;
        z-index: 0;
    }

    /* =============================================
       NUVENS — same positions as contato mobile
       ============================================= */
    .vagas-nuvens .nuvem1 {
        top: 200px;
        left: 100px;
        width: 350px;
        animation: none;
    }
    .vagas-nuvens .nuvem2 {
        top: 350px;
        right: -80px;
        left: auto;
        width: 340px;
        animation: none;
    }
    .vagas-nuvens .nuvem3 {
        top: 270px;
        left: -130px;
        width: 370px;
        animation: none;
    }

    /* =============================================
       INGRESSO BAR — mobile sticky (bottom: 0 pill)
       ============================================= */
    .vagas-ingresso-anchor {
        margin-top: -240px;
        overflow: visible;
    }
    .vagas-ingresso-anchor.has-placeholder {
        min-height: var(--vagas-mobile-ingresso-bar-height);
    }
    .vagas-ingresso-bar {
        width: var(--vagas-mobile-ingresso-bar-width);
        max-width: var(--vagas-mobile-ingresso-bar-width);
        height: var(--vagas-mobile-ingresso-bar-height);
        border-top-left-radius: 200px;
        border-bottom-left-radius: 200px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: 0;
        gap: 0;
        margin-left: auto;
        justify-content: space-between;
        align-items: center;
    }

    .vagas-ingresso-bar.is-stuck-bottom {
        bottom: var(--vagas-mobile-ingresso-bottom-gap);
    }

    .vagas-ingresso-bar .sticky-ingresso-label,
    .vagas-ingresso-bar .sticky-ingresso-btn {
        display: none !important;
    }

    .inst-ingresso-mobile-picker {
        display: flex;
        align-items: center;
        width: 100%;
        gap: clamp(8px, 1.8519vw, 10px);
        padding: 0 clamp(10px, 2.5926vw, 14px) 0 clamp(19px, 4.8148vw, 26px);
    }
    .inst-ingresso-mobile-label {
        color: #fff;
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 500;
        font-size: clamp(12px, 3.3333vw, 18px);
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: clamp(10px, 2.5926vw, 14px);
    }
    .vagas-ingresso-bar .inst-ingresso-select-wrap {
        margin-left: auto;
        flex-shrink: 0;
    }
    .vagas-ingresso-bar .inst-ingresso-select-btn {
        width: var(--vagas-mobile-ingresso-select-width);
        height: var(--vagas-mobile-ingresso-select-height);
        font-size: clamp(11px, 2.5926vw, 14px);
        padding: 0 clamp(12px, 3.3333vw, 18px);
        gap: clamp(8px, 2.2222vw, 12px);
    }
    .vagas-ingresso-bar .inst-ingresso-dropdown-list {
        width: var(--vagas-mobile-ingresso-select-width);
    }
    .inst-ingresso-dropdown-item {
        min-height: clamp(40px, 9.2593vw, 50px);
        font-size: clamp(11px, 2.5926vw, 14px);
        color: #858585;
    }
    .inst-ingresso-select-icon,
    .inst-ingresso-dropdown-icon {
        width: clamp(17px, 4.6296vw, 20px);
        height: clamp(17px, 4.6296vw, 20px);
        flex-basis: clamp(17px, 4.6296vw, 20px);
    }
    .inst-ingresso-dropdown-icon {
        filter: brightness(0) saturate(100%) invert(52%);
    }

    /* =============================================
       CONTENT — trabalhe-conosco listing
       ============================================= */
    .vagas-content {
        padding: 130px 0 40px;
    }
    .vagas-content .wrap,
    .vagas-content .wrap.wide {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-left: var(--home-mobile-side-gap) !important;
        padding-right: var(--home-mobile-side-gap) !important;
        box-sizing: border-box;
    }
    .vagas-intro {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto 40px;
        padding: 0;
    }
    .vagas-intro-text {
        flex: none;
        width: 100%;
        max-width: calc(var(--vagas-mobile-text-width) - 72px);
        min-width: 0;
        margin-left: 0;
        margin-right: auto;
    }
    .vagas-intro-title {
        font-size: 21px;
        line-height: 1.25;
        margin: 0 0 16px;
        max-width: clamp(220px, 56.4103vw, 255px);
        text-wrap: balance;
    }
    .vagas-intro-desc {
        font-size: 17px;
        line-height: 1.35;
        max-width: 100%;
        text-wrap: pretty;
    }
    .vagas-astronauta {
        display: block;
        position: absolute;
        flex-shrink: 0;
        top: 28px;
        right: 0;
        width: clamp(96px, 24.6154vw, 110px);
        align-self: auto;
        margin-top: 0;
        margin-right: 0;
    }
    .vagas-astronauta img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .vagas-section-title {
        margin-top: 24px !important;
        font-size: 21px;
        width: 100%;
        max-width: var(--vagas-mobile-text-width);
        padding: 0;
        margin: 0 auto 24px;
        text-wrap: balance;
        line-height: 1.25;
    }

    .vagas-section-title br.home-mobile-break {
        display: block;
    }

    .vagas-intro-desc br.home-mobile-break {
        display: block;
    }

    .vagas-count {
        font-size: 17px;
        width: 100%;
        max-width: var(--vagas-mobile-text-width);
        margin: 0 auto 16px;
    }

    /* Filter bar — 2x2 on mobile */
    .vagas-filter-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 10px 12px;
        gap: 10px;
        border-radius: 20px;
        overflow: visible;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto 12px;
        box-sizing: border-box;
    }
    .vagas-filter-select,
    .vagas-filter-select.is-wide {
        width: 100%;
        min-width: 0;
    }
    .vagas-filter-select select {
        height: 42px;
        font-size: 12px;
        padding: 0 28px 0 14px;
        border-radius: 21px;
    }
    .vagas-filter-ico {
        right: 12px;
        width: 8px;
        height: 4px;
    }
    .vagas-filter-btn {
        width: 100%;
        height: 42px;
        padding: 0 14px;
        gap: 8px;
        border-radius: 21px;
        justify-content: center;
    }
    .vagas-filter-btn span {
        font-size: 12px;
    }
    .vagas-filter-btn i {
        font-size: 13px;
    }

    /* Custom dropdown — mobile overrides */
    .vagas-filter-custom-btn {
        width: 100%;
        height: 42px;
        border-radius: 21px;
        padding: 0 12px 0 14px;
        gap: 8px;
    }
    .vagas-filter-custom-btn .vagas-filter-ico {
        width: 8px;
        height: 4px;
    }
    .vagas-filter-custom-label {
        font-size: 14px;
    }
    .vagas-filter-custom-list {
        width: 100%;
        border-radius: 18px;
    }
    .vagas-filter-custom-item {
        min-height: 38px;
        font-size: 12px;
        padding: 0 14px;
        margin-bottom: 4px;
    }

    /* Vagas box */
    .vagas-box {
        --vagas-row-hover-inset-block: 4px;
        --vagas-row-hover-inset-inline: -8px;
        --vagas-row-hover-radius: 14px;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        padding: 0 16px;
        margin: 0 auto 32px;
        border-radius: 20px;
        box-sizing: border-box;
    }
    .vagas-list-item {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 16px 0;
    }
    .vagas-list-titulo {
        font-size: 14px;
    }
    .vagas-list-cidade,
    .vagas-list-tipo {
        font-size: 12px;
        text-align: left;
    }
    .vagas-list-action {
        justify-self: end;
        min-width: 108px;
        height: 36px;
        margin-top: 6px;
        padding: 0 16px;
        font-size: 10px;
    }
    .vagas-list-action::before {
        font-size: 10px;
    }
    .vagas-empty-msg {
        font-size: 15px;
    }

    /* Banco de talentos */
    .vagas-banco {
        width: 100%;
        max-width: var(--vagas-mobile-text-width);
        margin: 40px auto 0;
        padding: 0;
    }
    .vagas-banco-title {
        font-size: 20px;
        line-height: 1.15;
        margin-bottom: 16px;
        text-wrap: balance;
    }
    .vagas-banco-desc {
        font-size: 18px;
        line-height: 1.35;
        width: 100%;
        max-width: 100%;
        margin: 0 0 24px;
        text-wrap: pretty;
    }
    .vagas-banco .vagas-banco-desc {
        margin-left: 0 !important;
    }
    .vagas-cadastro-content .vagas-banco-desc {
        padding-left: 0;
        padding-right: 0;
    }
    .vagas-banco .btn {
        width: min(250px, calc(100vw - 84px));
        min-height: clamp(54px, 11.1111vw, 60px);
        height: auto;
        padding: 12px 0;
    }
    .vagas-banco .btn span,
    .vagas-banco .btn::before {
        width: 100%;
        padding: 0 18px;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
        font-size: clamp(12px, 2.963vw, 16px);
    }

    /* =============================================
       VAGA detail page
       ============================================= */
    .vaga-detail {
        padding: 130px 0 40px;
    }
    .vaga-detail .wrap,
    .vaga-detail .wrap.wide {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-left: var(--home-mobile-side-gap) !important;
        padding-right: var(--home-mobile-side-gap) !important;
        box-sizing: border-box;
    }
    .vaga-detail-inner {
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto;
        padding: 0;
    }
    .vaga-detail-title {
        font-size: 19px;
        line-height: 1.15;
        width: 100%;
        max-width: var(--vagas-mobile-text-width);
        margin-left: auto;
        margin-right: auto;
        padding-right: calc(var(--vagas-mobile-detail-astro-width) + 12px);
        box-sizing: border-box;
        text-wrap: balance;
    }
    .vaga-detail-date,
    .vaga-detail-meta,
    .vaga-detail-section-title,
    .vaga-detail-content {
        width: 100%;
        max-width: var(--vagas-mobile-text-width);
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    .vaga-detail-date,
    .vaga-detail-meta {
        
        padding-right: calc(var(--vagas-mobile-detail-astro-width) + 12px);
    }
    .vaga-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        
    }
    .vaga-detail-meta-item {
        font-size: 15px;
    }
    .vaga-detail-section-title {
        font-size: 19px;
        line-height: 1.15;
        margin-top: 26px;
    }
    .vaga-detail-content {
        position: static;
    }
    .vaga-detail-content p,
    .vaga-detail-content ul,
    .vaga-detail-content li {
        font-size: 17px;
        line-height: 1.35;
    }
    .vaga-detail-content p,
    .vaga-detail-content ul {
        margin: 0 0 18px;
    }
    .vaga-detail-content p:last-child,
    .vaga-detail-content ul:last-child {
        margin-bottom: 0;
    }
    .vaga-detail-content ul {
        padding-left: 18px;
    }
    .vaga-detail-content li {
        margin-bottom: 8px;
    }
    .vaga-detail-astronauta {
        position: absolute;
        top: 0px;
        right: 60px;
        bottom: auto;
        display: block;
        width: var(--vagas-mobile-detail-astro-width);
        height: auto;
        pointer-events: none;
        
    }
    .vaga-detail-astronauta img {
        width: 100%;
        height: auto;
    }
    .vaga-detail-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: var(--vagas-mobile-cta-gap);
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        box-sizing: border-box;
    }
    .vaga-detail-actions .btn {
        flex: 0 0 var(--vaga-detail-mobile-cta-width);
        width: var(--vaga-detail-mobile-cta-width);
        max-width: var(--vaga-detail-mobile-cta-width);
        min-width: 0;
        height: var(--vagas-mobile-cta-height);
        margin: 0;
        padding: 0 8px;
        font-size: var(--vaga-detail-mobile-cta-font-size);
        box-sizing: border-box;
    }
    .vaga-detail-actions .btn span,
    .vaga-detail-actions .btn::before {
        width: 100%;
        padding: 0 6px;
        font-size: var(--vaga-detail-mobile-cta-font-size);
        line-height: 1.05;
        white-space: nowrap;
    }

    /* =============================================
       VAGAS-CADASTRO form page
       Form fields: calc(100vw - 24px) via 12px wrap padding
       ============================================= */
    .vagas-cadastro-content {
        padding: 160px 0 40px;
    }
    .vagas-cadastro-content .wrap,
    .vagas-cadastro-content .wrap.wide {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-left: var(--home-mobile-side-gap) !important;
        padding-right: var(--home-mobile-side-gap) !important;
        box-sizing: border-box;
    }
    .vagas-cadastro-heading {
        font-size: 19px;
        line-height: 1.25;
        text-align: left;
        width: 100%;
        max-width: calc(var(--vagas-mobile-text-width) - clamp(10px, 2.5926vw, 14px));
        margin: 0 auto 24px;
        padding: 0;
        text-wrap: balance;
    }
    .vagas-cadastro-vaga-info {
        width: 100%;
        max-width: calc(var(--vagas-mobile-text-width) - clamp(10px, 2.5926vw, 14px));
        padding: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .vagas-banco-desc {
        width: 100%;
        max-width: var(--vagas-mobile-text-width);
        padding: 0;
        margin-left: auto;
        margin-right: auto;
    }
        .vagas-cadastro-vaga-label {
        font-size: 16px;
    }
    .vagas-cadastro-inner {
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto;
        padding: 0;
    }
    .vagas-form {
        gap: 14px;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto;
        padding: 0;
    }
    .vagas-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .vagas-form-row > * {
        flex: none;
        width: 100% !important;
        max-width: 100% !important;
    }
    .vagas-form input[type="text"],
    .vagas-form input[type="email"] {
        width: 100% !important;
        max-width: 100% !important;
        height: 54px !important;
        border-width: 2px;
        border-radius: 27px !important;
        font-size: 17px !important;
        line-height: 1.2;
        padding: 0 20px !important;
        box-sizing: border-box;
    }
    .vagas-form input[type="text"]::placeholder,
    .vagas-form input[type="email"]::placeholder,
    .vagas-form textarea::placeholder,
    .vagas-telefone-input::placeholder {
        font-size: 15px;
        line-height: 1.2;
    }
    .vagas-form textarea {
        width: 100%;
        max-width: 100%;
        height: 148px;
        border-width: 2px;
        border-radius: 18px;
        font-size: 17px;
        line-height: 1.35;
        padding: 14px 20px;
        box-sizing: border-box;
    }
    .vagas-telefone-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 54px !important;
        border-width: 2px;
        border-radius: 27px !important;
        box-sizing: border-box;
    }
    .vagas-ddi {
        font-size: 17px;
    }
    .vagas-telefone-input {
        width: auto !important;
        max-width: none !important;
        padding: 0 20px 0 8px !important;
        font-size: 17px !important;
        line-height: 1.2;
    }
    .vagas-form-file-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 54px !important;
        border-width: 2px;
        border-radius: 27px !important;
        box-sizing: border-box;
    }
    .vagas-form-file-placeholder {
        font-size: 15px;
    }
    .vagas-form-file-btn {
        width: auto;
        min-width: 116px;
        height: 50px !important;
        padding: 0 18px !important;
        margin-right: -2px !important;
        justify-content: center;
        border-radius: 25px;
        gap: 8px;
    }
    .vagas-form-file-btn span {
        display: block;
        font-size: 13px;
        line-height: 1;
    }
    .vagas-form-file-btn i {
        font-size: 16px;
    }
    .vagas-form-area-select {
        width: 100% !important;
        max-width: 100% !important;
    }
    .vagas-form-area-select select {
        width: 100%;
        max-width: 100%;
        height: 54px;
        border-width: 2px;
        border-radius: 27px;
        font-size: 17px;
        padding: 0 42px 0 20px;
        box-sizing: border-box;
    }
    /* Submit / Voltar — equal width side by side */
    .vagas-form-footer {
        justify-content: center;
        gap: var(--vagas-mobile-cta-gap);
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        box-sizing: border-box;
    }
    .vagas-form-footer .vagas-submit,
    .vagas-form-footer .vagas-voltar {
        flex: 0 0 var(--vaga-detail-mobile-cta-width) !important;
        width: var(--vaga-detail-mobile-cta-width) !important;
        max-width: var(--vaga-detail-mobile-cta-width) !important;
        min-width: 0 !important;
        height: var(--vagas-mobile-cta-height) !important;
        margin: 0;
        padding: 0 8px !important;
        font-size: var(--vaga-detail-mobile-cta-font-size);
        flex-shrink: 0 !important;
        box-sizing: border-box;
    }
    .vagas-form-footer .vagas-submit span,
    .vagas-form-footer .vagas-voltar span,
    .vagas-form-footer .vagas-submit::before,
    .vagas-form-footer .vagas-voltar::before {
        width: 100%;
        padding: 0 6px;
        font-size: var(--vaga-detail-mobile-cta-font-size);
        line-height: 1.05;
        white-space: nowrap;
    }

    body:not(.is-home) .section-parceiros {
        padding-bottom: 102px;
        margin-top: 0 !important;
    }

    .section-parceiros .wrap.wide {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible;
        box-sizing: border-box;
    }

    .section-parceiros h2 {
        margin-top: 10px !important;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--home-mobile-side-gap);
        padding-right: var(--home-mobile-side-gap);
        box-sizing: border-box;
    }

    .section-parceiros .bg2 {
        width: 100%;
        height: 132px;
        left: 0;
        right: 0;
        top: 120px;
        transform: none;
        margin: 0;
    }

    .parceiros-title-outside {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }

    .section-parceiros .slide-parceiros {
        width: calc(100% - var(--home-mobile-side-gap));
        max-width: none;
        margin: 0 0 0 var(--home-mobile-side-gap) !important;
        overflow: visible;
    }

    .section-parceiros .slide-parceiros .owl-stage-outer {
        overflow: hidden;
    }

    .section-parceiros .slide-parceiros .owl-stage {
        display: flex !important;
        align-items: center !important;
    }

    .section-parceiros .slide-parceiros .owl-item {
        width: var(--home-mobile-partner-slot-width) !important;
        min-width: var(--home-mobile-partner-slot-width);
        min-height: 132px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-parceiros .slide-parceiros .item-parceiro {
        width: var(--home-mobile-partner-slot-width);
        min-width: var(--home-mobile-partner-slot-width);
        min-height: var(--home-mobile-partner-logo-height);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .section-parceiros .slide-parceiros .item-parceiro img {
        width: var(--home-mobile-partner-logo-width) !important;
        height: var(--home-mobile-partner-logo-height) !important;
        max-width: var(--home-mobile-partner-logo-width) !important;
        max-height: var(--home-mobile-partner-logo-height) !important;
        margin-top: 100px !important;
        object-fit: contain;
        object-position: center;
    }

    .section-parceiros .slide-parceiros .item-parceiro a {
        width: 100%;
        height: var(--home-mobile-partner-logo-height);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* =====================================================================
   RESPONSIVIDADE FLUIDA · 1280 → 1920 — linha abaixo do banner (ondas-4)
   Interpola entre o snapshot (max-width:1440, cobre 1280) e o default 1920.
   ===================================================================== */
@media only screen and (min-width: 1281px) and (max-width: 1920px) {
    .vagas-banner-linha {
        bottom: clamp(-186px, calc(-100px - (100vw - 1280px) * 0.134375), -100px);
        width: clamp(318px, calc(318px + (100vw - 1280px) * 0.19375), 442px);
        height: clamp(321px, calc(321px + (100vw - 1280px) * 0.165625), 427px);
    }

    /* Detalhe da vaga: com a seção de parceiros desativada, o footer
       encostava no astronauta. Reservamos o espaço (padding-bottom) e
       escalamos o astronauta para ele aparecer inteiro acima do footer. */
    .vaga-detail {
        padding-bottom: clamp(220px, calc(220px + (100vw - 1280px) * 0.109375), 290px);
    }
    .vaga-detail-astronauta {
        right: clamp(-40px, calc(-40px + (100vw - 1280px) * 0.078125), 10px);
        bottom: clamp(-270px, calc(-200px - (100vw - 1280px) * 0.109375), -200px) !important;
        width: clamp(135px, calc(135px + (100vw - 1280px) * 0.070313), 180px);
    }
}
