/* CSS específico para página de vagas */

/* Variáveis CSS herdadas do style.css principal */
:root {
    --primary-color: #1a4b77;
    --primary-color-dark: #144060;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --text-color: #2c3e50;
    --text-color-light: #7f8c8d;
    --white-color: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gradient-primary: linear-gradient(135deg, #1a4b77 0%, #2980b9 100%);
    --gradient-secondary: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animações */
.vaga-card {
    animation: fadeInUp 0.6s ease-out;
}

.vaga-card:nth-child(even) {
    animation-delay: 0.1s;
}

.vaga-card:nth-child(3n) {
    animation-delay: 0.2s;
}

.btn-apply:hover {
    animation: pulse 0.3s ease-in-out;
}

.search-input:focus {
    animation: slideIn 0.3s ease-out;
}

/* Melhorias visuais */
.vaga-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(26, 75, 119, 0.03) 50%, transparent 100%);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.vaga-card:hover::after {
    opacity: 1;
}

/* Estados de loading */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Badges de especialidade */
.especialidade-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-anestesiologia {
    background: rgba(26, 75, 119, 0.1);
    color: #1a4b77;
}

.badge-intensiva {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.badge-dor {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.badge-cardiologia {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.badge-administrativo {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Tooltip personalizado */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Melhorias para filtros */
.filters-section {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.filter-select:hover,
.search-input:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 75, 119, 0.1);
}

/* Contador de resultados */
.results-count {
    text-align: center;
    margin: 1rem 0;
    color: var(--text-color-light);
    font-size: 0.9rem;
}

/* Melhorias para mobile */
@media screen and (max-width: 768px) {
    .vaga-card {
        margin-bottom: 1rem;
        animation-delay: 0s !important;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-select,
    .search-input {
        width: 100%;
    }
}

/* Estados de interação */
.vaga-card.destacada {
    border-left-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.15);
}

.btn-favoritar {
    position: absolute;
    top: 1rem;
    right: 4rem;
    background: none;
    border: none;
    color: var(--text-color-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-favoritar:hover,
.btn-favoritar.favoritado {
    color: var(--accent-color);
}

/* Print styles */
@media print {
    .filters-section,
    .vaga-actions,
    .nav,
    .footer {
        display: none !important;
    }
    
    .vaga-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Seções de atividades */
.vaga-activities {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.activities-title {
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: var(--small-font-size);
}

.activities-list {
    list-style: none;
    padding: 0;
}

.activities-list li {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.activities-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.activities-full {
    list-style: none;
    padding: 0;
}

.activities-full li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.activities-full li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}
    
        /* Estilos específicos inline para página de vagas */
        .vagas-hero {
            background: var(--gradient-primary);
            padding: 120px 0 80px;
            text-align: center;
            color: var(--white-color);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            min-height: 60vh;
        }

        .vagas-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        /* Animação do hero */
        .hero-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        /* Partículas principais */
        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
            border-radius: 50%;
            animation: particleFloat 20s ease-in-out infinite;
        }

        .particle::before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: -4px;
            left: -4px;
            animation: ripple 3s ease-out infinite;
        }

        /* Conexões dinâmicas */
        .connection {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.1) 10%, 
                rgba(255, 255, 255, 0.4) 50%, 
                rgba(255, 255, 255, 0.1) 90%, 
                transparent 100%);
            animation: dataFlow 8s ease-in-out infinite;
            transform-origin: left center;
        }

        /* Ícones flutuantes */
        .floating-icon {
            position: absolute;
            font-size: 20px;
            color: rgba(255, 255, 255, 0.1);
            animation: iconFloat 15s linear infinite;
        }

        /* Posicionamento das partículas */
        .particle:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 30%; left: 80%; animation-delay: -3s; }
        .particle:nth-child(3) { top: 50%; left: 20%; animation-delay: -6s; }
        .particle:nth-child(4) { top: 70%; left: 70%; animation-delay: -9s; }
        .particle:nth-child(5) { top: 20%; left: 50%; animation-delay: -12s; }
        .particle:nth-child(6) { top: 80%; left: 30%; animation-delay: -15s; }
        .particle:nth-child(7) { top: 60%; left: 90%; animation-delay: -18s; }
        .particle:nth-child(8) { top: 40%; left: 10%; animation-delay: -21s; }

        /* Conexões */
        .connection:nth-child(9) { top: 15%; left: 15%; width: 35%; transform: rotate(15deg); animation-delay: 0s; }
        .connection:nth-child(10) { top: 35%; left: 40%; width: 40%; transform: rotate(-10deg); animation-delay: -2s; }
        .connection:nth-child(11) { top: 55%; left: 20%; width: 50%; transform: rotate(8deg); animation-delay: -4s; }
        .connection:nth-child(12) { top: 75%; left: 30%; width: 35%; transform: rotate(-15deg); animation-delay: -6s; }

        /* Ícones */
        .floating-icon:nth-child(13) { top: 20%; left: 5%; animation-delay: 0s; }
        .floating-icon:nth-child(14) { top: 60%; left: 95%; animation-delay: -5s; }
        .floating-icon:nth-child(15) { top: 80%; left: 10%; animation-delay: -10s; }
        .floating-icon:nth-child(16) { top: 40%; left: 90%; animation-delay: -15s; }

        /* Animações */
        @keyframes particleFloat {
            0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
            25% { transform: translateY(-10px) translateX(5px); opacity: 0.7; }
            50% { transform: translateY(-20px) translateX(-3px); opacity: 1; }
            75% { transform: translateY(-15px) translateX(8px); opacity: 0.5; }
        }

        @keyframes ripple {
            0% { opacity: 0.6; transform: scale(0.5); }
            50% { opacity: 0.3; transform: scale(1); }
            100% { opacity: 0; transform: scale(1.5); }
        }

        @keyframes dataFlow {
            0% { opacity: 0; transform: scaleX(0); }
            20% { opacity: 0.6; transform: scaleX(0.3); }
            50% { opacity: 1; transform: scaleX(1); }
            80% { opacity: 0.4; transform: scaleX(0.6); }
            100% { opacity: 0; transform: scaleX(0); }
        }

        @keyframes iconFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }

        .vagas-hero .container {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .vagas-hero h1 {
            font-size: var(--big-font-size);
            margin-bottom: 1.5rem;
            font-weight: var(--font-semi-bold);
            color: var(--white-color) !important;
            text-align: center;
        }

        .vagas-hero p {
            font-size: var(--h3-font-size);
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2.5rem;
            color: var(--white-color) !important;
            text-align: center;
            line-height: 1.6;
        }

        /* Filtros */
        .filters-section {
            background: var(--white-color);
            padding: 2rem 0;
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 80px;
            z-index: 10;
        }

        .filters-container {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-start;
        }
        
        .filters-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: flex-end;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            min-width: 150px;
        }

        .filter-label {
            font-size: var(--small-font-size);
            font-weight: var(--font-medium);
            color: var(--text-color);
        }

        .filter-select {
            padding: 0.75rem 1rem;
            border: 2px solid var(--gray-200);
            border-radius: 0.5rem;
            font-size: var(--normal-font-size);
            background: var(--white-color);
            color: var(--text-color);
            transition: border-color 0.3s ease;
            min-width: 150px;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .search-box {
            display: flex;
            align-items: center;
            position: relative;
            flex: 1;
            max-width: 400px;
        }

        .search-input {
            padding: 0.75rem 1rem 0.75rem 3rem;
            border: 2px solid var(--gray-200);
            border-radius: 2rem;
            font-size: var(--normal-font-size);
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 4px 15px rgba(26, 75, 119, 0.15);
            transform: translateY(-2px);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            color: var(--text-color-light);
            transition: color 0.3s ease;
        }
        
        .search-input:focus + .search-icon {
            color: var(--primary-color);
        }

        /* Cards de vagas */
        .vagas-section {
            padding: 3rem 0;
            background: #f8f9fa;
        }

        .vagas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .vaga-card {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-color);
            position: relative;
        }

        .vaga-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .vaga-header {
            display: flex;
            justify-content: between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .vaga-title {
            font-size: var(--h3-font-size);
            font-weight: var(--font-semi-bold);
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .vaga-hospital {
            font-size: var(--normal-font-size);
            color: var(--text-color);
            font-weight: var(--font-medium);
            margin-bottom: 0.5rem;
        }

        .vaga-location {
            font-size: var(--small-font-size);
            color: var(--text-color-light);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .vaga-status {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.3rem 0.8rem;
            border-radius: 2rem;
            font-size: var(--small-font-size);
            font-weight: var(--font-medium);
        }

        .status-urgent {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }

        .status-normal {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
        }

        .status-filled {
            background: rgba(108, 117, 125, 0.1);
            color: #6c757d;
        }

        .vaga-details {
            margin: 1.5rem 0;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            font-size: var(--small-font-size);
        }

        .detail-icon {
            width: 20px;
            color: var(--primary-color);
        }

        .vaga-description {
            color: var(--text-color);
            line-height: 1.6;
            margin: 1.5rem 0;
        }

        .vaga-requirements {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 0.5rem;
            margin: 1.5rem 0;
        }

        .requirements-title {
            font-weight: var(--font-medium);
            color: var(--text-color);
            margin-bottom: 0.5rem;
            font-size: var(--small-font-size);
        }

        .requirements-list {
            list-style: none;
            padding: 0;
        }

        .requirements-list li {
            font-size: var(--small-font-size);
            color: var(--text-color-light);
            margin-bottom: 0.3rem;
            padding-left: 1rem;
            position: relative;
        }

        .requirements-list li::before {
            content: '•';
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }

        .vaga-actions {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            margin-top: 2rem;
        }

        .btn-apply {
            background: var(--primary-color);
            color: var(--white-color);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: var(--small-font-size);
            font-weight: var(--font-medium);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-apply:hover {
            background: var(--primary-color-dark);
            transform: translateY(-2px);
        }

        .btn-details {
            background: transparent;
            color: var(--primary-color);
            padding: 0.8rem 1.5rem;
            border: 2px solid var(--primary-color);
            border-radius: 0.5rem;
            font-size: var(--small-font-size);
            font-weight: var(--font-medium);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-details:hover {
            background: var(--primary-color);
            color: var(--white-color);
        }

        /* Estado vazio */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-color-light);
        }

        .empty-state i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        /* Responsivo */
        @media screen and (max-width: 1024px) {
            .vagas-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 1.5rem;
            }
            
            .filters-container {
                flex-direction: column;
                align-items: stretch;
                gap: 1.5rem;
            }
            
            .filters-row {
                justify-content: center;
            }
            
            .search-box {
                max-width: 100%;
                width: 100%;
            }
        }

        @media screen and (max-width: 768px) {
            .vagas-hero {
                padding: 100px 0 60px;
            }
            
            .vagas-hero h1 {
                font-size: var(--h1-font-size);
            }
            
            .vagas-hero p {
                font-size: var(--normal-font-size);
                margin-bottom: 1.5rem;
            }
            
            .vagas-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .filters-container {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            
            .filters-row {
                flex-direction: column;
                gap: 1rem;
            }
            
            .filter-group {
                width: 100%;
                min-width: auto;
            }
            
            .filter-select {
                width: 100%;
                min-width: auto;
            }

            .search-box {
                width: 100%;
                max-width: none;
            }
            
            .search-input {
                width: 100%;
            }

            .vaga-actions {
                flex-direction: column;
                gap: 0.8rem;
            }

            .filters-section {
                position: static;
                padding: 1.5rem 0;
            }
            
            .vagas-section {
                padding: 2rem 0;
            }
        }

        @media screen and (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .vagas-hero {
                padding: 80px 0 40px;
            }
            
            .vaga-card {
                padding: 1.5rem;
                margin-bottom: 1rem;
            }

            .vagas-hero h1 {
                font-size: 1.8rem;
            }

            .vagas-hero p {
                font-size: 0.9rem;
            }
            
            .filters-section {
                padding: 1rem 0;
            }
            
            .search-input {
                padding: 0.6rem 0.8rem 0.6rem 2.5rem;
                font-size: 0.9rem;
            }
            
            .search-icon {
                left: 0.8rem;
                font-size: 0.9rem;
            }
            
            .filter-select {
                padding: 0.6rem 0.8rem;
                font-size: 0.9rem;
            }
            
            .vaga-title {
                font-size: var(--normal-font-size);
                line-height: 1.4;
            }
            
            .detail-item {
                font-size: 0.8rem;
            }
            
            .btn-apply,
            .btn-details {
                padding: 0.7rem 1.2rem;
                font-size: 0.8rem;
            }
        }

        @media screen and (max-width: 360px) {
            .vaga-card {
                padding: 1rem;
            }
            
            .search-input {
                padding: 0.5rem 0.7rem 0.5rem 2.2rem;
            }
            
            .search-icon {
                left: 0.7rem;
            }
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .modal-overlay.show {
            opacity: 1;
        }
        
        .modal-content {
            background: white;
            border-radius: 1rem;
            max-width: 800px;
            max-height: 90vh;
            width: 90%;
            overflow-y: auto;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.show .modal-content {
            transform: translateY(0);
        }
        
        .modal-header {
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h2 {
            color: var(--primary-color);
            margin: 0;
            font-size: 1.5rem;
        }
        
        .btn-close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #999;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .btn-close-modal:hover {
            background: #f5f5f5;
            color: #333;
        }
        
        .modal-body {
            padding: 2rem;
        }
        
        .info-section {
            margin-bottom: 2rem;
        }
        
        .info-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .vaga-specs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .spec-item {
            padding: 0.8rem;
            background: #f8f9fa;
            border-radius: 0.5rem;
            border-left: 3px solid var(--primary-color);
        }
        
        .requirements-full,
        .benefits-full {
            list-style: none;
            padding: 0;
        }
        
        .requirements-full li,
        .benefits-full li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .requirements-full li::before,
        .benefits-full li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
        }
        
        .modal-footer {
            padding: 1rem 2rem 2rem;
            text-align: center;
        }
        
        .btn-apply-modal {
            background: #25d366;
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: background 0.3s ease;
        }
        
        .btn-apply-modal:hover {
            background: #128c7e;
        }
        
        .vaga-filled-message {
            color: #6c757d;
            font-style: italic;
        }
        
        .benefits-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .benefit-tag {
            background: var(--primary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 1rem;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 1rem;
            }
            
            .modal-header,
            .modal-body,
            .modal-footer {
                padding: 1rem;
            }
            
            .vaga-specs {
                grid-template-columns: 1fr;
            }
        }/* ==================== RESPONSIVIDADE PARA HERO ANIMADO ==================== */

/* Mobile - reduzir animações */
@media screen and (max-width: 768px) {
    .vagas-hero h1 {
        color: var(--white-color) !important;
    }
    
    .vagas-hero p {
        color: var(--white-color) !important;
        max-width: 90%;
    }
    
    .particle {
        animation-duration: 15s;
    }
    
    .floating-icon {
        font-size: 16px;
        animation-duration: 12s;
    }
    
    .connection {
        animation-duration: 6s;
    }
}

@media screen and (max-width: 480px) {
    .vagas-hero {
        padding: 100px 0 60px;
    }
    
    .vagas-hero h1 {
        font-size: var(--h1-font-size) !important;
        color: var(--white-color) !important;
    }
    
    .vagas-hero p {
        font-size: var(--normal-font-size) !important;
        color: var(--white-color) !important;
    }
    
    /* Reduzir ainda mais as animações no mobile pequeno */
    .particle {
        width: 6px;
        height: 6px;
        animation-duration: 12s;
    }
    
    .floating-icon {
        font-size: 14px;
        animation-duration: 10s;
    }
}

/* Prefers reduced motion - acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .connection,
    .floating-icon {
        animation: none;
    }
    
    .particle {
        opacity: 0.3;
    }
}

/* ========== REGRAS RESPONSIVAS ABRANGENTES ========== */

/* Large Desktops (1400px+) */
@media (max-width: 1400px) {
    .container {
        max-width: 95%;
    }
    
    .nav__menu {
        gap: 2rem;
    }
    
    .jobs__grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .footer__content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Standard Desktops (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 92%;
    }
    
    .nav__menu {
        gap: 1.5rem;
    }
    
    .nav__link {
        font-size: 0.95rem;
    }
    
    .filters {
        gap: 1rem;
    }
    
    .filter__item select,
    .filter__item input {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    
    .jobs__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.2rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-card__title {
        font-size: 1.2rem;
    }
    
    .footer__content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

/* Tablets (1024px) */
@media (max-width: 1024px) {
    .header {
        padding: 0.8rem 0;
    }
    
    .nav__menu {
        gap: 1.2rem;
    }
    
    .nav__link {
        font-size: 0.9rem;
    }
    
    .filters {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .filter__item {
        width: 100%;
    }
    
    .filter__item select,
    .filter__item input {
        width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .jobs__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .job-card {
        padding: 1.3rem;
    }
    
    .job-card__header {
        margin-bottom: 1rem;
    }
    
    .job-card__title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .job-card__company {
        font-size: 0.9rem;
    }
    
    .job-card__info {
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    .job-card__info-item {
        font-size: 0.85rem;
    }
    
    .footer__content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer__section {
        text-align: center;
    }
}

/* Large Mobile (768px) */
@media (max-width: 768px) {
    .header__content {
        padding: 0 1rem;
    }
    
    .nav__logo {
        gap: 0.5rem;
    }
    
    .nav__logo img {
        height: 35px;
    }
    
    .nav__logo-text {
        font-size: 1.2rem;
    }
    
    .nav__menu {
        display: none;
    }
    
    .nav__toggle {
        display: block;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav__menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 48, 91, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }
    
    .nav__menu.active .nav__link {
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav__menu.active .nav__link:hover {
        color: var(--gold);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .filters {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .filter__item label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .filter__item select,
    .filter__item input {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .jobs__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .job-card {
        padding: 1.2rem;
    }
    
    .job-card__title {
        font-size: 1rem;
    }
    
    .job-card__company {
        font-size: 0.85rem;
    }
    
    .job-card__info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .job-card__info-item {
        font-size: 0.8rem;
    }
    
    .job-card__description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .job-card__button {
        width: 100%;
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__contact-item {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer__bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .header__content {
        padding: 0 0.8rem;
    }
    
    .nav__logo img {
        height: 30px;
    }
    
    .nav__logo-text {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .section__title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .filters {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .filter__item select,
    .filter__item input {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .job-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .job-card__title {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .job-card__company {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .job-card__info-item {
        font-size: 0.75rem;
    }
    
    .job-card__description {
        font-size: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .job-card__button {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer__section {
        margin-bottom: 1rem;
    }
    
    .footer__title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer__link,
    .footer__contact-item span {
        font-size: 0.85rem;
    }
    
    .footer__copy {
        font-size: 0.8rem;
    }
    
    .footer__bottom-link {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .section__title {
        font-size: 1.4rem;
    }
    
    .job-card {
        padding: 0.8rem;
    }
    
    .job-card__title {
        font-size: 0.9rem;
    }
    
    .filter__item select,
    .filter__item input {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}
