:root {
    --primary-color: #004a8d;
    --secondary-color: #b38e5d;
    --light-color: #f5f5f5;
}

body {
    background-color: var(--light-color);
}

.header {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 5px solid var(--secondary-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
}

.card-header h5 {
    margin: 0;
    font-size: 1.1rem;
}

.info-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.badge-custom {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5em 1em;
    border-radius: 4px;
    display: inline-block;
    margin: 0.2rem;
    font-size: 0.85rem;
}

/* Estilo padrão do botão */
.btn-valido, .btn-recurso {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer; /* Aponta para um botão clicável */
    transition: background-color 0.3s ease;
}

/* Hover quando o botão está habilitado */
.btn-valido:hover, .btn-recurso:hover {
    background-color: var(--secondary-color);
}

/* Estilo padrão do botão */
.btn-encerrado {
    background-color: #a51b28;
    border: none;
    padding: 0.8rem;
    font-weight: 500;
    width: 100%;
    pointer-events: none; /* Impede qualquer interação com o botão */
    cursor: not-allowed; /* Muda o cursor para indicar que está desabilitado */
    opacity: 0.7; /* Opcional: deixa o botão visualmente mais "apagado" */
}

/* Hover quando o botão está habilitado */
.btn-encerrado:hover {
    background-color: #a51b28;
}

/* Estilo padrão do botão */
.btn-nao_iniciado {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem;
    font-weight: 500;
    width: 100%;
    pointer-events: none; /* Impede qualquer interação com o botão */
    cursor: not-allowed; /* Muda o cursor para indicar que está desabilitado */
    opacity: 0.7; /* Opcional: deixa o botão visualmente mais "apagado" */
}

/* Hover quando o botão está habilitado */
.btn-nao_iniciado:hover {
    background-color: var(--primary-color);
}

/* Estilo para o botão de consulta de inscrição */
.btn-consulta {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 0.5rem;
}

/* Hover para o botão de consulta */
.btn-consulta:hover {
    background-color: var(--primary-color);
    color: white;
}


.list-group-item {
    border-left: 4px solid var(--primary-color);
    margin-bottom: 0.5rem;
}

.list-group-item:hover {
    background-color: var(--light-color);
}

.no-vagas-container {
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
}

.no-vagas-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.no-vagas-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-vagas-title {
    color: #495057;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-vagas-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.5;
}
.documents-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
}

.documents-section h6 {
    color: #0d6efd;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.documents-section h6:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

.document-card {
    transition: transform 0.2s;
    background-color: white;
    min-height: 120px;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

.document-card .card-header {
    background-color: #0d6efd !important;
    height: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.document-card .card-body {
    padding: 0.8rem;
}

.document-card .card-title {
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.document-card .bi-file-pdf {
    font-size: 1rem !important;
}

.document-card small {
    font-size: 0.70rem;
}

.floating-info {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    animation: pulse 1s infinite;
    z-index: 1000;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}