/* Container principal da página de detalhes da vaga */
.job-vacancy-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Container do conteúdo principal (lado esquerdo) */
.main-content {
    background-color: white;
}

/* Título principal */
.job-vacancy-detail h1 {
    font-size: 40px;
    font-weight: 600;
    color: #024248;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Subtítulo/data */
.job-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Container da tag ENAP */
.tag-container {
    margin-bottom: 2rem;
}

.enap-tag {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botões de compartilhamento */
.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.share-btn:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.share-btn.whatsapp:hover {
    background-color: #25d366;
    color: white;
    border-color: #25d366;
}

.share-btn.facebook:hover {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-btn.twitter:hover {
    background-color: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-btn.linkedin:hover {
    background-color: #0077b5;
    color: white;
    border-color: #0077b5;
}

/* Descrição principal */
.job-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.job-description p {
    margin-bottom: 1rem;
}

/* Link destacado */
.highlight-link {
    color: #3182ce;
    text-decoration: underline;
    font-weight: 500;
}

.highlight-link:hover {
    color: #2c5282;
}

/* Informações adicionais */
.additional-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.additional-info p {
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.95rem;
}

/* Sidebar (lado direito) */
.job-sidebar {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

/* Itens da sidebar */
.sidebar-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #edf2f7;
}

.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.sidebar-item p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Botão de inscrição */
.ins {
    padding: 8px 2rem;
    border-radius: 32px;
    margin-top: 10px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

/* Botão de download */
.download-button {
    background-color: #ffffff;
    color: #2d3748;
    border: 2px solid #e2e8f0;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

/* Texto "Compartilhe:" */
.share-label {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 1024px) {
    .job-vacancy-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .job-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .job-vacancy-detail {
        padding: 1rem;
    }
    
    .job-vacancy-detail h1 {
        font-size: 2rem;
    }
    
    .job-subtitle {
        font-size: 1.1rem;
    }
    
    .job-sidebar {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .job-vacancy-detail h1 {
        font-size: 1.75rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
}