/*
Theme Name: VagaIdeal Theme
Template: blocksy
Description: Tema personalizado para portal de vagas
Version: 1.0.4
*/

/* ================================
   🎯 INTERACTIVE HERO SECTION
================================= */
.hero-section {
    background: #ffffff;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 50px;
    color: #575760;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Indicator */
.progress-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.progress-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #b2b2be;
}

.progress-step.active {
    color: #10b981;
}

.progress-step.completed {
    color: #10b981;
}

.progress-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active .progress-dot {
    background: #10b981;
    color: white;
}

.progress-step.completed .progress-dot {
    background: #10b981;
    color: white;
}

.progress-line {
    width: 40px;
    height: 2px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.progress-line.completed {
    background: #10b981;
}

/* Step Card */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 2px solid #10b981;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.step-card.completed {
    opacity: 0.6;
    transform: scale(0.98);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #222222;
    text-align: center;
}

/* Hero Cities Grid */
.hero-section .cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.hero-city-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7f8f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero-city-card:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.25);
    border-color: transparent;
}

.hero-city-card:hover .hero-city-content * {
    color: white !important;
}

.hero-city-card:hover .hero-city-avatar {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
}

.hero-city-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-city-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-city-info {
    flex: 1;
}

.hero-city-name {
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.hero-city-stats {
    font-size: 0.85rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.hero-city-arrow {
    color: #b2b2be;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Expand Button */
.expand-section {
    text-align: center;
    margin-top: 24px;
}

.expand-btn {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 2px solid #10b981;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.expand-btn:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Additional Cities */
.additional-cities {
    display: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.additional-cities.expanded {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.additional-cities-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #575760;
    margin-bottom: 20px;
    text-align: center;
	color: white;
}

.cities-search {
    max-width: 400px;
    margin: 0 auto 24px;
    position: relative;
}

.cities-search input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cities-search input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.cities-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #b2b2be;
    width: 18px;
    height: 18px;
}

/* Channel Selection */
.channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.channel-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.channel-card.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-color: #25d366;
    color: white;
}

.channel-card.whatsapp::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #25d366;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.channel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.channel-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-card.whatsapp .channel-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.channel-card.website .channel-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.channel-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.channel-card.whatsapp .channel-title {
    color: white;
}

.channel-desc {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.channel-card.whatsapp .channel-desc {
    color: rgba(255,255,255,0.9);
}

.channel-stats {
    font-size: 0.9rem;
    font-weight: 600;
}

.channel-card.whatsapp .channel-stats {
    color: rgba(255,255,255,0.8);
}

.channel-card.website .channel-stats {
    color: #575760;
}

/* Final Step */
.final-step {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.final-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222222;
}

.final-desc {
    font-size: 1.1rem;
    color: #575760;
    margin-bottom: 32px;
}

.final-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.final-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

.alternative-link {
    display: block;
    margin-top: 20px;
    color: #222222;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
}

.alternative-link:hover {
    color: #10b981;
}

/* Responsive */
/* Responsive em tablets */
@media (max-width: 1024px) {
    .hero-section .cities-grid {
        gap: 14px;
    }

    .hero-city-card {
        padding: 18px 14px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section .cities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-city-card {
        padding: 16px 12px;
    }

    .hero-city-content {
        gap: 10px;
    }

    .hero-city-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .hero-city-name {
        font-size: 1rem;
    }

    .hero-city-stats {
        font-size: 0.8rem;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Progress Indicator */
    .progress-header {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-bottom: 32px;
        padding: 16px 20px;
        background: rgba(16, 185, 129, 0.05);
        border-radius: 16px;
        border: 1px solid rgba(16, 185, 129, 0.1);
    }
    
    .progress-step {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #b2b2be;
        text-align: center;
        min-width: 60px;
    }
    
    .progress-step.active {
        color: #10b981;
    }
    
    .progress-step.completed {
        color: #10b981;
    }
    
    .progress-dot {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 700;
        transition: all 0.3s ease;
        margin-bottom: 4px;
        border: 2px solid transparent;
    }
    
    .progress-step.active .progress-dot {
        background: #10b981;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        border-color: rgba(16, 185, 129, 0.2);
    }
    
    .progress-step.completed .progress-dot {
        background: #10b981;
        color: white;
        border-color: rgba(16, 185, 129, 0.2);
    }
    
    .progress-line {
        width: 20px;
        height: 2px;
        background: #e2e8f0;
        transition: all 0.3s ease;
        margin: 0 4px;
        border-radius: 1px;
    }
    
    .progress-line.completed {
        background: #10b981;
        box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
    }
    
    /* Mobile step titles */
    .step-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }
    
    /* Mobile cards padding */
    .step-card {
        padding: 24px 20px;
        margin: 0 -20px;
        border-radius: 20px 20px 0 0;
    }
}

/* ================================
   🎬 ANIMAÇÕES GLOBAIS
================================= */

/* Animação principal para elementos que aparecem */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação para orbs flutuantes */
/* Duplicação removida - usando animação consolidada no topo */

/* Animação para elementos flutuantes */
/* Duplicação removida - usando animação consolidada no topo */

/* Animação de loading/spinner */
/* Duplicação removida - usando animação consolidada no topo */

/* Classes utilitárias para animações */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ================================
   🔘 BOTÕES GLOBAIS
================================= */

/* Botão principal */
.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Botão secundário */
.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-1px);
}

/* ================================
   🏠 HERO SECTION (LEGACY)
================================= */
.hero {
    background: linear-gradient(135deg, #fdfdfd 0%, #f8fafc 100%);
    padding: 3rem 0 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Orbs Flutuantes - Movimento Orgânico */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(20, 160, 119, 0.1) 0%, rgba(20, 160, 119, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: orb-float 6s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(20, 160, 119, 0.08) 0%, rgba(20, 160, 119, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: orb-float 8s ease-in-out infinite reverse;
    z-index: 1;
}

/* Orbs Extras */
.orb-extra {
    position: absolute;
    top: 60%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    animation: orb-float 7s ease-in-out infinite;
    z-index: 1;
}

.orb-extra-2 {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(20, 160, 119, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: orb-float 9s ease-in-out infinite reverse;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
}

/* Badge com Glass Morphism */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240, 253, 250, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: #14a077;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(20, 160, 119, 0.2);
    box-shadow: 0 4px 20px rgba(20, 160, 119, 0.1);
}

.badge svg {
    width: 18px;
    height: 18px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #14a077, #0e7355);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    max-width: 42rem;
    margin: 0 auto 3rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.hero p strong {
    color: var(--primary-500);
    font-weight: 600;
}

/* ================================
   🔍 SEARCH BOX COM GLASS MORPHISM
================================= */
.search-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin: 3rem auto;
    max-width: 64rem;
    position: relative;
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 1.3fr auto;
    gap: 1rem;
    align-items: center;
}

.input-group {
    position: relative;
}

.search-box input,
.search-box select {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    font-size: 1.1rem;
    border: 2px solid rgba(243, 244, 246, 0.8);
    border-radius: 1rem;
    background: rgba(249, 250, 251, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    font-family: inherit;
}

.search-box input:focus,
.search-box select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(20, 160, 119, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.search-box input::placeholder {
    color: var(--gray-400);
}

.input-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #14a077;
    width: 22px;
    height: 22px;
    z-index: 5;
    stroke-width: 2.5;
}

.search-btn {
    background: #14a077;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 1rem;
    padding: 1.5rem 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(20, 160, 119, 0.3);
}

.search-btn:hover {
    background: #0e7355;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(20, 160, 119, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

/* ================================
   🎨 ANIMAÇÕES ORGÂNICAS
================================= */
@keyframes orb-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-10px) translateX(5px) scale(1.02);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) translateX(10px) scale(1.05);
        opacity: 1;
    }
    75% { 
        transform: translateY(-8px) translateX(7px) scale(1.03);
        opacity: 0.9;
    }
}

/* ================================
   📱 RESPONSIVO PARA HERO
================================= */
@media (max-width: 640px) {
    .hero {
        padding: 2rem 0 1rem 0;
    }
    
    .search-box {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-box input,
    .search-box select {
        padding: 1.25rem 1.25rem 1.25rem 3.5rem;
        font-size: 1rem;
    }
    
    .input-icon {
        width: 20px;
        height: 20px;
        left: 1.25rem;
    }
    
    .search-btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    /* Orbs menores no mobile */
    .hero::before {
        width: 80px;
        height: 80px;
    }
    
    .hero::after {
        width: 60px;
        height: 60px;
    }
    
    .orb-extra {
        width: 40px;
        height: 40px;
    }
    
    .orb-extra-2 {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .search-form {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .search-btn {
        grid-column: 1 / -1;
    }
}

/* ================================
   ⚡ LOADING STATES PARA BUSCA
================================= */
.loading {
    position: relative;
    color: transparent !important;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================
   📧 FOOTER (se necessário)
================================= */
footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-500);
}

footer .copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    margin-top: 2rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ================================
   NOVO LAYOUT HOMEPAGE - VAGA IDEAL
================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    margin-bottom: 3.5rem;
}
section {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #10b981, #14a077);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.search-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.input-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6b7280;
}

.search-box input,
.search-box select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    background: white;
    color: #1f2937;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: #9ca3af;
}

.search-box input:focus,
.search-box select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.stats-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #14a077);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 1.125rem;
}

.jobs-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.jobs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.job-card:hover::before {
    transform: translateX(0);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #10b981;
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.job-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-content {
    flex: 1;
}

.job-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
    cursor: pointer;
    line-height: 1.3;
}

.job-title:hover {
    color: #10b981;
}

.job-title a {
    text-decoration: none;
    color: inherit;
}

.job-company {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.job-location-icon {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.job-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.job-salary {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.job-salary-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-salary-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: #10b981;
}

.job-posted {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
}

.cities-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cities-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cities-content {
    position: relative;
    z-index: 2;
}

.cities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cities-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cities-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    color: white;
}

.cities-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.city-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    position: relative;
}

.city-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(16, 185, 129, 0.5);
}

.city-card:hover .city-overlay {
    opacity: 0.4;
}

.city-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

/* Imagem de fundo da cidade */
.city-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay colorido SUTIL apenas sobre imagens */
.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Fallback com gradiente quando não há imagem */
.city-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    text-transform: capitalize;
    position: relative;
}

.gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.city-info {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.city-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #14a077);
    border-radius: 2px;
}

/* ================================
   🎨 OVERLAY COLORIDO SUTIL POR CIDADE  
================================= */

/* Overlays SUTIS apenas sobre imagens reais das cidades */
.city-card[data-city="curitiba"] .city-overlay { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(109, 40, 217, 0.25)); 
}
.city-card[data-city="sao-paulo"] .city-overlay { 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(219, 39, 119, 0.25)); 
}
.city-card[data-city="goiania"] .city-overlay { 
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(14, 165, 233, 0.25)); 
}
.city-card[data-city="rio-de-janeiro"] .city-overlay { 
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(22, 163, 74, 0.25)); 
}
.city-card[data-city="belo-horizonte"] .city-overlay { 
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.25), rgba(249, 115, 22, 0.25)); 
}
.city-card[data-city="salvador"] .city-overlay { 
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.25), rgba(225, 29, 72, 0.25)); 
}
.city-card[data-city="fortaleza"] .city-overlay { 
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.25)); 
}
.city-card[data-city="recife"] .city-overlay { 
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(79, 70, 229, 0.25)); 
}
.city-card[data-city="manaus"] .city-overlay { 
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.25), rgba(101, 163, 13, 0.25)); 
}
.city-card[data-city="brasilia"] .city-overlay { 
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(147, 51, 234, 0.25)); 
}
.city-card[data-city="porto-alegre"] .city-overlay { 
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.25), rgba(13, 148, 136, 0.25)); 
}
.city-card[data-city="natal"] .city-overlay { 
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(217, 119, 6, 0.25)); 
}

/* Fallback para cidades sem cor específica */
.city-card:not([data-city*="curitiba"]):not([data-city*="sao-paulo"]):not([data-city*="goiania"]):not([data-city*="rio-de-janeiro"]):not([data-city*="belo-horizonte"]):not([data-city*="salvador"]):not([data-city*="fortaleza"]):not([data-city*="recife"]):not([data-city*="manaus"]):not([data-city*="brasilia"]):not([data-city*="porto-alegre"]):not([data-city*="natal"]) .city-overlay {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.25), rgba(71, 85, 105, 0.25));
}

/* ================================
   📝 TEXTO ORIGINAL RESTAURADO
================================= */

.cities-section .city-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-transform: capitalize;
    color: #ffffff !important;
}
    
.city-count {
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
    
.categories-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #e2e8f0;
    }
    
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
    }
    
.category-card:hover {
    border-color: #10b981;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.18);
    transform: translateY(-8px) scale(1.02);
    }
    
.category-card .dynamic-overlay {
    display: none !important;
}

.category-card:hover .dynamic-overlay {
    opacity: 0 !important;
    }
    
    .category-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    }
    
    .category-icon {
    width: 32px;
    height: 32px;
    }
    
.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    }
    
.category-count {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    }
    
.category-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
    }

.category-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(4px);
    }
    
.whatsapp-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    position: relative;
    overflow: hidden;
    }
    
.whatsapp-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.whatsapp-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
    }
    
.whatsapp-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
.whatsapp-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	color: white;
    }
    
.whatsapp-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    }
    
.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #059669;
    padding: 1.25rem 2.5rem;
    border-radius: 3rem;
    font-weight: 800;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(-10px) rotate(-2deg); }
    }
    
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Duplicação removida - usando animação consolidada no topo */

/* Duplicação removida - usando botão consolidado abaixo */

.view-all-btn {
    margin-top: 3rem;
    text-align: center;
    }
    
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        gap: 1rem;
    }
    .input-group {
        min-width: 100%;
    }
    .jobs-grid,
    .cities-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
}
}

/* Sobrescrever espaçamento global do tema pai */
.page-header,
.sidebar .widget,
.site-main > * {
    margin-bottom: 0 !important;
}

/* ================================
   📄 SINGLE JOB PAGE STYLES (MODAL VERSION)
================================= */

/* === Background da Página === */
.single-vaga {
    background-color: #f8fafc;
    min-height: 100vh;
}

/* === Container e Layout Base === */
.single-vaga-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* === Main Content === */
.single-vaga-main-content {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 1.5rem;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.single-vaga-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

/* === Job Header === */
.single-vaga-job-header {
    padding: 1.5rem 1.5rem 0em 1.5rem;
    border-bottom: 1px solid rgba(243, 244, 246, 0.8);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, transparent 100%);
    position: relative;
}

.single-vaga-job-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.375rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.single-vaga-job-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.single-vaga-job-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.single-vaga-job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.single-vaga-job-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.875rem;
}

.single-vaga-job-posted {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.single-vaga-location-icon, .single-vaga-clock-icon {
    width: 14px;
    height: 14px;
    color: #10b981;
}

/* === Job Content === */
.single-vaga-job-content {
    padding: 2rem 1.5rem 2rem;
}

.single-vaga-section {
    margin-bottom: 2rem;
}

.single-vaga-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-vaga-section-icon {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.single-vaga-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.single-vaga-description strong {
    color: #111827;
    font-weight: 600;
}

.single-vaga-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.single-vaga-description li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* === Contact Section === */
.single-vaga-contact-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.single-vaga-contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

.single-vaga-contact-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.single-vaga-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* === Contact Button === */
.single-vaga-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.single-vaga-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.single-vaga-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.single-vaga-contact-btn:hover::before {
    left: 100%;
}

/* === Modal Styles === */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.contact-modal-overlay.active .contact-modal {
    transform: scale(1) translateY(0);
}

.contact-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.modal-header h2 {
    color: #e2e8f0;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #e2e8f0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 0.75rem;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
}

.method-item:hover {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(15, 23, 42, 0.8);
}

.method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.method-details {
    flex: 1;
}

.method-details h4 {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.method-details span {
    color: #94a3b8;
    font-size: 0.875rem;
    word-break: break-all;
}

.copy-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.copy-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.single-vaga-no-contact {
    text-align: center;
    padding: 1rem;
    color: #6b7280;
    font-style: italic;
}

/* === Related Jobs === */
.single-vaga-related-jobs {
    margin-top: 2rem;
}

.single-vaga-related-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
    position: relative;
    padding-bottom: 0.5rem;
}

.single-vaga-related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

.single-vaga-related-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.single-vaga-related-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    overflow: hidden;
}

/* Bordinha verde no topo dos cards */
.single-vaga-related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-vaga-related-card:hover::before {
    opacity: 1;
}

.single-vaga-related-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

/* === Related Card Header === */
.single-vaga-related-card-header {
    margin-bottom: 0.75rem;
}

.single-vaga-related-card-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
}

.single-vaga-related-card-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
    font-size: 1rem;
}

.single-vaga-related-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.single-vaga-related-card-salary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.single-vaga-related-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.single-vaga-related-card-posted {
    color: #9ca3af;
    font-size: 0.75rem;
    text-align: right;
}

.single-vaga-location-icon-small {
    width: 14px;
    height: 14px;
}

/* === Desktop Styles === */
@media (min-width: 768px) {
    .single-vaga-container {
        padding: 2rem 1rem;
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 2rem;
    }
    
    .single-vaga-job-title {
        font-size: 2.25rem;
    }
    
    .single-vaga-job-header {
        padding: 2rem 1.5rem 0em 1.5rem;
    }
    
    .single-vaga-job-meta {
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .single-vaga-related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .single-vaga-related-card {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .single-vaga-job-title {
        font-size: 2.5rem;
    }
    
    .single-vaga-main-content {
        border-radius: 1rem;
    }
    
    .single-vaga-related-card {
        border-radius: 1rem;
    }
}

/* === Modal Responsive === */
@media (max-width: 640px) {
    .single-vaga-contact-section {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .contact-modal {
        padding: 1.5rem;
        margin: 1rem;
        max-width: none;
        width: calc(100% - 2rem);
    }
    
    .method-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .method-details {
        text-align: center;
    }
}

/* ================================
   🎨 SEARCH RESULTS STYLES
   ================================ */

.search-results-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e2e8f0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.search-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.search-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.search-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.search-box-small {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 780px;
    margin: 0 auto;
    padding: 1.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-group {
    position: relative;
    flex: 1;
    min-width: 240px;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #94a3b8;
    pointer-events: none;
    z-index: 2;
    transition: color 0.3s ease;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #f1f5f9;
    border-radius: 1rem;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

.search-btn-small {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.search-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669, #047857);
}

.search-btn-small:active {
    transform: translateY(0);
}

.search-results-section {
    padding: 3rem 0;
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.count-number {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
}

.count-text {
    font-size: 1rem;
    color: #6b7280;
}

.results-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.remove-filter {
    color: #6b7280;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.25rem;
    padding: 0 0.25rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.remove-filter:hover {
    background: #e5e7eb;
    color: #374151;
}

.clear-all-filters {
    color: #ef4444;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.clear-all-filters:hover {
    background: #fef2f2;
}

/* Search Jobs Grid - Namespaced to avoid conflicts */
.search-results-section .jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.search-results-section .job-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-results-section .job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.search-results-section .job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.search-results-section .job-badge {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    text-transform: lowercase;
}

.search-results-section .job-content {
    flex: 1;
}

.search-results-section .job-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.search-results-section .job-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-results-section .job-title a:hover {
    color: #10b981;
}

.search-results-section .job-company {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.search-results-section .job-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.search-results-section .job-location-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.search-results-section .job-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.search-results-section .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.search-results-section .job-salary {
    display: flex;
    flex-direction: column;
}

.search-results-section .job-salary-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.search-results-section .job-salary-value {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

.search-results-section .job-posted {
    font-size: 0.875rem;
    color: #6b7280;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.no-results-icon {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.no-results-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.no-results-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.no-results-suggestions {
    text-align: left;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.no-results-suggestions h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results-suggestions li {
    color: #6b7280;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.no-results-suggestions li:before {
    content: "•";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.no-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-1px);
}

.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.pagination-nav .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.pagination-nav .page-numbers:hover,
.pagination-nav .page-numbers.current {
    background: #10b981;
    color: white;
    transform: translateY(-1px);
}

.quick-categories {
    background: #f8fafc;
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
}

.quick-categories-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.quick-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.quick-category {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.quick-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.quick-category-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-category-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.quick-category-name {
    font-weight: 600;
    flex: 1;
}

.quick-category-count {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ================================
   📱 RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .search-results-header {
        padding: 2rem 0 1.5rem;
    }
    
    .search-box-small {
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .input-group {
        min-width: auto;
    }
    
    .results-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .results-filters {
        width: 100%;
    }
    
    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .search-results-section .jobs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .search-title {
        font-size: 1.875rem;
    }
    
    .count-number {
        font-size: 1.5rem;
    }
    
    .quick-category {
        padding: 0.75rem;
    }
    
    .search-results-section .job-card {
        padding: 1rem;
    }
}

/* ================================
   📋 ARCHIVE VAGA STYLES
   ================================ */

.archive-vaga-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e2e8f0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.archive-vaga-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.archive-vaga-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.archive-vaga-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 1rem;
}

.archive-vaga-gradient-text {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.archive-vaga-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* ================================
   🔍 ARCHIVE VAGA FILTERS SECTION
   ================================ */

.archive-vaga-filters-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.archive-vaga-filters-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: visible;
}

.archive-vaga-filters-left {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.archive-vaga-filter-group {
    position: relative;
}

.archive-vaga-filter-select {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    min-width: 180px;
    height: 48px;
    padding: 0 40px 0 20px;
}

.archive-vaga-filter-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.archive-vaga-filter-group::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #9ca3af;
    pointer-events: none;
}

.archive-vaga-results-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.archive-vaga-count-highlight {
    color: #10b981;
    font-weight: 700;
}

/* ================================
   📋 ARCHIVE VAGA JOBS GRID
   ================================ */

.archive-vaga-jobs-section {
    padding: 3rem 0;
}

.archive-vaga-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.archive-vaga-job-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.archive-vaga-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.archive-vaga-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.archive-vaga-job-badge {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    text-transform: lowercase;
}

/* Categoria badges com cores diferentes */
.archive-vaga-job-badge.administracao {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.archive-vaga-job-badge.saude {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.archive-vaga-job-badge.logistica {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
}

.archive-vaga-job-badge.comercial {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.archive-vaga-job-badge.servicos-gerais {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.archive-vaga-job-badge.jovem-aprendiz-e-estagio {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.archive-vaga-job-badge.gastronomia {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.archive-vaga-job-badge.financeiro {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.archive-vaga-job-content {
    flex: 1;
}

.archive-vaga-job-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.archive-vaga-job-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.archive-vaga-job-title a:hover {
    color: #10b981;
}

.archive-vaga-job-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.archive-vaga-job-location-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.archive-vaga-job-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.archive-vaga-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.archive-vaga-job-salary {
    display: flex;
    flex-direction: column;
}

.archive-vaga-job-salary-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.archive-vaga-job-salary-value {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

.archive-vaga-job-posted {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ================================
   📄 ARCHIVE VAGA PAGINATION
   ================================ */

.archive-vaga-pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.archive-vaga-pagination-nav .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.archive-vaga-pagination-nav .page-numbers:hover,
.archive-vaga-pagination-nav .page-numbers.current {
    background: #10b981;
    color: white;
    transform: translateY(-1px);
}

/* ================================
   📄 ARCHIVE VAGA NO RESULTS
   ================================ */

.archive-vaga-no-results {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.archive-vaga-no-results svg {
    margin: 0 auto 1rem;
    color: #9ca3af;
}

.archive-vaga-no-results h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #374151;
}

.archive-vaga-no-results p {
    margin-bottom: 1.5rem;
}

.archive-vaga-reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.archive-vaga-reset-filters:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* ================================
   📱 ARCHIVE VAGA RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .archive-vaga-header {
        padding: 2rem 0 1.5rem;
    }
    
    .archive-vaga-filters-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .archive-vaga-filters-left {
        justify-content: center;
    }
    
    .archive-vaga-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-vaga-pagination-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .archive-vaga-title {
        font-size: 1.875rem;
    }
    
    .archive-vaga-job-card {
        padding: 1rem;
    }
    
    .archive-vaga-filter-select {
        min-width: 180px;
        width: 100%;
        font-size: 0.85rem;
    }
}

/* ================================
   ⚠️ VAGA EXPIRADA STYLES
================================= */

.vaga-expirada-banner-wrapper {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
}

.vaga-expirada-banner {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 20px;
    animation: slideDown 0.5s ease-out;
}

.vaga-expirada-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vaga-expirada-icon {
    color: #dc2626;
    flex-shrink: 0;
}

.vaga-expirada-text {
    flex: 1;
    min-width: 200px;
}

.vaga-expirada-text h3 {
    color: #991b1b;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.vaga-expirada-text p {
    color: #7f1d1d;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.vaga-expirada-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-ver-outras-vagas {
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-ver-outras-vagas:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    color: white;
}

/* Botão desabilitado para vagas expiradas */
.single-vaga-contact-btn.disabled {
    background: #6b7280;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: none;
    text-shadow: none;
}

.single-vaga-contact-btn.disabled:hover {
    background: #4b5563;
    color: white;
    text-decoration: none;
    box-shadow: none;
    text-shadow: none;
}

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

@media (max-width: 768px) {
    .vaga-expirada-banner-wrapper {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .vaga-expirada-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .vaga-expirada-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .btn-ver-outras-vagas {
        width: 100%;
        text-align: center;
        min-width: 200px;
    }
    
    .single-vaga-contact-btn.disabled {
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* ================================
   🔍 ARCHIVE SEARCH FUNCTIONALITY
================================= */

/* Ajustes de altura para filtros das taxonomias */
.taxonomy-categoria-filter-select,
.taxonomy-cidade-filter-select {
    height: 48px;
    padding: 0 40px 0 20px;
    min-width: 180px;
}

/* Ajustes de posição das setas dos filtros das taxonomias */
.taxonomy-categoria-filter-group::after,
.taxonomy-cidade-filter-group::after {
    right: 1rem;
}
.archive-vaga-search-group {
    flex: 2;
    min-width: 300px;
}

.archive-vaga-search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.3s ease;
    height: 48px;
}

.archive-vaga-search-container:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.archive-vaga-search-container.archive-vaga-search-active {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.02);
}

.archive-vaga-search-icon {
    color: #94a3b8;
    flex-shrink: 0;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.archive-vaga-search-container:focus-within .archive-vaga-search-icon,
.archive-vaga-search-container.archive-vaga-search-active .archive-vaga-search-icon {
    color: #10b981;
}

.archive-vaga-search-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    padding: 0;
    height: 100%;
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.archive-vaga-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.archive-vaga-search-clear {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    flex-shrink: 0;
}

.archive-vaga-search-clear:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.archive-vaga-search-term {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    margin-left: 8px;
}

/* Melhorar o layout responsivo dos filtros com busca */
.archive-vaga-filters-left {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .archive-vaga-search-group {
        flex: 1;
        min-width: 250px;
        order: -1; /* Busca fica no topo em mobile */
        width: 100%;
    }
    
    .archive-vaga-search-container {
        min-width: 100%;
    }
    
    .archive-vaga-search-input::placeholder {
        font-size: 13px;
    }
    
    .archive-vaga-filters-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .archive-vaga-filter-group {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .archive-vaga-search-group {
        min-width: 100%;
    }
    
    .archive-vaga-search-input::placeholder {
        content: "Buscar vagas...";
    }
}

/* ================================
   📂 TAXONOMY CATEGORIA STYLES
   ================================ */

.taxonomy-categoria-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e2e8f0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.taxonomy-categoria-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.taxonomy-categoria-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.taxonomy-categoria-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 1rem;
}

.taxonomy-categoria-gradient-text {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taxonomy-categoria-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.taxonomy-categoria-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.taxonomy-categoria-stat {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.taxonomy-categoria-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.taxonomy-categoria-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ================================
   🔍 TAXONOMY CATEGORIA FILTERS SECTION
   ================================ */

.taxonomy-categoria-filters-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.taxonomy-categoria-filters-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.taxonomy-categoria-filters-left {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.taxonomy-categoria-filter-group {
    position: relative;
}

.taxonomy-categoria-filter-select {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    min-width: 150px;
}

.taxonomy-categoria-filter-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.taxonomy-categoria-filter-group::after {
    content: "";
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #9ca3af;
    pointer-events: none;
}

.taxonomy-categoria-results-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.taxonomy-categoria-count-highlight {
    color: #10b981;
    font-weight: 700;
}

/* ================================
   📋 TAXONOMY CATEGORIA JOBS GRID
   ================================ */

.taxonomy-categoria-jobs-section {
    padding: 3rem 0;
}

.taxonomy-categoria-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.taxonomy-categoria-job-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.taxonomy-categoria-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.taxonomy-categoria-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.taxonomy-categoria-job-badge {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    text-transform: lowercase;
}

/* Categoria badges com cores diferentes */
.taxonomy-categoria-job-badge.administracao {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.taxonomy-categoria-job-badge.saude {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.taxonomy-categoria-job-badge.logistica {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
}

.taxonomy-categoria-job-badge.comercial {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.taxonomy-categoria-job-badge.servicos-gerais {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.taxonomy-categoria-job-badge.jovem-aprendiz-e-estagio {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.taxonomy-categoria-job-badge.gastronomia {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.taxonomy-categoria-job-badge.financeiro {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.taxonomy-categoria-job-content {
    flex: 1;
}

.taxonomy-categoria-job-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.taxonomy-categoria-job-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.taxonomy-categoria-job-title a:hover {
    color: #10b981;
}

.taxonomy-categoria-job-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.taxonomy-categoria-job-location-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.taxonomy-categoria-job-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.taxonomy-categoria-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.taxonomy-categoria-job-salary {
    display: flex;
    flex-direction: column;
}

.taxonomy-categoria-job-salary-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.taxonomy-categoria-job-salary-value {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

.taxonomy-categoria-job-posted {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ================================
   📄 TAXONOMY CATEGORIA PAGINATION
   ================================ */

.taxonomy-categoria-pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.taxonomy-categoria-pagination-nav .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.taxonomy-categoria-pagination-nav .page-numbers:hover,
.taxonomy-categoria-pagination-nav .page-numbers.current {
    background: #10b981;
    color: white;
    transform: translateY(-1px);
}

/* ================================
   📄 TAXONOMY CATEGORIA NO RESULTS
   ================================ */

.taxonomy-categoria-no-results {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.taxonomy-categoria-no-results svg {
    margin: 0 auto 1rem;
    color: #9ca3af;
}

.taxonomy-categoria-no-results h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #374151;
}

.taxonomy-categoria-no-results p {
    margin-bottom: 1.5rem;
}

.taxonomy-categoria-reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.taxonomy-categoria-reset-filters:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* ================================
   📱 TAXONOMY CATEGORIA RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .taxonomy-categoria-header {
        padding: 2rem 0 1.5rem;
    }
    
    .taxonomy-categoria-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .taxonomy-categoria-stat {
        padding: 0.75rem 1.5rem;
    }
    
    .taxonomy-categoria-filters-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .taxonomy-categoria-filters-left {
        justify-content: center;
    }
    
    .taxonomy-categoria-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .taxonomy-categoria-pagination-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .taxonomy-categoria-title {
        font-size: 1.875rem;
    }
    
    .taxonomy-categoria-job-card {
        padding: 1rem;
    }
    
    .taxonomy-categoria-filter-select {
        min-width: 180px;
        width: 100%;
        font-size: 0.85rem;
    }
    
    .taxonomy-categoria-stat-number {
        font-size: 1.5rem;
    }
}

/* ================================
   🏙️ TAXONOMY CIDADE STYLES
   ================================ */

.taxonomy-cidade-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e2e8f0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.taxonomy-cidade-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.taxonomy-cidade-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.taxonomy-cidade-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 1rem;
}

.taxonomy-cidade-gradient-text {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taxonomy-cidade-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.taxonomy-cidade-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.taxonomy-cidade-stat {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.taxonomy-cidade-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.taxonomy-cidade-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ================================
   🔍 TAXONOMY CIDADE FILTERS SECTION
   ================================ */

.taxonomy-cidade-filters-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.taxonomy-cidade-filters-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.taxonomy-cidade-filters-left {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.taxonomy-cidade-filter-group {
    position: relative;
}

.taxonomy-cidade-filter-select {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    min-width: 150px;
}

.taxonomy-cidade-filter-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.taxonomy-cidade-filter-group::after {
    content: "";
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #9ca3af;
    pointer-events: none;
}

.taxonomy-cidade-results-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.taxonomy-cidade-count-highlight {
    color: #10b981;
    font-weight: 700;
}

/* ================================
   📋 TAXONOMY CIDADE JOBS GRID
   ================================ */

.taxonomy-cidade-jobs-section {
    padding: 3rem 0;
}

.taxonomy-cidade-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.taxonomy-cidade-job-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.taxonomy-cidade-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.taxonomy-cidade-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.taxonomy-cidade-job-badge {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    text-transform: lowercase;
}

/* Categoria badges com cores diferentes */
.taxonomy-cidade-job-badge.administracao {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.taxonomy-cidade-job-badge.saude {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.taxonomy-cidade-job-badge.logistica {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
}

.taxonomy-cidade-job-badge.comercial {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.taxonomy-cidade-job-badge.servicos-gerais {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.taxonomy-cidade-job-badge.jovem-aprendiz-e-estagio {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.taxonomy-cidade-job-badge.gastronomia {
    background: rgba(20, 160, 119, 0.1);
    color: #14a077;
}

.taxonomy-cidade-job-badge.financeiro {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.taxonomy-cidade-job-content {
    flex: 1;
}

.taxonomy-cidade-job-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.taxonomy-cidade-job-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.taxonomy-cidade-job-title a:hover {
    color: #10b981;
}

.taxonomy-cidade-job-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.taxonomy-cidade-job-location-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.taxonomy-cidade-job-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.taxonomy-cidade-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.taxonomy-cidade-job-salary {
    display: flex;
    flex-direction: column;
}

.taxonomy-cidade-job-salary-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.taxonomy-cidade-job-salary-value {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

.taxonomy-cidade-job-posted {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ================================
   📄 TAXONOMY CIDADE PAGINATION
   ================================ */

.taxonomy-cidade-pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.taxonomy-cidade-pagination-nav .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.taxonomy-cidade-pagination-nav .page-numbers:hover,
.taxonomy-cidade-pagination-nav .page-numbers.current {
    background: #10b981;
    color: white;
    transform: translateY(-1px);
}

/* ================================
   📄 TAXONOMY CIDADE NO RESULTS
   ================================ */

.taxonomy-cidade-no-results {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.taxonomy-cidade-no-results svg {
    margin: 0 auto 1rem;
    color: #9ca3af;
}

.taxonomy-cidade-no-results h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #374151;
}

.taxonomy-cidade-no-results p {
    margin-bottom: 1.5rem;
}

.taxonomy-cidade-reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.taxonomy-cidade-reset-filters:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* ================================
   📱 TAXONOMY CIDADE RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .taxonomy-cidade-header {
        padding: 2rem 0 1.5rem;
    }
    
    .taxonomy-cidade-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .taxonomy-cidade-stat {
        padding: 0.75rem 1.5rem;
    }
    
    .taxonomy-cidade-filters-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .taxonomy-cidade-filters-left {
        justify-content: center;
    }
    
    .taxonomy-cidade-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .taxonomy-cidade-pagination-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .taxonomy-cidade-title {
        font-size: 1.875rem;
    }
    
    .taxonomy-cidade-job-card {
        padding: 1rem;
    }
    
    .taxonomy-cidade-filter-select {
        min-width: 180px;
        width: 100%;
        font-size: 0.85rem;
    }
    
    .taxonomy-cidade-stat-number {
        font-size: 1.5rem;
    }
}

/* ================================
   📱 PÁGINA GRUPOS WHATSAPP
================================= */

/* Base styles */
.grupos-whatsapp-page * {
    box-sizing: border-box;
}

.grupos-whatsapp-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.grupos-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.grupos-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s ease-in-out infinite;
}

.grupos-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.grupos-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: white;
}

.grupos-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Search Section */
.grupos-search-section {
    background: linear-gradient(135deg, #f7f8f9 0%, #ffffff 100%);
    padding: 2rem 0;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.grupos-search-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grupos-search-section .grupos-search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.grupos-search-section .grupos-search-input {
    width: 100% !important;
    padding: 1rem 1rem 1rem 3rem !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    background: white !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    outline: none !important;
    font-family: inherit !important;
}

.grupos-search-section .grupos-search-input:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

.grupos-search-section .grupos-search-input::placeholder {
    color: #94a3b8 !important;
}

.grupos-search-section .grupos-search-icon {
    position: absolute !important;
    left: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    color: #64748b !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Cities Section */
.grupos-cities-section {
    background: linear-gradient(135deg, #f7f8f9 0%, #ffffff 100%);
    padding: 2rem 0 4rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.grupos-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.grupos-city-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.grupos-city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

.grupos-city-flag {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.grupos-city-info {
    flex: 1;
}

.grupos-city-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.grupos-city-count {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.grupos-whatsapp-btn {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 2px solid #10b981;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grupos-whatsapp-btn:hover {
    background: #10b981;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.grupos-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.grupos-whatsapp-btn:hover::before {
    left: 100%;
}

.grupos-whatsapp-disabled {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
    border-color: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.7;
}

.grupos-whatsapp-disabled:hover {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
    transform: none;
    box-shadow: none;
}

/* Popular Cards */
.grupos-city-card.popular {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.02));
}

.grupos-popular-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: -8px;
    right: 1rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* No Cities State */
.grupos-no-cities {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.grupos-no-cities-icon {
    margin: 0 auto 1.5rem;
    color: #cbd5e1;
}

.grupos-no-cities h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem;
}

.grupos-no-cities p {
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer Section */
.grupos-footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.grupos-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    z-index: 1;
}

.grupos-footer-content {
    position: relative;
    z-index: 2;
}

.grupos-footer-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.grupos-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.grupos-footer p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.grupos-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.grupos-contact-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.grupos-contact-email {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.grupos-contact-email:hover {
    color: #34d399;
    transform: scale(1.05);
}

.grupos-contact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.grupos-response-time {
    font-size: 0.8rem;
    color: #34d399;
    margin-top: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grupos-header h1 {
        font-size: 2rem;
    }
    
    .grupos-header p {
        font-size: 1rem;
    }
    
    .grupos-cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grupos-city-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .grupos-city-flag {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .grupos-search-section .grupos-search-input {
        padding: 1rem 1rem 1rem 3rem !important;
        font-size: 1rem !important;
    }
    
    .grupos-search-section .grupos-search-icon {
        width: 20px !important;
        height: 20px !important;
        left: 1rem !important;
    }
    
    .grupos-footer {
        padding: 2rem 0;
    }
    
    .grupos-contact-card {
        margin: 0 1rem;
    }
}

/* Duplicação removida - usando animação consolidada no topo */

/* ==========================================================================
   PÁGINA VAGAS ABERTAS - TEMPLATE CLEAN
   ========================================================================== */

/* Header da Página */
.vagas-abertas-header {
    background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
    color: white;
    padding: 1rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.vagas-abertas-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), 
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.vagas-abertas-header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vagas-abertas-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vagas-abertas-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.vagas-abertas-gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #d1fae5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vagas-abertas-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Conteúdo Principal */
.vagas-abertas-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Vaga em Destaque */
.vaga-destaque-section {
    margin: -2rem 0 4rem;
    position: relative;
    z-index: 2;
}

.vaga-destaque-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.vaga-destaque-header {
    margin-bottom: 1.5rem;
}

.vaga-destaque-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vaga-destaque-titulo {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vaga-destaque-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.vaga-destaque-empresa {
    font-weight: 600;
    color: #374151;
    font-size: 1.1rem;
}

.vaga-destaque-cidade {
    color: #6b7280;
    font-size: 1rem;
}

.vaga-destaque-descricao {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.vaga-destaque-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.vaga-destaque-salario .label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vaga-destaque-salario .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
}

.btn-candidatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-candidatar:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Seção Outras Vagas */
.outras-vagas-section {
    margin: 4rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: white;
    padding: 4rem 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.outras-vagas-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Grid de Vagas */
.vagas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Cards de Vaga - Estilo Similar à Homepage */
.vaga-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vaga-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.vaga-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #10b981;
}

.vaga-card:hover::before {
    transform: translateX(0);
}

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

.vaga-card-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vaga-card-content {
    flex: 1;
}

.vaga-card-titulo {
    font-size: 1.375rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
    cursor: pointer;
    line-height: 1.3;
}

.vaga-card-titulo:hover {
    color: #10b981;
}

.vaga-card-titulo a {
    text-decoration: none;
    color: inherit;
}

.vaga-card-empresa {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.vaga-card-cidade {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.vaga-card-cidade svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.vaga-card-descricao {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.vaga-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.vaga-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.vaga-card-salario {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vaga-card-salario .label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vaga-card-salario .value {
    font-size: 1.125rem;
    font-weight: 800;
    color: #10b981;
}

.vaga-card-data {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-ver-vaga {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.btn-ver-vaga:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Ver Todas as Vagas */
.ver-todas-container {
    text-align: center;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.btn-ver-todas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-ver-todas:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

/* No Vagas */
.no-vagas {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================
   📱 OTIMIZAÇÕES MOBILE - VAGA DESTAQUE (PRIMEIRA DOBRA)
   ================================ */

@media (max-width: 768px) {
    .vaga-destaque-header {
        display: none;
    }
    
    .vaga-destaque-badge {
        display: none;
    }
    
    .vaga-destaque-titulo {
        font-size: 1.3rem;
    }
}

/* ================================
   ✨ SEÇÃO "COMO FUNCIONA" - LAYOUT CIRCULAR ELEGANTE
   ================================ */

/* Responsive Design */
@media (min-width: 768px) {
    .vagas-abertas-header {
        padding: 2rem 0 4rem;
    }
    
    .vagas-abertas-title {
        font-size: 3.3rem;
    }
    
    .vagas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .vaga-destaque-card {
        padding: 3rem;
    }
    
    .vaga-destaque-footer {
        flex-wrap: nowrap;
    }
    
    .vaga-card-header {
        padding: 0;
    }
    
    .vaga-card-content {
        padding: 0;
    }
    
    .vaga-card-titulo {
        font-size: 1.25rem;
    }
    
    .vaga-card-empresa {
        font-size: 1rem;
    }
    
    .vaga-card-cidade {
        font-size: 0.9rem;
    }
    
    .vaga-card-descricao {
        font-size: 0.95rem;
    }
    
    .vaga-card-info {
        flex-wrap: nowrap;
    }
    
    .btn-ver-vaga {
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vagas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .vaga-destaque-titulo {
        font-size: 2.5rem;
    }
    
    .vaga-card-titulo {
        font-size: 1.1rem;
    }
    
    .vaga-card-footer {
        gap: 1.5rem;
    }
}

/* ================================
   🔧 MELHORIAS ESPECÍFICAS PARA FILTROS (ARCHIVE-VAGA)
   ================================ */

/* Garantir que os select boxes tenham largura suficiente para o conteúdo */
.archive-vaga-filter-select option {
    padding: 0.5rem;
    white-space: nowrap;
}

/* Prevenir overflow de texto */
.archive-vaga-filter-select {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* Ajuste responsivo específico para tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .archive-vaga-filter-select {
        min-width: 200px;
        max-width: 280px;
        font-size: 0.85rem;
    }
    
    .archive-vaga-filters-container {
        gap: 0.8rem;
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 380px) {
    .archive-vaga-filters-left {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .archive-vaga-filter-select {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        font-size: 0.85rem;
    }
}

/* ================================
   ✨ SEÇÃO "COMO FUNCIONA" - LAYOUT CIRCULAR ELEGANTE
   ================================ */

/* Seção principal com fundo sutil diferenciado */
.vagas-seo-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 4rem 0rem 4rem 0rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    /* Ocupa toda a largura da tela */
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Título principal */
.vagas-seo-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4rem;
    text-align: center;
}

/* Container interno para controlar largura máxima */
.vagas-seo-section .container,
.vagas-seo-section > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Lista de passos */
.vagas-seo-section ul {
    list-style: none;
    padding: 0rem 4rem 0rem 4rem;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

/* Layout circular - sem cards retangulares */
.vagas-seo-section li {
    flex: 1;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
    margin-bottom: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.vagas-seo-section li:hover {
    transform: translateY(-8px);
}

/* Círculo principal maior e mais destacado */
.vagas-seo-section .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14a077 0%, #0c6148 100%);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 2rem auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(20, 160, 119, 0.25);
    border: 4px solid #ffffff;
}

/* Efeito de hover no círculo */
.vagas-seo-section li:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(20, 160, 119, 0.4);
}

/* Título mais destacado */
.vagas-seo-section .step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Descrição mais elegante */
.vagas-seo-section .step-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    max-width: 280px;
    margin: 0 auto;
}

/* ================================
   ✨ SEÇÃO CTA "PRONTO PARA COMEÇAR?" - SEÇÃO INDEPENDENTE
   ================================ */

/* Nova seção CTA independente */
.cta-section {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    padding: 4rem 0;
    text-align: center;
    /* Ocupa toda a largura da tela */
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Container interno para o CTA */
.cta-section .container,
.cta-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.cta-section h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão seguindo estilo dos botões do site */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #14a077 0%, #0c6148 100%);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(20, 160, 119, 0.39);
}

.cta-button:hover {
    background: linear-gradient(135deg, #0c6148 0%, #14a077 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 160, 119, 0.4);
    color: #ffffff;
}

/* Ajustes básicos de espaçamento */
.outras-vagas-section {
    margin-bottom: 0;
}

/* Mobile Responsivo - Como Funciona */
@media (max-width: 768px) {
    .vagas-seo-section {
        padding: 3rem 0 2rem 0;
    }

    .vagas-seo-section .container,
    .vagas-seo-section > div {
        padding: 0 1rem;
    }

    .vagas-seo-section ul {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
    }

    .vagas-seo-section h2 {
        font-size: 2.125rem; /* 15% menor que 2.5rem */
        margin-bottom: 3rem;
    }

    .vagas-seo-section li {
        margin-bottom: 0;
        padding: 0;
    }

    .vagas-seo-section .step-number {
        width: 65px;
        height: 65px;
        font-size: 1.3rem; /* Proporcional ao tamanho menor */
        margin-bottom: 1.5rem;
    }

    .vagas-seo-section .step-title {
        font-size: 1.17rem; /* 15% menor que 1.375rem */
    }

    .vagas-seo-section .step-description {
        font-size: 0.85rem; /* 15% menor que 1rem */
        max-width: 250px;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section .container,
    .cta-section > * {
        padding: 0 1rem;
    }

    .cta-section h3 {
        font-size: 1.59rem; /* 15% menor que 1.875rem */
    }

    .cta-section p {
        font-size: 0.95rem; /* 15% menor que 1.125rem */
    }
}