/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI', sans-serif;
    background:#f4f7fc;
    color:#111827;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    padding:16px 0;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(14px);
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    border-bottom:1px solid rgba(0,0,0,.05);
    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#111827;
    letter-spacing:-0.5px;
}

.logo span,
.footer-logo span,
.brand-highlight{
    color:#ffc107;
}

.nav-link{
    color:#4b5470;
    font-weight:600;
    margin:0 10px;
    transition:.25s ease;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:3px;
    border-radius:10px;
    background:#173ea5;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover,
.nav-link.active{
    color:#173ea5;
}

.login-link{
    text-decoration:none;
    color:#173ea5;
    font-weight:700;
}

.cadastro-btn{
    background:#173ea5;
    border:none;
    padding:11px 24px;
    border-radius:999px;
    color:#fff;
    font-weight:600;
    letter-spacing:.3px;
    transition:.3s;
    box-shadow:0 12px 30px rgba(23,62,165,.18);
}

.cadastro-btn:hover{
    transform:translateY(-2px);
    background:#224bc0;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;

    background:
    linear-gradient(rgba(4,12,35,.72), rgba(4,12,35,.78)),
    url('../img/vagas.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    min-height:92vh;

    display:flex;
    align-items:center;

    color:#fff;

    padding:120px 0 80px;

    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
    top:-200px;
    right:-150px;
    filter:blur(20px);
}

.hero .container{
    position:relative;
    z-index:2;
    max-width:1200px;
}

.hero h1{
    font-size:clamp(3rem, 5vw, 5.2rem);
    font-weight:900;
    line-height:1.02;
    letter-spacing:-2px;
    max-width:950px;
    margin:0 auto;
    text-shadow:0 20px 45px rgba(0,0,0,.35);
    text-wrap:balance;
}

.hero p{
    margin-top:28px;
    font-size:1.12rem;
    color:rgba(255,255,255,.92);
    max-width:700px;
    margin:28px auto 0;
    line-height:1.8;
    text-shadow:0 10px 20px rgba(0,0,0,.22);
}

/* =========================
   HERO VAGAS
========================= */

.hero-vagas{
    position:relative;

    background:
    linear-gradient(rgba(4,12,35,.72), rgba(4,12,35,.78)),
    url('../img/estagio.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    min-height:60vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:100px 0;

    color:white;
    text-align:center;
}

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

.hero-vagas h1{
    font-size:clamp(2.5rem, 4vw, 4rem);
    font-weight:900;
    letter-spacing:-1px;
}

.hero-vagas p{
    margin-top:18px;
    max-width:700px;
    margin-inline:auto;
    font-size:1.05rem;
    line-height:1.8;
    color:rgba(255,255,255,.90);
}

/* =========================
   HERO EMPRESAS
========================= */

.hero-empresas{
    position:relative;

    background:
    linear-gradient(rgba(4,12,35,.72), rgba(4,12,35,.78)),
    url('../img/empregos05.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    min-height:60vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:100px 0;

    color:white;
    text-align:center;
}

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

.hero-empresas h1{
    font-size:clamp(2.5rem, 4vw, 4rem);
    font-weight:900;
    letter-spacing:-1px;
}

.hero-empresas p{
    margin-top:18px;
    max-width:700px;
    margin-inline:auto;
    font-size:1.05rem;
    line-height:1.8;
    color:rgba(255,255,255,.90);
}

/* =========================
   SEARCH BOX (UPGRADE PRO)
========================= */

.search-box{
    margin:45px auto 0;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(14px);

    padding:18px;
    border-radius:28px;

    display:flex;
    align-items:center;
    gap:14px;

    box-shadow:0 30px 70px rgba(0,0,0,.18);
    border:1px solid rgba(255,255,255,.35);

    max-width:980px;
    width:100%;

    transition:.3s ease;
}

.search-box:hover{
    transform:translateY(-3px);
}

/* INPUTS */
.search-input{
    flex:1;
    display:flex;
    align-items:center;
    gap:12px;

    border:1px solid #d8e0f4;
    border-radius:18px;

    padding:14px 16px;
    background:#f7f9ff;

    transition:.25s ease;

    min-width:0;
}

.search-input:focus-within{
    border-color:#173ea5;
    box-shadow:0 0 0 4px rgba(23,62,165,.10);
    background:#fff;
}

.search-input i{
    color:#173ea5;
    font-size:16px;
    flex-shrink:0;
}

.search-input input{
    border:none;
    outline:none;
    width:100%;
    background:transparent;

    color:#1b2646;
    font-size:15px;
}

/* BOTÃO */
.search-box button{
    background:#173ea5;
    border:none;
    color:white;

    padding:14px 26px;
    border-radius:16px;

    font-weight:700;
    letter-spacing:.3px;

    white-space:nowrap;

    transition:.3s ease;

    box-shadow:0 16px 28px rgba(23,62,165,.22);
}

.search-box button:hover{
    transform:translateY(-2px);
    background:#224bc0;
}

/* =========================
   RESPONSIVO DA BUSCA
========================= */

@media (max-width: 992px){
    .search-box{
        flex-wrap:wrap;
    }

    .search-box button{
        width:100%;
    }
}


/* =========================
   JOBS
========================= */

.jobs-section{
    padding:100px 0;
}

.section-title{
    margin-bottom:45px;
    font-weight:900;
    letter-spacing:-1px;
    font-size:2.5rem;
    color:#12234d;
}

.job-card{
    position:relative;
    overflow:hidden;

    background:white;

    padding:30px;

    border-radius:28px;

    box-shadow:0 12px 35px rgba(16,40,85,.08);

    transition:.35s ease;

    border:1px solid rgba(0,0,0,.04);

    height:100%;
}

.job-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#173ea5,#ffc107);
}

.job-card:hover{
    transform:translateY(-10px) scale(1.01);
    box-shadow:0 24px 50px rgba(16,40,85,.14);
}

.job-icon{
    width:65px;
    height:65px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:800;
    font-size:16px;
}

.purple{
    background:#f4edff;
    color:#7a3cff;
}

.orange{
    background:#fff5ea;
    color:#ff7a00;
}

.green{
    background:#e7fbef;
    color:#0a9b52;
}

.job-card h5,
.job-card h4{
    margin:18px 0 10px;
    font-size:20px;
    font-weight:800;
    color:#17213d;
}

.job-card p{
    margin:0;
    color:#626a7c;
    line-height:1.7;
}

.job-info{
    margin:22px 0 14px;
    color:#5e678d;
}

.salary{
    color:#198754;
    font-weight:800;
    margin-bottom:24px;
}

.details-btn{
    width:100%;
    background:#173ea5;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:16px;
    font-weight:700;
    letter-spacing:.3px;
    transition:.3s;
}

.details-btn:hover{
    background:#224bc0;
    transform:translateY(-2px);
}

/* =========================
   FOOTER
========================= */

.footer{
    position:relative;

    background:#050d1f;

    color:white;

    padding:90px 0 35px;

    overflow:hidden;
}

.footer::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    top:-150px;
    right:-120px;
}

.footer-logo{
    font-size:32px;
    font-weight:900;
}

.footer h5{
    margin-bottom:22px;
    font-weight:700;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:12px;
    color:#cfcfcf;
    transition:.2s;
}

.footer ul li:hover{
    color:#fff;
}

.footer hr{
    border-color:#24345f;
    margin:45px 0 20px;
}

.footer-bottom{
    text-align:center;
    color:#8fa0c7;
    font-size:15px;
}

/* =========================
   LOGIN / CADASTRO
========================= */

.auth-body{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    background:
    linear-gradient(135deg,#eef3fb,#dfe9ff);
}

.auth-container{
    width:100%;
    max-width:1200px;

    background:rgba(255,255,255,.95);

    border-radius:34px;

    overflow:hidden;

    display:grid;
    grid-template-columns:1fr 1fr;

    backdrop-filter:blur(18px);

    box-shadow:
    0 20px 60px rgba(16,40,85,.12),
    0 8px 20px rgba(0,0,0,.04);
}

/* LEFT SIDE */

.auth-left{
    position:relative;

    background:
    linear-gradient(135deg,#07142f 0%, #173ea5 100%);

    color:white;

    padding:80px 70px;

    display:flex;
    align-items:center;

    overflow:hidden;
}

.auth-left::before{
    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-120px;
    right:-120px;
}

.auth-left h2{
    font-size:38px;
    margin-bottom:28px;
    font-weight:800;
}

.auth-left h2 span{
    color:#ffc107;
}

.auth-left h1{
    font-size:60px;
    font-weight:900;
    line-height:1.05;
    letter-spacing:-2px;
}

.auth-left p{
    margin-top:24px;
    font-size:17px;
    line-height:1.9;
    color:rgba(255,255,255,.86);
    max-width:430px;
}

/* RIGHT SIDE */

.auth-right{
    padding:70px 65px;
}

.auth-right h1{
    font-size:42px;
    font-weight:900;
    margin-bottom:14px;
    color:#12234d;
}

.auth-right p{
    color:#6c7893;
    margin-bottom:30px;
}

/* VOLTAR */

.back-link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-bottom:25px;

    text-decoration:none;

    color:#5e6c8d;

    font-weight:600;

    transition:.3s;
}

.back-link:hover{
    color:#173ea5;
}

/* INPUTS */

.form-control{
    height:58px;

    border-radius:18px;

    border:1px solid #d7e0f4;

    background:#f8faff;

    padding:0 18px;

    transition:.3s ease;
}

.form-control:focus{
    border-color:#173ea5;

    background:white;

    box-shadow:
    0 0 0 4px rgba(23,62,165,.10);

    transform:translateY(-1px);
}

/* BOTÃO LOGIN */

.login-btn{
    width:100%;

    height:58px;

    border:none;

    border-radius:18px;

    background:linear-gradient(135deg,#173ea5,#224bc0);

    color:white;

    font-weight:700;

    letter-spacing:.4px;

    transition:.3s;

    box-shadow:
    0 14px 28px rgba(23,62,165,.20);
}

.login-btn:hover{
    transform:translateY(-2px);

    box-shadow:
    0 20px 35px rgba(23,62,165,.28);
}

/* BOTÃO CADASTRO */

.cadastro-submit{
    width:100%;

    height:58px;

    border:none;

    border-radius:18px;

    background:linear-gradient(135deg,#ff7a00,#ff9800);

    color:white;

    font-weight:700;

    letter-spacing:.4px;

    transition:.3s;

    box-shadow:
    0 14px 28px rgba(255,122,0,.20);
}

.cadastro-submit:hover{
    transform:translateY(-2px);

    box-shadow:
    0 20px 35px rgba(255,122,0,.28);
}

/* LINKS */

.register-link{
    margin-top:28px;

    text-align:center;

    color:#5f6c8d;

    font-size:15px;
}

.register-link a{
    text-decoration:none;

    font-weight:700;

    color:#173ea5;
}

/* ALERT */

.alert{
    border:none;
    border-radius:14px;
    font-size:.95rem;
}

/* =========================
   RESPONSIVIDADE 
========================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}


/* =========================
   DESKTOP GRANDE
========================= */

.auth-container{
    width:100%;
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
}


/* =========================
   NOTEBOOK / TABLET
========================= */

@media(max-width:992px){

    .auth-container{
        grid-template-columns:1fr;
    }

    .auth-left{
        display:none;
    }

    .auth-right{
        padding:50px 35px;
        width:100%;
    }

}


/* =========================
   CELULAR
========================= */

@media(max-width:576px){

    .auth-body{
        padding:20px;
    }

    .auth-right{
        padding:40px 24px;
    }

    .auth-right h1{
        font-size:34px;
        line-height:1.2;
    }

    .auth-right p{
        font-size:15px;
    }

    input,
    button,
    select{
        width:100%;
    }

}


/* =========================
   CELULARES MUITO PEQUENOS
========================= */

@media(max-width:360px){

    .auth-right{
        padding:30px 18px;
    }

    .auth-right h1{
        font-size:28px;
    }

    .auth-right p{
        font-size:14px;
    }

}


/* =========================
   TELAS MUITO GRANDES
========================= */

@media(min-width:1600px){

    .auth-container{
        max-width:1600px;
        margin:auto;
    }

    .auth-right h1{
        font-size:58px;
    }

}
/* ===== PÁGINAS VER DETALHES ===== */

.details-page .job-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    color:#fff;
    font-size:1.2rem;
    font-weight:bold;
}

.details-page .purple{
    background:#6f42c1;
}

.details-page .orange{
    background:#fd7e14;
}

.details-page .green{
    background:#198754;
}

.details-page .salary{
    font-size:1.3rem;
    font-weight:bold;
    color:#198754;
}

.details-page .card{
    border-radius:18px;
}

.details-page .btn{
    border-radius:12px;
}

.details-btn{
    display:block;

    width:100%;

    background:#0d6efd;
    color:#fff;

    text-align:center;

    padding:12px;

    border-radius:12px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;
}

.details-btn:hover{
    background:#0b5ed7;
    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(13,110,253,.25);
}
/* ==========================================
   PÁGINAS VER DETALHES
========================================== */

.job-detail-card{
    border-radius: 18px;
}

.job-detail-card .card-body{
    padding: 2.5rem;
}

.job-detail-header{
    margin-bottom: 2rem;
}

.job-detail-header h2{
    font-weight: 700;
    margin-bottom: .5rem;
}

.job-detail-section{
    margin-bottom: 2rem;
}

.job-detail-section h5{
    font-weight: 700;
    margin-bottom: 1rem;
}

.job-detail-section p{
    line-height: 1.8;
}

.job-detail-section ul{
    padding-left: 1.2rem;
}

.job-detail-section ul li{
    margin-bottom: .7rem;
}

.salary{
    font-size: 1.4rem;
    font-weight: 700;
    color: #198754;
}

.job-icon{
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.purple{
    background: #6f42c1;
}

.orange{
    background: #fd7e14;
}

.green{
    background: #198754;
}

.btn-apply{
    padding: .9rem;
    font-weight: 600;
    border-radius: 10px;
}

@media (max-width: 768px){

    .job-detail-card .card-body{
        padding: 1.5rem;
    }

    .job-icon{
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .job-detail-header h2{
        font-size: 1.5rem;
    }
}

