/*
############
Anunciar Vaga - Wizard
############
*/

/* --- Sub-indicador de passos (dentro do Passo 1) --- */

.AnVSubSteps {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.AnVSubStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.AnVSubStep_Num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #252525;
    background: #0d0d0d;
    color: #333;
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.AnVSubStep_Txt {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 10px;
    color: #333;
    white-space: nowrap;
    transition: color 0.25s;
}

.AnVSubStep.ativo .AnVSubStep_Num {
    border-color: rgba(250, 204, 20, 0.65);
    background: rgba(250, 204, 20, 0.08);
    color: rgba(250, 204, 20, 0.9);
    box-shadow: 0 0 0 3px rgba(250, 204, 20, 0.07);
}

.AnVSubStep.ativo .AnVSubStep_Txt {
    color: rgba(250, 204, 20, 0.65);
    font-family: 'hinted-Dobra-Medium', sans-serif;
}

.AnVSubStep.ok .AnVSubStep_Num {
    border-color: rgba(250, 204, 20, 0.28);
    background: rgba(250, 204, 20, 0.04);
    color: rgba(250, 204, 20, 0.38);
}

.AnVSubStep.ok .AnVSubStep_Txt {
    color: rgba(250, 204, 20, 0.28);
}

.AnVSubStep_Sep {
    flex: 1;
    height: 1px;
    background: #1e1e1e;
    margin: 0 8px 18px 8px;
    transition: background 0.3s;
}

.AnVSubStep_Sep.ok {
    background: rgba(250, 204, 20, 0.18);
}

/* --- Grade de categorias com busca --- */

.AnVCatBusca {
    margin-bottom: 10px;
}

.AnVCatGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.AnVCatCard_Inner {
    flex-direction: row;
    justify-content: flex-start;
    padding: 9px 11px;
    font-size: 12px;
    min-height: auto;
    text-align: left;
    line-height: 1.3;
}

.AnVCatNenhum {
    display: none;
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #444;
    text-align: center;
    padding: 18px 0 4px 0;
}

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

.AnV {
    padding: 50px 0 80px 0;
}

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

/* --- Cabecalho da pagina --- */

.AnVHeader {
    text-align: center;
    margin-bottom: 36px;
}

.AnVHeader_Titulo {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 8px;
}

.AnVHeader_Sub {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 15px;
    color: #666;
}

/* --- Indicador de Passos --- */

.AnVSteps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
}

.AnVStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 56px;
}

.AnVStep_Num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #252525;
    background: #111;
    color: #444;
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
}

.AnVStep_Txt {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 11px;
    color: #444;
    white-space: nowrap;
    transition: color 0.25s;
}

.AnVStep.ativo .AnVStep_Num {
    border-color: rgba(250, 204, 20, 1);
    background: rgba(250, 204, 20, 1);
    color: #000;
    box-shadow: 0 0 0 4px rgba(250, 204, 20, 0.15);
}

.AnVStep.ativo .AnVStep_Txt {
    color: rgba(250, 204, 20, 1);
    font-family: 'hinted-Dobra-Bold', sans-serif;
}

.AnVStep.ok .AnVStep_Num {
    border-color: rgba(250, 204, 20, 0.45);
    background: rgba(250, 204, 20, 0.08);
    color: rgba(250, 204, 20, 0.7);
}

.AnVStep.ok .AnVStep_Txt {
    color: rgba(250, 204, 20, 0.5);
}

.AnVStep_Sep {
    flex: 1;
    min-width: 24px;
    max-width: 80px;
    height: 2px;
    background: #1e1e1e;
    margin-bottom: 22px;
    transition: background 0.3s;
}

.AnVStep_Sep.ok {
    background: rgba(250, 204, 20, 0.3);
}

/* --- Banner: empresa ja logada --- */

.AnVEmpBanner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    background: rgba(250, 204, 20, 0.05);
    border: 1px solid rgba(250, 204, 20, 0.25);
    border-radius: 10px;
    margin-bottom: 28px;
}

.AnVEmpBanner_Ico {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    background: rgba(250, 204, 20, 0.1);
    border: 1px solid rgba(250, 204, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.AnVEmpBanner_Ico svg,
.AnVEmpBanner_Ico i {
    width: 17px;
    height: 17px;
    stroke: rgba(250, 204, 20, 0.85);
}

.AnVEmpBanner_Info {
    flex: 1;
    min-width: 0;
}

.AnVEmpBanner_Nome {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 14px;
    color: rgba(250, 204, 20, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.AnVEmpBanner_Sub {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 11px;
    color: #666;
}

/* --- Card principal --- */

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

/* --- Titulo do passo --- */

.AnVPasso_Titulo {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px;
}

.AnVPasso_Sub {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.5;
}

/* --- Grid 3 colunas --- */

.AnVGrid3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 16px;
}

.AnVMb {
    margin-bottom: 20px;
}

/* --- Textarea --- */

.AnVTextarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.65;
}

/* --- Radio cards (Modalidade) --- */

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

.AnVRadioCard {
    cursor: pointer;
}

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

.AnVRadioCard_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: 10px;
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #666;
    transition: all 0.2s;
    text-align: center;
}

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

.AnVRadioCard input:checked+.AnVRadioCard_Inner {
    border-color: rgba(250, 204, 20, 0.75);
    background: rgba(250, 204, 20, 0.05);
    color: rgba(250, 204, 20, 1);
    font-family: 'hinted-Dobra-Medium', sans-serif;
}

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

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

/* --- Toggle Salario --- */

.AnVSalToggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 0;
}

.AnVSalToggle .LgLabel {
    margin-bottom: 0;
}

.AnVSalToggle_Btns {
    display: flex;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 7px;
    padding: 3px;
}

.AnVSalBtn {
    padding: 6px 14px;
    background: transparent;
    border: none;
    border-radius: 5px;
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}

.AnVSalBtn.ativo {
    background: rgba(250, 204, 20, 1);
    color: #000;
    font-family: 'hinted-Dobra-Bold', sans-serif;
}

/* --- Checkbox row --- */

.AnVCheckRow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.AnVCheckRow input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    accent-color: rgba(250, 204, 20, 1);
    cursor: pointer;
}

.AnVCheckRow label {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    line-height: 1.4;
}

/* --- Card: Vaga Anonima --- */

.AnVOcultarCard {
    display: block;
    cursor: pointer;
    margin-top: 8px;
}

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

.AnVOcultarCard_Inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #0d0d0d;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.2s;
}

.AnVOcultarCard:hover .AnVOcultarCard_Inner {
    border-color: rgba(255, 255, 255, 0.18);
}

.AnVOcultarCard_Ico {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.AnVOcultarCard_Ico svg,
.AnVOcultarCard_Ico i {
    width: 16px;
    height: 16px;
    stroke: #555;
    transition: stroke 0.2s;
}

.AnVOcultarCard_Txt {
    flex: 1;
    min-width: 0;
}

.AnVOcultarCard_Titulo {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 2px;
    transition: color 0.2s;
}

.AnVOcultarCard_Sub {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 11px;
    color: #444;
    line-height: 1.4;
    transition: color 0.2s;
}

.AnVOcultarCard_Toggle {
    width: 36px;
    height: 20px;
    min-width: 36px;
    background: #1a1a1a;
    border: 1.5px solid #2a2a2a;
    border-radius: 10px;
    position: relative;
    transition: all 0.2s;
}

.AnVOcultarCard_Toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    transition: all 0.2s;
}

/* Estado marcado */

.AnVOcultarCard input:checked~.AnVOcultarCard_Inner {
    border-color: rgba(250, 204, 20, 0.55);
    background: rgba(250, 204, 20, 0.04);
}

.AnVOcultarCard input:checked~.AnVOcultarCard_Inner .AnVOcultarCard_Ico {
    background: rgba(250, 204, 20, 0.1);
    border-color: rgba(250, 204, 20, 0.25);
}

.AnVOcultarCard input:checked~.AnVOcultarCard_Inner .AnVOcultarCard_Ico svg,
.AnVOcultarCard input:checked~.AnVOcultarCard_Inner .AnVOcultarCard_Ico i {
    stroke: rgba(250, 204, 20, 0.9);
}

.AnVOcultarCard input:checked~.AnVOcultarCard_Inner .AnVOcultarCard_Titulo {
    color: rgba(250, 204, 20, 1);
}

.AnVOcultarCard input:checked~.AnVOcultarCard_Inner .AnVOcultarCard_Sub {
    color: #777;
}

.AnVOcultarCard input:checked~.AnVOcultarCard_Inner .AnVOcultarCard_Toggle {
    background: rgba(250, 204, 20, 1);
    border-color: rgba(250, 204, 20, 1);
}

.AnVOcultarCard input:checked~.AnVOcultarCard_Inner .AnVOcultarCard_Toggle::after {
    left: calc(100% - 14px);
    background: #000;
}

/* --- Toggle Login / Cadastro (passo 2) --- */

.AnVTipoAcesso {
    display: flex;
    background: #0a0a0a;
    border: 1px solid rgba(250, 204, 20, 0.18);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 26px;
}

.AnVTipoAcesso_Btn {
    flex: 1;
    padding: 11px 14px;
    border: none;
    background: transparent;
    border-radius: 7px;
    font-family: 'hinted-Dobra-Medium', sans-serif;
    font-size: 13px;
    color: #777;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.AnVTipoAcesso_Btn.ativo {
    background: rgba(250, 204, 20, 1);
    color: #000;
    font-family: 'hinted-Dobra-Bold', sans-serif;
}

.AnVTipoAcesso_Btn svg,
.AnVTipoAcesso_Btn i {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* --- Cards de Plano --- */

.AnVPlanos_Grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.AnVPlanoCard {
    cursor: pointer;
    position: relative;
    display: block;
}

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

.AnVPlanoCard_Inner {
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    padding: 22px 18px;
    background: #0d0d0d;
    text-align: center;
    transition: all 0.22s;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.AnVPlanoCard_Trofeu {
    height: 34px;
    object-fit: contain;
    margin-bottom: 4px;
}

.AnVPlanoCard_Titulo {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 15px;
    color: #dddddd;
    transition: color 0.2s;
    margin-bottom: 4px;
}

.AnVPlanoCard_Preco {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 11px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.AnVPlanoCard_Valor {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 24px;
    color: #dddddd;
    line-height: 1.1;
    transition: color 0.2s;
    margin: 2px 0;
}

.AnVPlanoCard_Valor span {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 14px;
    color: #555;
}

.AnVPlanoCard_Dias {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 12px;
    color: #555;
    margin-bottom: 4px;
}

.AnVPlanoCard_Obs {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 11px;
    color: #555;
    line-height: 1.45;
    text-align: center;
}

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

.AnVPlanoCard input:checked+.AnVPlanoCard_Inner .AnVPlanoCard_Titulo {
    color: rgba(250, 204, 20, 1);
}

.AnVPlanoCard input:checked+.AnVPlanoCard_Inner .AnVPlanoCard_Valor {
    color: rgba(250, 204, 20, 1);
}

.AnVPlanoCard_Inner:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.AnVPlanoCard_Check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(250, 204, 20, 1);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.AnVPlanoCard_Check svg,
.AnVPlanoCard_Check i {
    width: 12px;
    height: 12px;
    stroke: #000;
    stroke-width: 2.5;
}

.AnVPlanoCard input:checked~.AnVPlanoCard_Check {
    display: flex;
}

/* --- Aviso sobre editorias --- */

.AnVAvisoEd {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    background: rgba(250, 204, 20, 0.05);
    border: 1px solid rgba(250, 204, 20, 0.18);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 20px;
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #999;
    line-height: 1.55;
}

.AnVAvisoEd svg,
.AnVAvisoEd i {
    width: 18px;
    height: 18px;
    stroke: rgba(250, 204, 20, 0.7);
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Lista de Planos (novo layout) --- */

.AnVPlanos_Lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.AnVPlanoRow {
    cursor: pointer;
    display: block;
    position: relative;
}

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

.AnVPlanoRow_Inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #0d0d0d;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s;
}

.AnVPlanoRow_Inner:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.AnVPlanoRow_Radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #282828;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s;
    flex-shrink: 0;
}

.AnVPlanoRow_Radio svg,
.AnVPlanoRow_Radio i {
    width: 11px;
    height: 11px;
    stroke: #000;
    stroke-width: 3;
    opacity: 0;
    transition: opacity 0.15s;
}

.AnVPlanoRow_Info {
    flex: 1;
    min-width: 0;
}

.AnVPlanoRow_Nome {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.AnVPlanoRow_Img {
    height: 18px;
    object-fit: contain;
    opacity: 0.7;
}

.AnVPlanoRow_Desc {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 12px;
    color: #444;
    line-height: 1.45;
    transition: color 0.2s;
}

.AnVPlanoRow_Preco {
    text-align: right;
    flex-shrink: 0;
}

.AnVPlanoRow_Valor {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 20px;
    color: #cccccc;
    line-height: 1.1;
    transition: color 0.2s;
}

.AnVPlanoRow_Valor span {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #555;
}

.AnVPlanoRow_Periodo {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 11px;
    color: #444;
    margin-top: 3px;
    transition: color 0.2s;
}

/* Estado selecionado */

.AnVPlanoRow input:checked+.AnVPlanoRow_Inner {
    border-color: rgba(250, 204, 20, 0.65);
    background: rgba(250, 204, 20, 0.04);
}

.AnVPlanoRow input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Radio {
    background: rgba(250, 204, 20, 1);
    border-color: rgba(250, 204, 20, 1);
}

.AnVPlanoRow input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Radio svg,
.AnVPlanoRow input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Radio i {
    opacity: 1;
}

.AnVPlanoRow input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Nome {
    color: rgba(250, 204, 20, 1);
}

.AnVPlanoRow input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Desc {
    color: rgba(250, 204, 20, 0.4);
}

.AnVPlanoRow input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Valor {
    color: rgba(250, 204, 20, 1);
}

.AnVPlanoRow input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Periodo {
    color: rgba(250, 204, 20, 0.45);
}


/* --- Badge e Bloco de Dias dos Planos --- */

.AnVPlanoRow--Top,
.AnVPlanoRow--Pos {
    margin-top: 16px;
}

.AnVPlanoBadge {
    position: absolute;
    top: -11px;
    left: 18px;
    background: #facc14;
    color: #000;
    font-size: 11px;
    padding: 3px 10px 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.AnVPlanoBadge svg,
.AnVPlanoBadge i {
    width: 11px;
    height: 11px;
    stroke-width: 2.5;
}

.AnVPlanoBadge--N {
    background: rgb(24, 24, 24);
    color: #dfd7d7;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.AnVPlanoBadge--N svg,
.AnVPlanoBadge--N i {
    stroke: #666;
}

/* --- Opcao Gratuita --- */

.AnVPlanoRow--Free {
    margin-top: 16px;
    margin-bottom: 6px;
}

.AnVPlanoRow--Free .AnVPlanoRow_Inner {
    border-color: rgba(34, 197, 94, 0.38);
    background: rgba(34, 197, 94, 0.03);
}

.AnVPlanoRow--Free .AnVPlanoRow_Inner:hover {
    border-color: rgba(34, 197, 94, 0.6);
}

.AnVPlanoRow--Free .AnVPlanoRow_Nome {
    color: #22c55e;
}

.AnVPlanoRow--Free .AnVPlanoRow_Valor {
    color: #22c55e;
}

.AnVPlanoRow--Free input:checked+.AnVPlanoRow_Inner {
    border-color: rgba(34, 197, 94, 0.7);
    background: rgba(34, 197, 94, 0.07);
}

.AnVPlanoRow--Free input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Radio {
    background: #22c55e;
    border-color: #22c55e;
}

.AnVPlanoRow--Free input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Nome {
    color: #22c55e;
}

.AnVPlanoRow--Free input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Desc {
    color: rgba(34, 197, 94, 0.5);
}

.AnVPlanoRow--Free input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Valor {
    color: #22c55e;
}

.AnVPlanoRow--Free input:checked+.AnVPlanoRow_Inner .AnVPlanoRow_Periodo {
    color: rgba(34, 197, 94, 0.55);
}

.AnVPlanoBadge--Free {
    background: #22c55e;
    color: #000;
}

.AnVPlanoBadge--Free svg,
.AnVPlanoBadge--Free i {
    stroke: #000;
}

.AnVPlanoRow--Top .AnVPlanoRow_Inner {
    border-color: rgba(250, 204, 20, 0.28);
}

.AnVPlanoDias {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.AnVPlanoDias_Num {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 26px;
    color: #888;
    line-height: 1;
    transition: color 0.2s;
}

.AnVPlanoDias_Txt {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 9px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    transition: color 0.2s;
}

/* Dias quando plano selecionado */
.AnVPlanoRow:has(input:checked) .AnVPlanoDias {
    background: rgba(250, 204, 20, 0.08);
}

.AnVPlanoRow:has(input:checked) .AnVPlanoDias_Num {
    color: #facc14;
}

.AnVPlanoRow:has(input:checked) .AnVPlanoDias_Txt {
    color: rgba(250, 204, 20, 0.5);
}

/* --- Cupom de Desconto --- */

.AnVCupomWrap {
    margin-top: 20px;
}

.AnVCupomCard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
}

.AnVCupomCard_Titulo {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.AnVCupomCard_Titulo svg,
.AnVCupomCard_Titulo i {
    width: 15px;
    height: 15px;
    stroke: #888;
}

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

.AnVCupomBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(250, 204, 20, 1);
    border: none;
    border-radius: 8px;
    color: #000;
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    min-width: 90px;
    position: relative;
}

.AnVCupomBtn:hover {
    background: rgba(250, 204, 20, 0.85);
}

.AnVCupomBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.AnVCupomBtn .AnVSpinner {
    display: none;
    border-color: rgba(0, 0, 0, 0.25);
    border-top-color: #000;
}

.AnVCupomBtn.carregando .AnVCupomBtnTxt {
    display: none;
}

.AnVCupomBtn.carregando .AnVSpinner {
    display: block;
}

.AnVCupomMsg {
    margin-top: 10px;
    font-size: 13px;
}

.AnVCupomMsg--ok {
    color: #4ade80;
}

.AnVCupomMsg--erro {
    color: #f87171;
}

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

.AnVCupomAplicado_Tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 13px;
    color: #4ade80;
    font-family: 'hinted-Dobra-Bold', sans-serif;
}

.AnVCupomAplicado_Tag svg,
.AnVCupomAplicado_Tag i {
    width: 12px;
    height: 12px;
    stroke: #4ade80;
}

.AnVCupomRemover {
    background: none;
    border: none;
    color: #555;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.AnVCupomRemover:hover {
    color: #888;
}

/* --- Grid de Editorias --- */

.AnVEdGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
}

.AnVEdCard {
    cursor: pointer;
    display: block;
    position: relative;
}

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

.AnVEdCard_Inner {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    background: #0d0d0d;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.2s;
}

.AnVEdCard_ChkBox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #282828;
    border-radius: 5px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s;
}

.AnVEdCard_ChkBox svg,
.AnVEdCard_ChkBox i {
    width: 11px;
    height: 11px;
    stroke: #000;
    stroke-width: 3;
    opacity: 0;
    transition: opacity 0.15s;
}

.AnVEdCard_Info {
    flex: 1;
    min-width: 0;
}

.AnVEdCard_Titulo {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 2px;
    transition: color 0.2s;
}

.AnVEdCard_Cidades {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 11px;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.AnVEdCard_Preco {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 14px;
    color: #555;
    transition: color 0.2s;
    white-space: nowrap;
    text-align: right;
}

.AnVEdCard input:checked+.AnVEdCard_Inner {
    border-color: rgba(250, 204, 20, 0.65);
    background: rgba(250, 204, 20, 0.05);
}

.AnVEdCard input:checked+.AnVEdCard_Inner .AnVEdCard_ChkBox {
    background: rgba(250, 204, 20, 1);
    border-color: rgba(250, 204, 20, 1);
}

.AnVEdCard input:checked+.AnVEdCard_Inner .AnVEdCard_ChkBox svg,
.AnVEdCard input:checked+.AnVEdCard_Inner .AnVEdCard_ChkBox i {
    opacity: 1;
}

.AnVEdCard input:checked+.AnVEdCard_Inner .AnVEdCard_Titulo {
    color: rgba(250, 204, 20, 1);
}

.AnVEdCard input:checked+.AnVEdCard_Inner .AnVEdCard_Preco {
    color: rgba(250, 204, 20, 1);
}

.AnVEdCard input:checked+.AnVEdCard_Inner .AnVEdCard_Cidades {
    color: rgba(250, 204, 20, 0.45);
}

.AnVEdPreco_De {
    display: block;
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 11px;
    color: #3a3a3a;
    text-decoration: line-through;
}

.AnVEdPreco_Por {
    display: block;
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 13px;
    color: #777;
}

.AnVEdCard input:checked+.AnVEdCard_Inner .AnVEdPreco_De {
    color: rgba(250, 204, 20, 0.3);
}

.AnVEdCard input:checked+.AnVEdCard_Inner .AnVEdPreco_Por {
    color: rgba(250, 204, 20, 1);
}

.AnVEdCard_Inner:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

/* --- Total editorias --- */

.AnVEdTotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 204, 20, 0.06);
    border: 1px solid rgba(250, 204, 20, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 18px;
}

.AnVEdTotal_Label {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #888;
}

.AnVEdTotal_Label strong {
    color: #ffffff;
    font-family: 'hinted-Dobra-Bold', sans-serif;
}

.AnVEdTotal_Valor {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 22px;
    color: rgba(250, 204, 20, 1);
}

/* --- Resumo (passo 5) --- */

.AnVResumo_Wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
}

.AnVResumo_Bloco {
    background: #0f0f0f;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    padding: 18px 22px;
}

.AnVResumo_BlocoTit {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 11px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    align-items: center;
    gap: 7px;
}

.AnVResumo_BlocoTit svg,
.AnVResumo_BlocoTit i {
    width: 13px;
    height: 13px;
    stroke: #333;
    flex-shrink: 0;
}

.AnVResumo_Row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 9px;
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
}

.AnVResumo_Row:last-child {
    margin-bottom: 0;
}

.AnVResumo_Row_Label {
    color: #555;
    flex-shrink: 0;
}

.AnVResumo_Row_Val {
    color: #cccccc;
    text-align: right;
    word-break: break-word;
    font-family: 'hinted-Dobra-Medium', sans-serif;
}

.AnVResumo_TotalRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 204, 20, 0.05);
    border: 1px solid rgba(250, 204, 20, 0.2);
    border-radius: 12px;
    padding: 16px 22px;
}

.AnVResumo_TotalRow_Label {
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 14px;
    color: #777;
}

.AnVResumo_TotalRow_Valor {
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 28px;
    color: rgba(250, 204, 20, 1);
}

/* --- Card de Termos --- */

.AnVTermosCard {
    display: block;
    cursor: pointer;
    margin-top: 20px;
}

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

.AnVTermosCard_Inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #0d0d0d;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.2s;
}

.AnVTermosCard:hover .AnVTermosCard_Inner {
    border-color: rgba(255, 255, 255, 0.16);
}

.AnVTermosCard_Ico {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.AnVTermosCard_Ico svg,
.AnVTermosCard_Ico i {
    width: 17px;
    height: 17px;
    stroke: #555;
    transition: stroke 0.2s;
}

.AnVTermosCard_Txt {
    flex: 1;
    font-family: 'hinted-Dobra-Book', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.55;
}

.AnVTermosCard_Txt a {
    color: rgba(250, 204, 20, 0.75);
    text-decoration: none;
}

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

.AnVTermosCard_Toggle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #1a1a1a;
    border: 2px solid #3a3a3a;
    border-radius: 5px;
    position: relative;
    transition: all 0.2s;
    flex-shrink: 0;
}

.AnVTermosCard_Toggle::after {
    content: '';
    position: absolute;
    display: none;
    top: 1px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: 2px solid #000;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Estado marcado */

.AnVTermosCard input:checked~.AnVTermosCard_Inner {
    border-color: rgba(250, 204, 20, 0.55);
    background: rgba(250, 204, 20, 0.04);
}

.AnVTermosCard input:checked~.AnVTermosCard_Inner .AnVTermosCard_Ico {
    background: rgba(250, 204, 20, 0.1);
    border-color: rgba(250, 204, 20, 0.25);
}

.AnVTermosCard input:checked~.AnVTermosCard_Inner .AnVTermosCard_Ico svg,
.AnVTermosCard input:checked~.AnVTermosCard_Inner .AnVTermosCard_Ico i {
    stroke: rgba(250, 204, 20, 0.9);
}

.AnVTermosCard input:checked~.AnVTermosCard_Inner .AnVTermosCard_Txt {
    color: #999;
}

.AnVTermosCard input:checked~.AnVTermosCard_Inner .AnVTermosCard_Toggle {
    background: rgba(250, 204, 20, 1);
    border-color: rgba(250, 204, 20, 1);
}

.AnVTermosCard input:checked~.AnVTermosCard_Inner .AnVTermosCard_Toggle::after {
    display: block;
}

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

.AnVBtns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.AnVBtnVoltar {
    padding: 11px 22px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'hinted-Dobra-Medium', sans-serif;
    font-size: 14px;
    color: #777;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

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

.AnVBtnVoltar svg,
.AnVBtnVoltar i {
    width: 15px;
    height: 15px;
    stroke: currentColor;
}

.AnVBtnAvancar {
    padding: 12px 28px;
    background: rgba(250, 204, 20, 1);
    border: none;
    border-radius: 8px;
    font-family: 'hinted-Dobra-Bold', sans-serif;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.AnVBtnAvancar:hover {
    background: rgba(250, 204, 20, 0.86);
}

.AnVBtnAvancar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.AnVBtnAvancar svg,
.AnVBtnAvancar i {
    width: 15px;
    height: 15px;
    stroke: currentColor;
}

.AnVSpinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    border-radius: 50%;
    animation: AnVSpin 0.7s linear infinite;
    display: none;
}

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

.AnVBtnAvancar.carregando .AnVBtnTxt {
    display: none;
}

.AnVBtnAvancar.carregando .AnVBtnIco {
    display: none;
}

.AnVBtnAvancar.carregando .AnVSpinner {
    display: block;
}

/* --- Estados iniciais (gerenciados pelo JS) --- */

.AnVPasso {
    display: none;
}

#AnVPasso1 {
    display: block;
}

.AnVSubPasso {
    display: none;
}

#AnVSubPasso1 {
    display: block;
}

#AnVSep3,
#AnVStepEd {
    display: none;
}

#AnVAvisoEd {
    display: none;
}

#AnVCupomWrap {
    display: none;
}

#BtnAnVVoltar {
    display: none;
}

#BlcSalarioFaixa {
    margin-top: 14px;
}

#BlcAcessoCadastro {
    display: none;
}

#ResRowEditorias,
#ResRowPrecoPorEd {
    display: none;
}

/* --- Responsivo --- */

@media screen and (max-width: 768px) {
    .AnVCard {
        padding: 24px 20px;
    }

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

    .AnVStep_Txt {
        display: none;
    }

    .AnVStep {
        min-width: 32px;
    }

    .AnVStep_Num {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .AnVStep_Sep {
        min-width: 8px;
        max-width: 20px;
    }

    .AnVPlanoRow_Inner {
        padding: 14px 16px;
        gap: 12px;
    }

    .AnVPlanoRow_Preco {
        min-width: 90px;
    }

    /* Editorias: permite cidades quebrar linha no mobile */
    .AnVEdCard_Cidades {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    /* Total de editorias: mais compacto */
    .AnVEdTotal {
        padding: 12px 16px;
    }

    .AnVEdTotal_Valor {
        font-size: 18px;
    }
}

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

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

    .AnVSalToggle {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Planos: layout em 2 linhas no mobile */
    .AnVPlanoRow_Inner {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 6px 10px;
        align-items: center;
    }

    /* Preco vai para o fim da primeira linha */
    .AnVPlanoRow_Preco {
        order: 1;
        margin-left: auto;
        min-width: auto;
        text-align: right;
    }

    /* Info (nome) ocupa a segunda linha inteira */
    .AnVPlanoRow_Info {
        order: 2;
        flex: 0 0 100%;
        min-width: 0;
    }

    /* Dias: mais compacto */
    .AnVPlanoDias {
        padding: 4px 8px;
        min-width: auto;
    }

    .AnVPlanoDias_Num {
        font-size: 20px;
    }

    .AnVPlanoRow_Nome {
        font-size: 14px;
        margin-bottom: 0;
    }

    .AnVPlanoRow_Valor {
        font-size: 16px;
    }

    .AnVResumo_TotalRow_Valor {
        font-size: 22px;
    }

    /* Cupom: input e botao empilhados */
    .AnVCupomRow {
        flex-direction: column;
    }

    .AnVCupomInput {
        width: 100%;
    }

    .AnVCupomBtn {
        width: 100%;
        justify-content: center;
    }

    /* Estado/Cidade, Email/Telefone, Senha/ConfirmaSenha: um por linha no mobile */
    .AnVCard .CdGrid2 {
        grid-template-columns: 1fr;
    }

    /* Total de editorias: empilhado e centralizado no mobile */
    .AnVEdTotal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 14px 16px;
    }

    .AnVEdTotal_Valor {
        font-size: 26px;
    }

    /* Botoes: um por linha no mobile */
    .AnVBtns {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .AnVBtnVoltar,
    .AnVBtnAvancar {
        width: 100%;
        justify-content: center;
    }
}

/* --- Recebimento de curriculos: 2 colunas e espacamento --- */
#AnVRecebCards,
#EmpEdRecebCards {
    grid-template-columns: 1fr 1fr;
}

.AnVMb--RecebTop {
    margin-top: 28px;
}

/* --- WhatsApp Info (recebimento de curriculos) --- */
.AnVWppInfo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 14px 18px;
    color: #cccccc;
    font-size: 14px;
    margin-top: 10px;
}

.AnVWppInfo svg {
    color: #4caf50;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.AnVWppInfo strong {
    color: #ffffff;
}