@import url();

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vermelho: #5f0000;
    --branco: #ebebeb;
    --preto: #0c0c0c;
    --azul: #001f83;
    --cinza-claro: #e5e5e5;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: var(--branco);
    color: var(--preto);
    overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background-color: #0a0a0a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--vermelho);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.conteudo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1001;
}

.logo img {
    filter: invert(1);
    height: 45px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-left: 10px;
    border-left: 2px solid var(--vermelho);
}

/* ============================================
   MENU HAMBURGUER
   ============================================ */
.hamburguer-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburguer-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburguer-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho), #fff);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburguer-menu.ativo .hamburguer-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: var(--vermelho);
}

.hamburguer-menu.ativo .hamburguer-icon span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburguer-menu.ativo .hamburguer-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: var(--vermelho);
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */
.navegacao ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.navegacao a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.navegacao a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vermelho), #ff6b6b);
    transition: width 0.3s ease;
}

.navegacao a:hover {
    color: var(--vermelho);
}

.navegacao a:hover::before {
    width: 100%;
}

.navegacao a[target="_blank"]::after {
    content: '↗';
    margin-left: 5px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s;
}

.navegacao a[target="_blank"]:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.ativo {
    opacity: 1;
    display: block;
}

/* ============================================
   RESPONSIVIDADE MENU
   ============================================ */
@media (max-width: 768px) {
    .hamburguer-menu {
        display: block;
    }

    .navegacao {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
        border-left: 3px solid var(--vermelho);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .navegacao.ativo {
        right: 0;
    }

    .navegacao ul {
        flex-direction: column;
        gap: 20px;
    }

    .navegacao li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s;
    }

    .navegacao.ativo li {
        opacity: 1;
        transform: translateX(0);
    }

    .navegacao.ativo li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .navegacao.ativo li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .navegacao.ativo li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .navegacao a {
        font-size: 18px;
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
    }

    .navegacao a:hover {
        background: rgba(255, 0, 0, 0.1);
        padding-left: 25px;
    }

    .navegacao::before {
        content: '🤠';
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 40px;
        opacity: 0.3;
        animation: bounce 2s infinite;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }

    .logo span {
        font-size: 16px;
    }

    .navegacao {
        width: 250px;
        padding: 70px 20px 20px;
    }

    .navegacao a {
        font-size: 16px;
        padding: 10px 12px;
    }
}

body.menu-aberto {
    overflow: hidden;
}

/* ============================================
   SUB-HEADER
   ============================================ */
.sub-header {
    background-color: var(--preto);
    width: 100%;
    height: 60px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sub-header h2 {
    font-size: 1.2rem;
    color: var(--branco);
    font-family: Arial, Helvetica, sans-serif;
}

/* ============================================
   FILTROS
   ============================================ */
.filtros {
    background: linear-gradient(to bottom, #f9f9f9, #f5f5f5);
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.filtros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.filtro-grupo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filtro-grupo label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 12px;
}

.filtro-grupo label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background-color: var(--vermelho);
    border-radius: 2px;
}

.filtro-selecao {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    border: 2px solid var(--cinza-claro);
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    transition: all 0.3s ease;
}

.filtro-selecao:hover {
    border-color: var(--vermelho);
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1);
}

.filtro-selecao:focus {
    outline: none;
    border-color: var(--vermelho);
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
}

.btn-filtrar {
    background: linear-gradient(135deg, var(--vermelho), #3d0707);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
    white-space: nowrap;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn-filtrar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-filtrar:hover {
    background: linear-gradient(135deg, #cc0000, #aa0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
}

.btn-filtrar:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsividade Filtros */
@media (max-width: 992px) {
    .filtros-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .btn-filtrar {
        grid-column: span 2;
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .filtros {
        padding: 20px 0;
    }

    .filtros-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .btn-filtrar {
        grid-column: span 1;
        margin-top: 5px;
    }

    .filtro-grupo label {
        font-size: 13px;
    }

    .filtro-selecao {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* ============================================
   LISTAGEM DE VAGAS - GRID CORRIGIDO
   ============================================ */
.vagas-lista {
    padding: 40px 0 60px;
    background-color: #fafafa;
    position: relative;
}

.vagas-lista::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.section-titulo {
    font-size: 32px;
    color: var(--preto);
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--vermelho), #ff6b6b);
    border-radius: 4px;
}


/* ============================================
   GRID DE VAGAS - CORRIGIDO
   ============================================ */

.vagas-lista .conteudo {
    display: grid !important;
    /* grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important; */
    grid-template-rows: 1fr 1fr 1fr;
    gap: 24px !important;
}

#vagas-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 24px !important;
    width: 100%;
}

.vaga-cartao {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex !important;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0;
}

/* Garantir que o grid funcione no mobile */
@media (max-width: 768px) {

    .vagas-lista .conteudo,
    #vagas-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {

    .vagas-lista .conteudo,
    #vagas-container {
        grid-template-columns: 1fr !important;
    }
}

.vaga-cartao {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vaga-cartao:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(131, 0, 0, 0.2);
    border-color: var(--vermelho);
}

.vaga-cartao::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.vaga-cartao:hover::before {
    opacity: 0.3;
}

.vaga-cartao::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho), #640909);
    transition: width 0.3s ease;
}

.vaga-cartao:hover::after {
    width: 100%;
}

.vaga-cabecalho {
    margin-bottom: 15px;
}

.vaga-titulo {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.vaga-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px dashed #e0e0e0;
    border-bottom: 1px dashed #e0e0e0;
}

.vaga-local,
.vaga-modelo,
.vaga-cidade {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
    background-color: #f5f5f5;
    padding: 5px 12px;
    border-radius: 30px;
}

.vaga-local {
    background-color: #ffe8e6;
    color: var(--vermelho);
}

.vaga-modelo {
    background-color: #f0f0f0;
}

.vaga-cidade {
    background-color: #f0f0f0;
}

/* Botão Saiba Mais */
/* Botão Saiba Mais - com vermelho original */
.btn-saiba-mais {
    background: transparent;
    color: var(--vermelho);
    border: 2px solid var(--vermelho);
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
    width: fit-content;
}

.btn-saiba-mais:hover {
    background: var(--vermelho);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 10px 20px -8px var(--vermelho);
}

/* Botão Filtrar - com vermelho original */
.btn-filtrar {
    background: linear-gradient(135deg, var(--vermelho), #b30000);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
    white-space: nowrap;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn-filtrar:hover {
    background: linear-gradient(135deg, #b30000, #800000);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
}

/* Labels dos filtros - com vermelho original */
.filtro-grupo label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background-color: var(--vermelho);
    border-radius: 2px;
}

/* Hover nos selects - com vermelho original */
.filtro-selecao:hover {
    border-color: var(--vermelho);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1);
}

.filtro-selecao:focus {
    border-color: var(--vermelho);
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
}

/* Header - com vermelho original */
.header {
    border-bottom: 3px solid var(--vermelho);
}

.logo span {
    border-left: 2px solid var(--vermelho);
}

/* Navegação hover - com vermelho original */
.navegacao a:hover {
    color: var(--vermelho);
}

.navegacao a::before {
    background: linear-gradient(90deg, var(--vermelho), #ff6b6b);
}

/* ============================================
   MODAIS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

.modal-conteudo {
    background: white;
    margin: 3% auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    border-radius: 30px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.modal-conteudo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--azul), #84b5ff, var(--azul));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.modal-cabecalho h2 {
    margin: 0;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
}

.modal-cabecalho h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: var(--azul);
    border-radius: 5px;
}

.modal-fechar {
    color: #999;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-fechar:hover {
    color: var(--vermelho);
    background-color: #fff0f0;
    transform: rotate(90deg);
}

.modal-corpo {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--azul) #f0f0f0;
}

.modal-corpo::-webkit-scrollbar {
    width: 8px;
}

.modal-corpo::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.modal-corpo::-webkit-scrollbar-thumb {
    background: var(--azul);
    border-radius: 10px;
}

.modal-descricao {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 16px;
    border-left: 4px solid var(--azul);
    font-style: italic;
}

.modal-descricao strong {
    color: #004085;
    font-weight: 700;
}

.modal-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.modal-badge {
    background: linear-gradient(135deg, #fff5f5, #ffe5e5);
    color: var(--azul);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 255, 0.05);
}

.modal-secao {
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.modal-secao:hover {
    border-color: var(--azul);
    box-shadow: 0 5px 20px rgba(0, 0, 255, 0.05);
}

.modal-secao h3 {
    color: #1a1a1a;
    font-size: 20px;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px dashed var(--azul);
    padding-bottom: 10px;
}

.modal-secao h3::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--azul), transparent);
}

.modal-secao ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-secao ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #444;
    line-height: 1.5;
    border-bottom: 1px dashed #f0f0f0;
}

.modal-secao ul li:last-child {
    border-bottom: none;
}

.modal-secao ul li::before {
    content: '✓';
    color: var(--azul);
    position: absolute;
    left: 5px;
    top: 10px;
    font-weight: bold;
    font-size: 16px;
}

.modal-secao p {
    color: #555;
    line-height: 1.7;
    margin: 10px 0 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.modal-rodape {
    padding: 20px 30px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.btn-inscrever {
    background: linear-gradient(135deg, var(--azul), #0333d1);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px -8px var(--azul);
}

.btn-inscrever:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -8px #0333d1;
}

.btn-compartilhar {
    background: white;
    color: #444;
    border: 2px solid #e0e0e0;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-compartilhar:hover {
    border-color: var(--azul);
    color: var(--azul);
    background: #fff5f5;
}

/* ============================================
   FORMULÁRIO DE INSCRIÇÃO
   ============================================ */
.modal-formulario {
    max-width: 550px;
}

.modal-formulario .modal-cabecalho {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: white;
    border-radius: 30px 30px 0 0;
}

.modal-formulario .modal-cabecalho h2 {
    color: white;
    font-size: 24px;
}

.modal-formulario .modal-fechar {
    color: #004085;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.modal-formulario .modal-fechar:hover {
    background: var(--azul);
    color: white;
}

.vaga-info-inscricao {
    background: linear-gradient(135deg, #f5faff, #e5efff);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid var(--azul);
    display: flex;
    align-items: center;
    gap: 15px;
}

.vaga-info-inscricao p {
    margin: 0;
    color: #333;
    font-size: 16px;
}

.vaga-info-inscricao strong {
    color: #0333d1;
    font-size: 18px;
    display: block;
    margin-top: 3px;
}

.form-inscricao {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-grupo label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.form-icone {
    font-size: 18px;
}

.form-grupo input,
.form-grupo select {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fafafa;
}

.form-grupo input:focus,
.form-grupo select:focus {
    outline: none;
    border-color: var(--azul);
    box-shadow: 0 0 0 4px rgba(0, 0, 255, 0.1);
    background: white;
}

.form-grupo input:hover,
.form-grupo select:hover {
    border-color: var(--azul);
}

.form-mensagem {
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
    animation: slideDown 0.3s;
    margin: 5px 0;
}

.form-mensagem.sucesso {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-mensagem.erro {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-mensagem.loading {
    background: #e2f0ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.form-acoes {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #e0e0e0;
}

.btn-enviar {
    flex: 2;
    background: linear-gradient(135deg, #0333d1, var(--azul));
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-enviar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.btn-enviar:hover:not(:disabled)::before {
    width: 300px;
    height: 300px;
}

.btn-enviar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px var(--azul);
}

.btn-cancelar {
    flex: 1;
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 16px 10px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancelar:hover {
    border-color: var(--vermelho);
    color: var(--vermelho);
    background: #fff5f5;
}

/* ============================================
   UPLOAD DE CURRÍCULO
   ============================================ */
.curriculo-grupo {
    margin-top: 10px;
    margin-bottom: 10px;
}

.curriculo-upload-area {
    position: relative;
    border: 3px dashed var(--azul);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5faff, #e5efff);
    cursor: pointer;
    transition: all 0.3s;
    margin: 10px 0;
    overflow: hidden;
}

.curriculo-upload-area:hover {
    border-color: #004085;
    background: linear-gradient(135deg, #abc5dd, #c5dbff);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 255, 0.3);
}

.curriculo-upload-area.dragover {
    border-color: #00cc00;
    background: linear-gradient(135deg, #8ac7ff, #80abf0);
    transform: scale(1.02);
}

.curriculo-icone {
    font-size: 48px;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.curriculo-texto {
    margin-bottom: 15px;
}

.curriculo-principal {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 5px;
}

.curriculo-secundario {
    display: block;
    font-size: 14px;
    color: #666;
}

.curriculo-info {
    display: inline-block;
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #333;
    border: 2px solid var(--azul);
    max-width: 100%;
    word-break: break-all;
}

.curriculo-info.arquivo-selecionado {
    background: var(--azul);
    color: white;
}

.curriculo-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.curriculo-requisitos {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 10px 0 5px;
    font-size: 12px;
    color: #888;
    flex-wrap: wrap;
}

.curriculo-requisitos span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ============================================
   SEÇÃO TALENTOS
   ============================================ */
.talentos {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.talentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 8px);
    pointer-events: none;
}

.talentos .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.talentos h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.talentos p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 20px;
    font-style: italic;
}

.btn-banco-talentos {
    display: inline-block;
    background: linear-gradient(135deg, var(--vermelho), #b30000);
    color: #fff;
    text-decoration: none;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-banco-talentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.btn-banco-talentos:hover {
    background: linear-gradient(135deg, #b30000, var(--vermelho));
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-banco-talentos:hover::before {
    left: 100%;
}

/* ============================================
   RODAPÉ
   ============================================ */
.rodape {
    background-color: #0a0a0a;
    padding: 50px 0 30px;
    position: relative;
}


.rodape .conteudo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rodape-info {
    text-align: center;
    color: #ccc;
    line-height: 2;
    position: relative;
}

.rodape-info::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vermelho), transparent);
    margin: 20px auto 0;
}

.rodape-info p {
    margin: 8px 0;
    font-size: 15px;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.rodape-info p:first-of-type {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px dashed var(--vermelho);
    padding-bottom: 5px;
}

.rodape-info p:nth-of-type(3)::before {
    content: '©';
    margin-right: 8px;
    opacity: 0.8;
}

/* ============================================
   CLASSES AUXILIARES
   ============================================ */
.obrigatorio {
    color: #ff0000;
    font-size: 16px;
    margin-left: 5px;
}

.opcional {
    color: #999;
    font-size: 12px;
    font-weight: normal;
    font-style: italic;
    margin-left: 5px;
}

.loading-vagas {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
}

.nenhuma-vaga,
.erro-vagas {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    margin: 20px 0;
    grid-column: 1 / -1;
}

.nenhuma-vaga span,
.erro-vagas span {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.nenhuma-vaga h4,
.erro-vagas h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.nenhuma-vaga p,
.erro-vagas p {
    color: #777;
    font-size: 16px;
}

/* ============================================
   RESPONSIVIDADE GERAL
   ============================================ */
@media (max-width: 1024px) {
    .vagas-lista .conteudo {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-titulo {
        font-size: 28px;
    }

    .vaga-cartao {
        padding: 20px;
    }

    .vaga-titulo {
        font-size: 18px;
    }

    .modal-conteudo {
        margin: 10% auto;
        width: 95%;
    }

    .modal-cabecalho {
        padding: 20px;
    }

    .modal-cabecalho h2 {
        font-size: 22px;
    }

    .modal-corpo {
        padding: 20px;
    }

    .modal-rodape {
        flex-direction: column;
        padding: 20px;
    }

    .btn-inscrever,
    .btn-compartilhar,
    .btn-enviar,
    .btn-cancelar {
        width: 100%;
        justify-content: center;
    }

    .form-acoes {
        flex-direction: column;
    }

    .talentos h3 {
        font-size: 28px;
    }

    .talentos p {
        font-size: 16px;
    }

    .btn-banco-talentos {
        padding: 15px 35px;
        font-size: 18px;
    }

    .rodape {
        padding: 40px 0 20px;
    }

    .rodape-info p {
        font-size: 14px;
        display: block;
        padding: 5px 0;
    }
}

@media (max-width: 480px) {
    .vagas-lista .conteudo {
        grid-template-columns: 1fr;
    }

    .section-titulo {
        font-size: 24px;
        display: block;
        text-align: center;
    }

    .section-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .vaga-info {
        flex-direction: column;
        gap: 8px;
    }

    .vaga-local,
    .vaga-modelo,
    .vaga-cidade {
        width: fit-content;
    }

    .modal-info {
        flex-direction: column;
    }

    .modal-badge {
        width: fit-content;
    }

    .curriculo-requisitos {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .curriculo-principal {
        font-size: 16px;
    }

    .curriculo-icone {
        font-size: 36px;
    }

    .talentos h3 {
        font-size: 22px;
    }

    .btn-banco-talentos {
        padding: 12px 25px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .rodape-info p {
        font-size: 13px;
    }
}



/* ============================================
   HEADER E MENU HAMBURGUER - TEXAS FARM
   ============================================ */

.header {
    background-color: #0a0a0a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff0000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.conteudo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-left: 10px;
    border-left: 2px solid #ff0000;
}

/* ============================================
   MENU HAMBURGUER - ESTILO
   ============================================ */

.hamburguer-menu {
    display: none;
    /* Escondido por padrão (desktop) */
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburguer-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburguer-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #fff);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animação do ícone quando aberto */
.hamburguer-menu.ativo .hamburguer-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: #ff0000;
}

.hamburguer-menu.ativo .hamburguer-icon span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburguer-menu.ativo .hamburguer-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: #ff0000;
}

/* ============================================
   NAVEGAÇÃO - DESKTOP
   ============================================ */

.navegacao ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.navegacao a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

/* Efeito de underline animado */
.navegacao a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    transition: width 0.3s ease;
}

.navegacao a:hover {
    color: #ff0000;
}

.navegacao a:hover::before {
    width: 100%;
}

/* Link do site oficial com ícone */
.navegacao a[target="_blank"]::after {
    content: '↗';
    margin-left: 5px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s;
}

.navegacao a[target="_blank"]:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   OVERLAY DO MENU
   ============================================ */

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.ativo {
    opacity: 1;
}

/* ============================================
   RESPONSIVIDADE - TABLET E MOBILE
   ============================================ */

@media (max-width: 768px) {

    /* Mostrar menu hamburguer */
    .hamburguer-menu {
        display: block;
    }

    /* Esconder navegação padrão e mostrar como menu lateral */
    .navegacao {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
        border-left: 3px solid #ff0000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .navegacao.ativo {
        right: 0;
    }

    .navegacao ul {
        flex-direction: column;
        gap: 20px;
    }

    .navegacao li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s;
    }

    .navegacao.ativo li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Delay para cada item do menu */
    .navegacao.ativo li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .navegacao.ativo li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .navegacao.ativo li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .navegacao a {
        font-size: 18px;
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .navegacao a:hover {
        background: rgba(255, 0, 0, 0.1);
        padding-left: 25px;
    }

    /* Decoracao country no menu mobile */
    .navegacao::before {
        content: '🤠';
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 40px;
        opacity: 0.3;
        animation: bounce 2s infinite;
    }

    /* Mostrar overlay quando menu estiver aberto */
    .menu-overlay.ativo {
        display: block;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   AJUSTES PARA DISPOSITIVOS PEQUENOS
   ============================================ */

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }

    .logo span {
        font-size: 16px;
    }

    .navegacao {
        width: 250px;
        padding: 70px 20px 20px;
    }

    .navegacao a {
        font-size: 16px;
        padding: 10px 12px;
    }
}

/* ============================================
   PREVENIR SCROLL QUANDO MENU ABERTO
   ============================================ */

body.menu-aberto {
    overflow: hidden;
}


/* Grid dos filtros - com botão */
.filtros-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
}

/* Responsividade */
@media (max-width: 768px) {
    .filtros-grid {
        grid-template-columns: 1fr;
    }

    .btn-filtrar {
        width: 100%;
    }
}