.work-main {
    padding-top: 180px;
    min-height: 100vh;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.work-header {
    margin-bottom: 50px;
}

.work-header h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #481E9C;
    margin-bottom: 15px;
}

.work-header p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.jobs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.job-card {
    background-color: #DBDBDB;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #d4d4d4;
}

.job-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #481E9C;
    margin-bottom: 5px;
}

.job-tech {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: #6E549E;
    margin-bottom: 5px;
}

.job-location {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 25px;
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    display: inline-block;
    cursor: pointer;
}

.tag.semipresencial {
    background-color: #5BA64D;
}

.tag.presencial {
    background-color: #FF8A00;
}

.tag.clt {
    background-color: #0066FF;
}

.tag.estagio {
    background-color: #FF0000;
}

@media (max-width: 900px) {
    .jobs-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .jobs-container {
        grid-template-columns: 1fr;
    }

    .work-header h1 {
        font-size: 2.2rem;
    }
}

.slide-up {
    animation: slideUpFade 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}