:root {

    --primary: #0066b3;
    --primary-dark: #004b87;
    --primary-light: #3b9df1;

    --secondary: #00a8ff;

    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;

    --white: #ffffff;
    --black: #1d1d1d;

    --gray-50: #f8fafc;
    --gray-100: #eef2f7;
    --gray-200: #d9e2ec;
    --gray-300: #c8d2dd;
    --gray-400: #97a6ba;
    --gray-500: #66788a;
    --gray-700: #34495e;
    --gray-900: #1b2733;

    --radius: 18px;

    --shadow:

        0 10px 35px rgba(0, 0, 0, .08);

    --transition:

        .30s ease;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Inter', sans-serif;

    background: #eef4f9;

    color: var(--gray-900);

    overflow-x: hidden;

}

img {

    max-width: 100%;

}

a {

    text-decoration: none;

}

button {

    font-family: inherit;

    cursor: pointer;

}

.hero {

    position: relative;

    min-height: 55vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 90px 25px;

    background:

        url("../images/banner.jpg") center center /cover no-repeat;

}

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(135deg,

            rgba(0, 86, 167, .93),

            rgba(0, 43, 86, .92));

}

.hero-content {

    position: relative;

    z-index: 2;

    width: min(1100px, 100%);

    color: #fff;

}

.badge {

    display: inline-flex;

    align-items: center;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(8px);

    font-size: 14px;

    margin-bottom: 20px;

}

.hero h1 {

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 18px;

}

.hero p {

    max-width: 700px;

    font-size: 18px;

    line-height: 1.8;

    opacity: .95;

}

.hero-info {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 35px;

}

.hero-info div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 18px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

}

.container {

    width: min(1180px, 94%);

    margin: auto;

}

.progress-card {

    background: #fff;

    margin-top: -70px;

    border-radius: 24px;

    padding: 35px;

    box-shadow: var(--shadow);

    position: relative;

    z-index: 20;

}

.progress-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;

}

.progress-header h2 {

    font-size: 28px;

}

.progress-header span {

    color: var(--gray-500);

}

.progress {

    width: 100%;

    height: 10px;

    border-radius: 20px;

    background: #e7edf3;

    overflow: hidden;

}

.progress-bar {

    width: 14.28%;

    height: 100%;

    border-radius: 20px;

    background:

        linear-gradient(90deg,

            var(--primary),

            var(--secondary));

    transition: .4s;

}

.steps {

    display: flex;

    justify-content: space-between;

    margin-top: 28px;

}

.step {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #dfe7ef;

    display: flex;

    justify-content: center;

    align-items: center;

    font-weight: 700;

    transition: .3s;

}

.step.active {

    background: var(--primary);

    color: #fff;

    transform: scale(1.08);

}

.step.done {

    background: var(--success);

    color: #fff;

}

#formTrabalheConosco {

    margin-top: 35px;

    margin-bottom: 80px;

}

.step-header {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-bottom: 35px;

}

.step-number {

    width: 75px;

    height: 75px;

    border-radius: 18px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    font-weight: 800;

    color: #fff;

    background:

        linear-gradient(135deg,

            var(--primary),

            var(--secondary));

}

.step-header h2 {

    font-size: 34px;

    margin-bottom: 6px;

}

.step-header p {

    color: var(--gray-500);

    line-height: 1.7;

}

.form-step {

    display: none;

    background: #fff;

    border-radius: 24px;

    padding: 45px;

    margin-top: 30px;

    box-shadow: var(--shadow);

    animation: fade .45s;

}

.form-step.active {

    display: block;

}

.step-buttons {

    margin-top: 45px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.btn-next,
.btn-prev,
.btn-submit,
.btn-secondary {

    border: none;

    border-radius: 14px;

    padding: 16px 34px;

    font-size: 15px;

    font-weight: 600;

    transition: var(--transition);

}

.btn-next,
.btn-submit {

    background: var(--primary);

    color: #fff;

}

.btn-next:hover,
.btn-submit:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}

.btn-prev {

    background: #ecf1f6;

}

.btn-prev:hover {

    background: #dbe5ef;

}

.btn-secondary {

    background: #eef4fa;

    color: var(--primary);

}

.btn-secondary:hover {

    background: #dceaf7;

}

@keyframes fade {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: none;

    }

}

@media(max-width:900px) {

    .hero {

        min-height: auto;

        padding: 70px 20px;

    }

    .hero h1 {

        font-size: 34px;

    }

    .hero p {

        font-size: 16px;

    }

    .progress-card {

        margin-top: -40px;

        padding: 25px;

    }

    .step-header {

        flex-direction: column;

        align-items: flex-start;

    }

    .step-header h2 {

        font-size: 28px;

    }

    .form-step {

        padding: 25px;

    }

    .progress-header {

        flex-direction: column;

        gap: 10px;

        align-items: flex-start;

    }

    .step-buttons {

        flex-direction: column;

        gap: 15px;

    }

    .btn-next,
    .btn-prev,
    .btn-submit {

        width: 100%;

    }

}