@font-face {
    font-family: 'poppinsb';
    src: url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
}

.form__job {
    display: flex;
    width: 1280px;
    min-height: 600px;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 70px;
    margin: 0 auto;
}

.form__job .container__vaga {
    display: flex;
    flex-direction: column;
    width: 400px;
    background-color: #21456e;
    color: #ffff;
}

.form__job .container__vaga .section__one {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.form__job .container__vaga .section__one h1 {
    font-family: 'poppins';
    font-size: 30px;
    text-align: center;
}

.form__job .container__vaga .section__one .italic {
    font-family: 'poppins';
    font-style: italic;
    font-size: 16px;
    text-align: center;
    margin-top: -30px;
    margin-bottom: 10px;
}

.form__job .container__vaga .section__one span {
    font-family: 'poppins';
    font-size: 14px;
    text-align: justify;
    margin-top: 15px;
}

.form__job .container__options {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.form__job .container__options .section__vagas {
    font-family: 'poppinsb';
    font-size: 20px;
    text-align: center;
    color: #21456e;
}

.form__job .container__options .job__card {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    /* align-items: center; */
}

.form__job .container__options .job__card .job {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 350px;
    height: auto;
    padding: 10px;
    margin: 10px;
    color: #21456e;
    background-color: #fff; /* Cor de fundo dos cards */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.3s ease;
}

.form__job .container__options .job__card .job:hover {
    transform: translateY(-8px);
}

.form__job .container__options .job__card .job .cargo__job {
    font-family: 'poppinsb';
    text-transform: uppercase;
    font-size: 18px;
}

.form__job .container__options .job__card .job .city__job,
.form__job .container__options .job__card .job .qtvaga__job,
.form__job .container__options .job__card .job .date__job {
    font-family: 'poppins';
    text-transform: uppercase;
    font-size: 16px;
}

.form__job .container__options .job__card .job .text__job {
    font-family: 'poppins';
    font-size: 16px;
}

.form__job .container__options .job__card .job .signup {
    font-family: 'poppins';
    font-size: 16px;
    width: 150px;
    height: auto;
    padding: 10px 20px;
    background-color: #21456e;
    color: #ffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form__job .container__options .job__card .job .signup:hover {
    background-color: #2c609b;
}

.banco__talento {
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 50px;
    margin: 0 auto;
}

.banco__talento span {
    font-family: 'poppinsb';
    font-size: 18px;
    color: #21456e;
}

.banco__talento .signup {
    font-family: 'poppins';
    font-size: 14px;
    min-width: 180px;
    height: auto;
    padding: 10px 20px;
    background-color: #21456e;
    color: #ffff;
    margin-left: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banco__talento .signup:hover {
    background-color: #2c609b;
}

@media screen and (max-width:1280px) {
    .form__job {
        width: 100%;
    }
    .form__job .container__vaga {
        display: flex;
        width: 300px;
    }
}

@media screen and (max-width:800px) {
    .form__job {
        display: flex;
        flex-direction: column;
    }
    .form__job .container__vaga {
        width: 100%;
    }
    .form__job .container__vaga .section__one h1 {
        font-family: 'poppins';
        font-size: 23px;
        text-align: center;
    }
    .form__job .container__vaga .section__one .italic {
        font-size: 14px;
    }
    .form__job .container__vaga .section__one span {
        font-size: 13px;
    }
    .form__job .container__options .section__vagas {
        font-size: 18px;
    }
    .form__job .container__options .job__card .job .cargo__job {
        font-size: 16px;
    }
    .form__job .container__options .job__card .job .city__job,
    .form__job .container__options .job__card .job .qtvaga__job,
    .form__job .container__options .job__card .job .date__job {
        font-size: 14px;
    }
    .form__job .container__options .job__card .job .text__job {
        font-size: 14px;
    }
    .form__job .container__options .job__card .job .signup {
        font-size: 14px;
    }
    .banco__talento {
        flex-direction: column;
    }
}