@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* Variaveis */
:root{
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Nunito', sans-serif;
    --font-alternative: 'Open Sans', sans-serif;
    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0.05em;
    --letter-spacing-wide: 0.15em;
}
body {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-400);
    letter-spacing: var(--letter-spacing-normal);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content{
    flex: 1 0 auto;
}

.banner{
    width: 100%;
    height: 46rem;
    background-image: url('../images/banner.png');
    background-position: 0 -20rem;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content{
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 2rem;
}

.banner-title{
    color: #fff;
    font-size: 3rem;
    font-weight: var(--font-weight-700);
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.search-form{
    width: 100%;
}

.search-container{
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-input-group{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem;
    border-right: 1px solid #e0e0e0;
}

.search-label{
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
    font-weight: var(--font-weight-500);
    text-align: left;
}

.search-input{
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    font-family: var(--font-primary);
}

.search-input::placeholder{
    color: #999;
}

.search-select-group{
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-right: 1px solid #e0e0e0;
}

.search-select{
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 1rem 0.5rem;
    font-family: var(--font-primary);
    background: transparent;
    cursor: pointer;
    color: #333;
}

.search-button{
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0 2.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-600);
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-primary);
}

.search-button:hover{
    background: #0056b3;
}

@media (max-width: 768px){
    .banner{
        height: auto;
        min-height: 30rem;
    }
    
    .banner-title{
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .search-container{
        flex-direction: column;
    }
    
    .search-input-group,
    .search-select-group{
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .search-button{
        padding: 1rem;
    }
}

/* Recent Jobs Section */
.recent-jobs{
    padding: 4rem 0;
    background: #f8f9fa;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title{
    font-size: 2rem;
    font-weight: var(--font-weight-700);
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.jobs-list{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.job-item{
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;

.job-item-link{
    text-decoration: none;
    color: inherit;
    display: block;
}

.job-item-link:hover{
    text-decoration: none;
    color: inherit;
}
}

.job-item:hover{
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.job-company-logo{
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-company-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-info{
    flex: 1;
    min-width: 0;

.job-company{
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0.25rem 0 0 0;
}
}

.job-title{
    font-size: 1.25rem;
    font-weight: var(--font-weight-700);
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.job-title .badge{
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
}

.job-location{
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-location::before{
    content: '📍';
}

.badge{
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success{
    background: #28a745;
    color: #fff;
}

.job-currency{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.currency-badge{
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: var(--font-weight-600);
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.currency-dollar{
    background: #e7f5ff;
    color: #0066cc;
    border-color: #0066cc;
}

.currency-euro{
    background: #fff3e0;
    color: #e65100;
    border-color: #e65100;

.currency-real{
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #2e7d32;
}
}

.jobs-more{
    text-align: center;
}

.btn-show-more{
    background: #fff;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 0.9rem 3rem;
    font-size: 1rem;
    font-weight: var(--font-weight-600);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-show-more:hover{
    background: #007bff;
    color: #fff;
}

@media (max-width: 992px){
    .job-item{
        flex-wrap: wrap;
    }
    
    .job-currency{
        margin-left: 0;
        order: 3;
        width: 100%;
        justify-content: flex-end;
        margin-top: 1rem;
    }
}

@media (max-width: 768px){
    .recent-jobs{
        padding: 2rem 0;
    }
    
    .container{
        padding: 0 1rem;
    }
    
    .section-title{
        font-size: 1.5rem;
    }
    
    .job-item{
        padding: 1rem;
        gap: 1rem;
    }
    
    .job-company-logo{
        width: 60px;
        height: 60px;
    }
    
    .job-title{
        font-size: 1.1rem;
    }
    
    .job-location{
        font-size: 0.85rem;
    }
    
    .badge{
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .currency-badge{
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}