/* ============================================
   CANDIDATARSE.PHP - Wizard de Candidatura
   Prefixo: CndV (Candidatura a Vaga)
   ============================================ */

.CndV {
    padding: 40px 0 80px;
    min-height: 70vh;
}

.CndV_MaxWrap {
    max-width: 820px;
    margin: 0 auto;
}

.CndVPasso {
    display: none;
}

.CndVSubPasso {
    display: none;
}

.CndVOculto {
    display: none;
}

/* --- Header acima do wizard --- */

.CndVHeader {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 8px;
}

.CndVHeader_Titulo {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.CndVHeader_Sub {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
}


/* --- Info banner duplo (acima dos steps) --- */

.CndVInfoBanner {
    display: flex;
    gap: 16px;
    background: rgba(255, 200, 0, 0.04);
    border: 1px solid rgba(255, 200, 0, 0.14);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 28px;
}

.CndVInfoBanner_Item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
    color: #777;
    line-height: 1.45;
}

.CndVInfoBanner_Icone {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: rgba(255, 200, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc800;
}

.CndVInfoBanner_Icone i {
    width: 16px;
    height: 16px;
}

.CndVInfoBanner_Sep {
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 4px 0;
}

@media (max-width: 576px) {
    .CndVInfoBanner {
        flex-direction: column;
        gap: 12px;
    }

    .CndVInfoBanner_Sep {
        width: auto;
        height: 1px;
        margin: 0;
    }
}


/* --- Banner da vaga --- */

.CndVBanner {
    background: #1a1a1a;
    border: 1px solid rgba(255, 200, 0, 0.2);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 28px;
}

.CndVBanner_Titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.CndVBanner_Empresa {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 16px;
}

.CndVBanner_Tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.CndVBanner_Tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07);
    color: #ccc;
    font-size: 0.82rem;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.CndVBanner_Tag svg {
    width: 14px;
    height: 14px;
}

.CndVBanner_Salario {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffc800;
    font-weight: 600;
    font-size: 0.9rem;
}

.CndVBanner_Salario svg {
    width: 14px;
    height: 14px;
}

/* --- Indicador de passos --- */

.CndVSteps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    gap: 0;
    width: 100%;
    overflow: hidden;
}

.CndVStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
    user-select: none;
}

.CndVStep_Num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2a;
    border: 2px solid #444;
    color: #666;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.CndVStep_Txt {
    font-size: 0.72rem;
    color: #555;
    font-weight: 500;
    transition: color 0.25s;
    white-space: nowrap;
}

.CndVStep.ativo .CndVStep_Num {
    background: #ffc800;
    border-color: #ffc800;
    color: #111;
}

.CndVStep.ativo .CndVStep_Txt {
    color: #ffc800;
    font-weight: 600;
}

.CndVStep.ok .CndVStep_Num {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
}

.CndVStep.ok .CndVStep_Txt {
    color: #2ecc71;
}

.CndVStep_Sep {
    flex: 1 1 0;
    height: 2px;
    background: #2a2a2a;
    min-width: 0;
    margin: 0 6px;
    margin-bottom: 22px;
}

/* --- Card do wizard --- */

.CndVCard {
    background: #141414;
    border: 1px solid rgba(250, 204, 20, 0.18);
    border-radius: 16px;
    box-shadow: 0 10px 48px rgba(0, 0, 0, 0.45);
}

.CndVPasso {
    padding: 36px 40px;
}

.CndVPasso_Titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.CndVPasso_Sub {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.5;
}

/* --- Campo wrapper --- */

.CndVMb {
    margin-bottom: 20px;
}

.CndVMb_Link {
    margin-top: 6px;
    text-align: right;
}

.CndVMb_Link a {
    font-size: 0.82rem;
    color: #555;
    text-decoration: none;
}

.CndVMb_Link a:hover {
    color: #ffc800;
}

/* --- Toggle tipo de acesso --- */

.CndVTipoAcesso {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.CndVTipoAcesso_Btn {
    flex: 1;
    padding: 10px 16px;
    background: #0d0d0d;
    border: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.CndVTipoAcesso_Btn svg {
    width: 15px;
    height: 15px;
}

.CndVTipoAcesso_Btn.ativo {
    background: rgba(250, 204, 20, 0.12);
    color: #ffc800;
    font-weight: 600;
}

.CndVTipoAcesso_Btn:hover:not(.ativo) {
    background: #1a1a1a;
    color: #aaa;
}

/* --- Grids de formulario --- */

.CndVFrmGrid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.CndVFrmGrid3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 20px;
}

/* --- Radios --- */

.CndVRadios {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.CndVRadioLabel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #888;
    transition: all 0.2s;
    user-select: none;
}

.CndVRadioLabel:hover {
    border-color: rgba(250, 204, 20, 0.4);
    background: rgba(250, 204, 20, 0.05);
    color: #ccc;
}

.CndVRadioLabel input[type="radio"] {
    accent-color: #ffc800;
}

.CndVRadioLabel input[type="radio"]:checked+span {
    color: #ffc800;
    font-weight: 600;
}

/* --- Sub-passos (passo 3) --- */

.CndVSubSteps {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 0;
}

.CndVSubStep {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.CndVSubStep_Num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #555;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.CndVSubStep_Txt {
    font-size: 0.78rem;
    color: #555;
    font-weight: 500;
    transition: color 0.25s;
    white-space: nowrap;
}

.CndVSubStep.ativo .CndVSubStep_Num {
    background: #ffc800;
    border-color: #ffc800;
    color: #111;
}

.CndVSubStep.ativo .CndVSubStep_Txt {
    color: #ffc800;
    font-weight: 600;
}

.CndVSubStep.ok .CndVSubStep_Num {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
}

.CndVSubStep.ok .CndVSubStep_Txt {
    color: #2ecc71;
}

.CndVSubStep_Sep {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    min-width: 20px;
    margin: 0 6px;
}

/* --- Titulo de secao interna --- */

.CndVSecaoTit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.CndVSecaoTit svg {
    width: 16px;
    height: 16px;
    color: #ffc800;
}

.CndVSeparador {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 28px 0;
}

/* --- Sub-cards (experiencia, escolaridade, idioma) --- */

.CndVSubCard {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 16px;
}

.CndVSubCard_Header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.CndVSubCard_Titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.CndVSubCard_Titulo svg {
    width: 14px;
    height: 14px;
    color: #ffc800;
}

.CndVSubCard_Body {
    padding: 16px 16px 4px;
}

/* --- Botoes add / rem --- */

.CndVBtnAddArea {
    margin-top: 4px;
    margin-bottom: 8px;
}

.CndVBtnAdd {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px dashed rgba(250, 204, 20, 0.35);
    color: #555;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.CndVBtnAdd:hover {
    border-color: rgba(250, 204, 20, 0.7);
    border-style: solid;
    background: rgba(250, 204, 20, 0.05);
    color: #ffc800;
}

.CndVBtnAdd svg {
    width: 15px;
    height: 15px;
    color: #ffc800;
}

.CndVBtnRem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 100, 100, 0.25);
    color: rgba(255, 100, 100, 0.7);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.CndVBtnRem:hover {
    border-color: rgba(255, 100, 100, 0.6);
    background: rgba(255, 100, 100, 0.08);
    color: #ff6464;
}

.CndVBtnRem svg {
    width: 13px;
    height: 13px;
}

/* --- Toggle (ainda trabalho aqui) --- */

.CndVToggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.CndVToggle_Check {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.CndVToggle_Track {
    width: 42px;
    height: 22px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}

.CndVToggle_Track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: #555;
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}

.CndVToggle_Check:checked+.CndVToggle_Track {
    background: rgba(250, 204, 20, 0.2);
    border-color: rgba(250, 204, 20, 0.4);
}

.CndVToggle_Check:checked+.CndVToggle_Track::after {
    transform: translateX(20px);
    background: #ffc800;
}

.CndVToggle_Label {
    font-size: 0.85rem;
    color: #666;
}

/* --- Idiomas --- */

.CndVIdiomaGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.CndVIdiomaGrp_Tit {
    font-size: 0.72rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.CndVIdiomaRadios {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.CndVIdiomaRadioLabel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #555;
    cursor: pointer;
}

.CndVIdiomaRadioLabel:hover {
    color: #aaa;
}

.CndVIdiomaRadioLabel input[type="radio"] {
    accent-color: #ffc800;
}

/* --- Foto de perfil --- */

.CndVFotoWrap {
    max-width: 320px;
}

/* --- Bloco de resumo (passo 4) --- */

.CndVGratuitoBanner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    background: rgba(46, 204, 113, 0.07);
    border: 1px solid rgba(46, 204, 113, 0.22);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 20px;
}

.CndVGratuitoBanner svg {
    width: 28px;
    height: 28px;
    color: #2ecc71;
    flex-shrink: 0;
}

.CndVGratuitoBanner_Tit {
    font-size: 0.92rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 2px;
}

.CndVGratuitoBanner_Sub {
    font-size: 0.76rem;
    color: #555;
}

.CndVResumo_Wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.CndVResumo_Wrap.Esp1 {
    grid-template-columns: 1fr;
}

.CndVResumo_Bloco {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.CndVResumo_BlocoTit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.CndVResumo_BlocoTit svg {
    width: 13px;
    height: 13px;
    color: #ffc800;
}

.CndVResumo_Row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    gap: 16px;
}

.CndVResumo_Row:last-child {
    border-bottom: none;
}

.CndVResumo_Row_Label {
    font-size: 0.75rem;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
}

.CndVResumo_Row_Val {
    font-size: 0.86rem;
    color: #ccc;
    font-weight: 500;
    text-align: right;
    word-break: break-word;
}

.CndVResumo_Salario {
    color: #ffc800;
    font-weight: 700;
}

.CndVResumo_TotalRow {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(250, 204, 20, 0.06);
    border: 1px solid rgba(250, 204, 20, 0.2);
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 0.85rem;
    color: #ffc800;
    font-weight: 600;
}

.CndVResumo_TotalRow svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --- Aceite de termos --- */

.CndVTermosCard {
    background: rgba(250, 204, 20, 0.04);
    border: 1px solid rgba(250, 204, 20, 0.18);
    border-radius: 12px;
    overflow: hidden;
}

.CndVTermosCard_Header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(250, 204, 20, 0.12);
}

.CndVTermosCard_Header svg {
    width: 22px;
    height: 22px;
    color: #ffc800;
    flex-shrink: 0;
}

.CndVTermosCard_Tit {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 2px;
}

.CndVTermosCard_Sub {
    font-size: 0.74rem;
    color: #555;
}

.CndVTermosCard_Body {
    padding: 18px 22px;
}

.CndVTermosCard_Toggle {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 0.84rem;
    color: #666;
    line-height: 1.6;
}

.CndVTermosCard_Toggle input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #ffc800;
    flex-shrink: 0;
    cursor: pointer;
}

.CndVTermosCard_Toggle a {
    color: #ffc800;
    font-weight: 600;
    text-decoration: none;
}

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

/* --- Botoes de navegacao --- */

.CndVBtns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    gap: 12px;
}

.CndVBtnVoltar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #555;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 11px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.CndVBtnVoltar:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #aaa;
}

.CndVBtnVoltar svg {
    width: 15px;
    height: 15px;
}

.CndVBtnAvancar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffc800;
    border: none;
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    min-width: 170px;
}

.CndVBtnAvancar:hover {
    background: #e6b400;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(250, 204, 20, 0.3);
}

.CndVBtnAvancar:disabled,
.CndVBtnAvancar.carregando {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.CndVBtnAvancar svg,
.CndVBtnAvancar .CndVBtnIco svg {
    width: 16px;
    height: 16px;
}

.CndVBtnTxt {
    transition: opacity 0.2s;
}

.CndVBtnIco {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}

.CndVBtnAvancar.carregando .CndVBtnTxt,
.CndVBtnAvancar.carregando .CndVBtnIco {
    opacity: 0;
}

.CndVSpinner {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(17, 17, 17, 0.3);
    border-top-color: #111;
    border-radius: 50%;
    animation: CndVSpin 0.7s linear infinite;
}

.CndVBtnAvancar.carregando .CndVSpinner {
    display: block;
}

@keyframes CndVSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* --- Responsivo --- */

@media (max-width: 768px) {
    .CndV {
        padding: 28px 0 60px;
    }

    .CndVPasso {
        padding: 24px 20px;
    }

    .CndVBtns {
        padding: 16px 20px 20px;
    }

    .CndVFrmGrid2,
    .CndVFrmGrid3 {
        grid-template-columns: 1fr;
    }

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

    .CndVIdiomaGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .CndVStep_Txt {
        display: none;
    }

    .CndVSubStep_Txt {
        display: none;
    }

    .CndVStep_Num {
        width: 32px;
        height: 32px;
    }

    .CndVBanner {
        padding: 18px 16px;
    }

    .CndVBanner_Titulo {
        font-size: 1.1rem;
    }

    .CndVBanner_Tags {
        gap: 8px;
    }

    .CndVBanner_Tag,
    .CndVBanner_Salario {
        font-size: 0.78rem;
        padding: 4px 10px;
    }

    .CndVHeader_Titulo {
        font-size: 1.5rem;
    }

    .CndVSubSteps {
        padding: 12px 0;
        margin-bottom: 20px;
    }

    .CndVSubStep {
        gap: 5px;
    }

    .CndVSubStep_Num {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .CndVBtns {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px 20px;
    }

    .CndVBtnVoltar,
    .CndVBtnAvancar {
        width: 100%;
        justify-content: center;
        min-width: unset;
        margin-left: 0;
    }

    .CndVBtnAvancar {
        padding: 13px 20px;
        font-size: 0.9rem;
    }

    .CndVBtnVoltar {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .CndVPasso {
        padding: 20px 16px;
    }

    .CndVHeader_Titulo {
        font-size: 1.25rem;
    }

    .CndVHeader_Sub {
        font-size: 0.82rem;
    }

    .CndVHeader {
        margin-bottom: 20px;
    }

    .CndVBanner {
        padding: 16px;
        margin-bottom: 20px;
    }

    .CndVBanner_Titulo {
        font-size: 1rem;
    }

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

    .CndVStep_Sep {
        min-width: 0;
        margin: 0 3px;
    }

    .CndVStep {
        flex-shrink: 0;
    }

    .CndVStep_Num {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .CndVPasso_Titulo {
        font-size: 1.05rem;
    }

    .CndVSubCard_Body {
        padding: 14px 12px 4px;
    }

    .CndVRadioLabel {
        padding: 7px 12px;
        font-size: 0.82rem;
    }
}

/* ============================================
   SUCESSO - /candidatura-confirmada/
   ============================================ */

.CndVSucesso {
    text-align: center;
    padding: 60px 24px;
}

.CndVSucesso_Icone {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    border: 2px solid rgba(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.CndVSucesso_Icone i {
    width: 40px;
    height: 40px;
    color: #22c55e;
    stroke-width: 1.5;
}

.CndVSucesso_Titulo {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.CndVSucesso_Vaga {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    display: inline-block;
    margin-bottom: 24px;
    min-width: 280px;
}

.CndVSucesso_VagaTit {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.CndVSucesso_VagaEmp {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.CndVSucesso_Msg {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 36px;
}

.CndVSucesso_Btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.CndVSucesso_BtnPri,
.CndVSucesso_BtnSec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.CndVSucesso_BtnPri:hover,
.CndVSucesso_BtnSec:hover {
    opacity: 0.85;
    text-decoration: none;
}

.CndVSucesso_BtnPri {
    background: #FFD600;
    color: #111111;
}

.CndVSucesso_BtnSec {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 576px) {

    .CndVSucesso {
        padding: 36px 16px;
    }

    .CndVSucesso_Titulo {
        font-size: 1.5rem;
    }

    .CndVSucesso_Vaga {
        display: block;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

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

    .CndVSucesso_BtnPri,
    .CndVSucesso_BtnSec {
        justify-content: center;
        width: 100%;
    }

}

/* --- Manter logado (reuso de css_login.css) --- */

.LgLembrar {
    margin-top: 16px;
}

.LgLembrar_Label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #888;
    user-select: none;
}

.LgLembrar_Label input[type="checkbox"] {
    display: none;
}

.LgLembrar_Check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid rgba(250, 204, 20, 0.35);
    border-radius: 5px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}

.LgLembrar_Label input[type="checkbox"]:checked+.LgLembrar_Check {
    background: rgba(250, 204, 20, 1);
    border-color: rgba(250, 204, 20, 1);
}

.LgLembrar_Label input[type="checkbox"]:checked+.LgLembrar_Check::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #000;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}

/* --- Grid de Idiomas --- */

.CndVIdiGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 12px;
}

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

.CndVIdiGrp {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 12px;
}

.CndVIdiGrpLabel {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.CndVIdiRadios {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.CndVIdiRadioLabel {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.CndVIdiRadioLabel input[type="radio"] {
    display: none;
}

.CndVIdiRadioLabel span {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.15s;
    white-space: nowrap;
}

.CndVIdiRadioLabel input[type="radio"]:checked+span {
    background: #FFD600;
    color: #111111;
    border-color: #FFD600;
    font-weight: 700;
}

.CndVIdiRadioLabel:hover span {
    border-color: rgba(255, 214, 0, 0.4);
    color: rgba(255, 255, 255, 0.85);
}

.CndVGeneroRadios .CndVIdiRadioLabel span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    padding: 4px 12px;
}

.CndVGeneroRadios .CndVIdiRadioLabel span i {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.CndVGeneroRadios .CndVIdiRadioLabel input[type="radio"]:checked+span {
    background: #FFD600;
    color: #111111;
    border-color: #FFD600;
}

/* --- Card: ja se candidatou --- */

.CndVCardJaCandidatou {
    background: #141414;
    border: 1px solid rgba(250, 204, 20, 0.25);
    border-radius: 16px;
    box-shadow: 0 10px 48px rgba(0, 0, 0, 0.45);
    padding: 56px 40px;
    text-align: center;
    margin-top: 24px;
}

.CndVCardJaCandidatou_Ico {
    margin-bottom: 20px;
}

.CndVCardJaCandidatou_Ico svg {
    width: 64px;
    height: 64px;
    color: #FFD600;
    stroke-width: 1.5;
}

.CndVCardJaCandidatou_Titulo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.CndVCardJaCandidatou_Sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.CndVCardJaCandidatou_Btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.CndVCardJaCandidatou_Btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.CndVCardJaCandidatou_Btn:hover {
    opacity: 0.85;
}

.CndVCardJaCandidatou_Btn--prim {
    background: #FFD600;
    color: #111111;
}

.CndVCardJaCandidatou_Btn--sec {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* PCD */
.CndVPCDGrp {
    margin-top: 20px;
}

.CndVPCDGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.CndVPCDCard {
    cursor: pointer;
}

.CndVPCDCard input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.CndVPCDCard_Inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    background: #0d0d0d;
    border: 1.5px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    font-size: 12px;
    color: #666;
    transition: all 0.2s;
    line-height: 1.3;
    text-align: center;
    min-height: 80px;
}

.CndVPCDCard_Inner svg,
.CndVPCDCard_Inner i {
    width: 22px;
    height: 22px;
    stroke: #444;
    transition: stroke 0.2s;
}

.CndVPCDCard input:checked+.CndVPCDCard_Inner {
    border-color: rgba(250, 204, 20, 0.75);
    background: rgba(250, 204, 20, 0.05);
    color: rgba(250, 204, 20, 1);
}

.CndVPCDCard input:checked+.CndVPCDCard_Inner svg,
.CndVPCDCard input:checked+.CndVPCDCard_Inner i {
    stroke: rgba(250, 204, 20, 1);
}

.CndVPCDCard_Inner:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #999;
}

.CndVPCDBusca {
    margin-bottom: 10px !important;
}

.CndVPCDNenhum {
    display: none;
    font-size: 13px;
    color: #444;
    text-align: center;
    padding: 18px 0 4px 0;
}

#CndVBlcPCD {
    margin-bottom: 20px;
}

@media screen and (max-width: 520px) {
    .CndVPCDGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Botao WhatsApp */
.CndVBtnAvancar--wpp {
    background: #1aa34a;
    color: #fff;
    border-color: #1aa34a;
}
.CndVBtnAvancar--wpp:hover {
    background: #158f3e;
    border-color: #158f3e;
}