/* CSS Principal */
:root {
    /* Vermelho - tons principais */
    --red-50: #ffebee;
    --red-100: #ffcdd2;
    --red-200: #ef9a9a;
    --red-300: #e57373;
    --red-400: #ef5350;
    --red-500: #f44336;
    /* principal */
    --red-600: #e53935;
    --red-700: #d32f2f;
    --red-800: #c62828;
    --red-900: #b71c1c;


    /* Vermelho vibrante */
    --red-accent: #ff1744;

    /* Vermelho suave (backgrounds) */
    --red-light: #fff5f5;

    /* Vermelho escuro (hover/ativo) */
    --red-dark: #8b0000;

    /* Gradiente vermelho */
    --red-gradient: linear-gradient(135deg, #f44336, #b71c1c);

    /* Laranja - tons principais */
    --orange-50: #fff3e0;
    --orange-100: #ffe0b2;
    --orange-200: #ffcc80;
    --orange-300: #ffb74d;
    --orange-400: #ffa726;
    --orange-500: #ff9800;
    /* principal */
    --orange-600: #fb8c00;
    --orange-700: #f57c00;
    --orange-800: #ef6c00;
    --orange-900: #e65100;


    /* Laranja vibrante */
    --orange-accent: #ff6f00;

    /* Laranja suave (backgrounds) */
    --orange-light: #fff8f1;

    /* Laranja escuro (hover/ativo) */
    --orange-dark: #cc5200;

    /* Gradiente laranja */
    --orange-gradient: linear-gradient(135deg, #ff9800, #ff6f00);

    /* Tons de marrom */
    --brown-50: #f5f0eb;
    --brown-100: #e6d9cc;
    --brown-200: #d1b8a1;
    --brown-300: #b99573;
    --brown-400: #a57753;
    --brown-500: #8b5e3c;
    /* principal */
    --brown-600: #7a5033;
    --brown-700: #68442b;
    --brown-800: #563622;
    --brown-900: #422919;

    /* Marrom escuro (hover/ativo) */
    --brown-dark: #3a241b;

    /* Marrom claro (backgrounds) */
    --brown-light: #f8f4f0;

    /* Gradiente marrom */
    --brown-gradient: linear-gradient(135deg, #8b5e3c, #a57753);


    --green-cool-vivid-10: #B7F5BD;
    --green-cool-vivid-20: #70E17B;
    --green-cool-vivid-30: #21C834;
    --green-cool-vivid-40: #00A91C;
    --green-cool-vivid-50: #168821;
    --green-cool-vivid-60: #216E1F;
    --green-cool-vivid-70: #154C21;
    --green-cool-vivid-80: #19311E;

    --blue-warm-vivid-10: #D4E5FF;
    --blue-warm-vivid-20: #ADCDFF;
    --blue-warm-vivid-30: #81AEFC;
    --blue-warm-vivid-40: #5992ED;
    --blue-warm-vivid-50: #2670E8;
    --blue-warm-vivid-60: #155BCB;
    --blue-warm-vivid-70: #1351B4;
    --blue-warm-vivid-80: #0C326F;
    --blue-warm-vivid-90: #071D41;


    /* Cores semânticas */
    --color-primary: var(--blue-50);
    --color-primary-dark: var(--blue-80);
    --color-secondary: var(--green-40);

    --color-bg: #fff;
    --color-bg-alt: #f5f7fa;

    --color-text: #1f2933;
    --color-text-light: #6b7280;

    --color-success: var(--green-40);
    --color-error: #dc2626;

    --font-primary: 'Lato', sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --line-height-base: 1.6;

}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);

}

/* TELA GERAL */
/* LAYOUT PADRAO */

.btn-red-500 {
    background-color: var(--red-500);
    color: white;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: semi-bold;
}

.btn-red-500:hover {
    background-color: var(--red-600);
    color: white;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
}

.bg-brown-900 {
    background-color: var(--brown-900);
    color: white;
}

.text-brown-900 {
    color: var(--brown-900);
    font-weight: bold;
}

.btn-brown-900 {
    background-color: var(--brown-900);
    color: white;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: semi-bold;
}

.btn-brown-900:hover {
    background-color: var(--brown-dark);
    color: white;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
}

.btn-orange-light {
    background-color: var(--orange-light);
    color: black;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: semi-bold;
}

.btn-orange-light:hover {
    background-color: var(--orange-50);
    color: black;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
}

.swal2-confirm.btn-sweet-brown-900 {
    background-color: var(--brown-900);
    color: #fff;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: 600;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.swal2-confirm.btn-sweet-brown-900:hover {
    background-color: var(--brown-dark);

    transform: scale(1.05);
}

/* Remove foco azul */
.swal2-confirm.btn-sweet-brown-900:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Remove sombra ao clicar */
.swal2-confirm.btn-sweet-brown-900:active {
    box-shadow: none !important;
}

.btn-orange-500 {
    background-color: var(--orange-500);
    color: black;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: semi-bold;
}

.btn-orange-500:hover {
    background-color: var(--orange-600);
    color: black;
    border-radius: 8px;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
}

.text-orange-dark {
    color: var(--orange-dark);
    font-weight: bold;
}

.bg-orange-light {
    background-color: var(--orange-light);

}

.bg-orange-dark {
    background-color: var(--orange-dark);
    color: white;
}

/* FIM PADRAO */

/* MENU PRINCIPAL HEADER */

.color-links-header {
    color:var(--brown-900) ;
}

.color-links-header {
    position: relative;
    transition: color 0.2s ease;
}

.color-links-header:hover {
    color: var(--brown-dark);
    font-weight: bold;
}


.color-links-header:focus {
    color: var(--brown-dark);
    font-weight: bold;
}
.color-links-header::after {
    color: var(--brown-dark);
    font-weight: bold;
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.color-links-header:hover::after {
    width: 100%;
}

/* FIM HEADER */
.borda-branca {
    border: solid 1px #fff;
}

.borda-preta {
    border: solid 1px #333;
}

.btn-borda-preta {
    border: solid 1px #333;
}

.btn-blue {
    background-color: #507DBC;
    color: white;
}

.btn-blue:hover {
    background-color: #3665a7;
    color: white;
    transform: scale(1.02);
}


.btn-borda-preta:hover {
    border: solid 1px #333;
}

.form-control:hover {
    cursor: pointer;

}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: #ccc;
}

.container {
    max-width: 100%;
}

header {
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.019);
}

main {
    width: 100%;
}


/* tela de vagas - selects */

.form-select {

    text-align: justify;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}


.form-select:focus {
    border-color: #ff0000;
    box-shadow: 0 0 6px rgba(255, 56, 49, 0.849);
    outline: none;
}

.form-select option {

    padding: 8px;
    background-color: #fff;
    color: #333;
}

.form-select option:checked {
    background-color: rgba(82, 130, 233, 0.486);
    color: #fff;
}

.form-select option::after {
    background-color: rgba(82, 130, 233, 0.486);
    color: black;
}

/* .form-check-label {
    font-size: 12px;
}

@media (max-width: 768px) {
    .form-check-label {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .form-check-label {
        font-size: 100px;
    }
} */

.btn-add-cidade {
    border: solid 1px #333;
    background-color: aliceblue;
}

.btn-add-cidade:hover {
    border: solid 1px #333;
    box-shadow: 1px 1px 1px #333;
    background-color: aliceblue;
}

.bg-cidades {
    color: black;
    background-color: aliceblue;
}


#form-search-principal {
    margin-top: 20px;
}

.search-container {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    /* aumenta largura mínima */
    max-width: 600px;
    flex: 1;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-icon .form-control {
    padding-left: 40px;
    /* espaço pro ícone */
    height: 48px;
    /* altura maior */
    border-radius: 8px;
    font-size: 15px;
}

.btn-search {
    height: 48px;
    padding: 0 20px;
    font-weight: bold;
    background-color: #6a1b9a;
    /* roxo */
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
}

.btn-search:hover {
    background-color: #4a106e;
    color: white;

}


.btn-filter-search:hover {
    border: solid 1px #333;
}

.dropdown-item.active {
    background-color: white !important;
    color: black !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: black !important;
    background-color: white !important;
}


.full-cards {
    height: 230px;

    border: 1px solid rgba(0, 0, 0, 0.1);
    /* borda suave */
    border-radius: 10px;
    /* cantos arredondados */
    background-image: linear-gradient(45deg, #ffffffce, #ffffffc9);
    /* gradiente */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    /* sombra leve */
    padding: 10px;
    /* espaço interno */
}

.list-cidade {
    color: cornflowerblue;
    background-color: aliceblue;
    font-size: small;
    font-weight: inherit;
}

.tag-azul {
    color: cornflowerblue;
    background-color: aliceblue;
}

@media(max-width: 1163px) {
    .full-cards {
        height: 250px;
    }

    .list-cidade {
        font-size: 12px;
    }

    .list-text-dados {
        font-size: 13px;
    }

    .data-publicacao {
        padding-top: 2px;
    }
}

@media (max-width: 780px) {
    .full-cards {
        height: 245px;
        padding: 0px;
    }

    .list-cidade {
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .full-cards {
        height: 230px;
    }

    .list-cidade {
        font-size: 11px;

    }
}

.full-cards:hover {
    cursor: pointer;
}

.nome-vaga {
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.nome-empresa {
    text-decoration: none;
    color: #aca9a9;
    font-size: 0.8em;
    font-family: Georgia, 'Times New Roman', Times, serif;

}

.tipo-vaga {
    line-height: 0.875rem;
    font-size: 0.875rem;
    white-space: nowrap;
    color: rgb(83, 82, 87);
    font-weight: 600;
    font-family: Inter, sans-serif;
}


.data-publicacao {
    font-size: 12px;
    color: #666;
}

@media(max-width:768px) {
    .carousel-inner {
        display: none;
    }
}

.carousel-inner img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}

/* profile/edit */


.container-profile {

    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-profile-body {
    max-width: 1000px;
    font-size: 14px;
}


@media(max-width:768px) {
    .container-profile-body {
        max-width: 500px;
        font-size: 14px;
    }
}

@media(max-width:480px) {
    .container-profile-body {
        max-width: 350px;
    }
}

.avatar {
    max-width: 250px;
    /* limita o tamanho máximo */
    max-height: 200px;
    border-radius: 50px;
    object-fit: cover;
    cursor: pointer;
}

.avatar-menu {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50px;
}

#curriculum {
    display: none;
}

.card-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

/*  vacancy */

.card-text {
    text-align: justify;
    font-size: 16px;
    color: #666;
    margin: 3px;
}

.img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}


/* Home administrador */

.list-candidate {
    color: #333;
    background-color: #33333311;
    font-size: 14px;
}


.full-process {
    max-height: 350px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* borda suave */
    border-radius: 10px;
    /* cantos arredondados */
    background-image: linear-gradient(45deg, #ffffffce, #ffffffc9);
    /* gradiente */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    /* sombra leve */
    padding: 15px;
    /* espaço interno */
}

.full-process:hover {
    cursor: pointer;
}



/* fim */



/* conteudo entrevista */
.conteudo-entrevista {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.conteudo-entrevista-body {
    width: 90%;
}