body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(180deg, #13093F 0%, #21145F 100%);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
}

/* NAVBAR */
.navbar {
    background: #13093F;
    padding: 20px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .2);
}

.navbar-brand img {
    width: 180px;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin-left: 20px;
    transition: .3s;
}

.nav-link:hover {
    color: #5B8CFF !important;
}

/* HERO */

.hero {

    min-height: 85vh;
    background: linear-gradient(rgba(19, 9, 63, .82), rgba(33, 20, 95, .92)),
    url('img/fundo-renda-extra1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 100%;
    background: rgba(91, 140, 255, .08);
    top: -250px;
    right: -150px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 100%;
    background: rgba(0, 255, 255, .04);
    bottom: -250px;
    left: -100px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, .82);
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
}

/* BOTÃO */

.btn-uno {
    display: inline-block;
    padding: 16px 38px;
    background: linear-gradient(135deg, #5B8CFF, #246BFD);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
    margin-top: 35px;
    border: none;
    box-shadow: 0 10px 30px rgba(36, 107, 253, .3);
}

.btn-uno:hover {
    transform: translateY(-4px);
    color: #fff;
}

/* SECTION */

.section {
    padding: 110px 0;
}

/* TITULOS */

.titulo {
    text-align: center;
    margin-bottom: 70px;
}

.titulo h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.titulo p {
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
}

/* CARDS */

.vaga-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.vaga-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00D2FF, #5B8CFF);
}

.vaga-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.vaga-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.vaga-card p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
}

.vaga-info {
    margin-bottom: 20px;
}

.vaga-info span {
    display: inline-block;
    background: rgba(91, 140, 255, .15);
    color: #7DB4FF;
    padding: 10px 18px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
}

/* BENEFICIOS */

.beneficio-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: .3s;
    height: 100%;
}

.beneficio-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .08);
}

.beneficio-box i {
    font-size: 42px;
    color: #5B8CFF;
    margin-bottom: 20px;
}

.beneficio-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* PROCESSO */

.step {
    text-align: center;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 100px;
    background: linear-gradient(135deg, #246BFD, #5B8CFF);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 10px 30px rgba(36, 107, 253, .3);
}

.step h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* FORM */

.form-area {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.form-control {
    height: 60px !important;
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 14px !important;
    color: #fff !important;
    padding: 15px 20px !important;
}

textarea.form-control {
    height: 180px !important;
    resize: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .5);
}

.form-control:focus {
    background: rgba(255, 255, 255, .08) !important;
    border-color: #5B8CFF !important;
    box-shadow: 0 0 0 4px rgba(91, 140, 255, .2) !important;
}

.form-check-label {
    color: rgba(255, 255, 255, .7);
}

/* FOOTER */

.footer {
    background: #0B042A;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 70px 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, .65);
}

/* WHATS */

.whats-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    z-index: 999;
}

/* RESPONSIVO */

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 120px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .titulo h2 {
        font-size: 36px;
    }

    .form-area {
        padding: 35px;
    }

}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .section {
        padding: 70px 0;
    }

    .vaga-card {
        padding: 25px;
    }
}

