/* Complementos do mural de vagas — reutiliza portal.css */

.header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vagas-hero .hero-title {
    font-size: 2.5rem;
}

.vagas-hero .hero-subtitle {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.vaga-card .empresa-logo-container {
    height: 120px;
}

.vaga-card .empresa-logo-placeholder {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 2rem;
    border: 2px solid #e9ecef;
}

.vaga-card .empresa-categoria {
    background: #eff6ff;
    color: #1d4ed8;
}

.vaga-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    margin-top: 0.35rem;
}

.vaga-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #64748b;
}

.vaga-meta-item i {
    color: #3b82f6;
    width: 14px;
}

.modal-vaga .filters .container {
    align-items: flex-end;
}

.filter-label-spacer {
    visibility: hidden;
    user-select: none;
}

.filters-actions {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
}

.btn-limpar-filtros {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    color: #475569;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    min-height: calc(0.75rem * 2 + 1.5rem + 4px);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-limpar-filtros:hover {
    border-color: #3b82f6;
    color: #1d4ed8;
    background: #f8fafc;
}

.modal-vaga .modal {
    max-width: 760px;
}

.modal-vaga .info-item + .info-item {
    margin-top: 1rem;
}

.candidatura-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.candidatura-box h4 {
    color: #166534;
    margin-bottom: 0.75rem;
}

.candidatura-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn-candidatura {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-candidatura:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
    color: #fff;
}

.btn-candidatura.btn-email {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.btn-candidatura.btn-link {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
}

@media (max-width: 768px) {
    .modal-vaga .filters .container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        min-width: 100%;
    }

    .filter-label-spacer {
        display: none;
    }

    .filters-actions {
        width: 100%;
    }

    .btn-limpar-filtros {
        width: 100%;
    }
}
