/* --- Careers Page Specific Styles --- */
body {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
}

.careers-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/plantrosa.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.careers-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.job-detail-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Lato", sans-serif;
}

.job-container {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.job-tag {
    background: #385a42;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.job-header h2 {
    font-size: 2.5rem;
    color: #385a42;
    margin: 15px 0 5px 0;
}

.job-location {
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

.job-description h3 {
    color: #385a42;
    border-bottom: 2px solid #385a42;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 15px;
}

.job-description p,
.job-description li {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.job-description ul {
    padding-left: 20px;
}

.job-description li {
    margin-bottom: 10px;
}

.buyButton {
    background-color: transparent;
    color: #385a42;
    border: 2px solid #385a42;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: "Lato", sans-serif;
}

.buyButton:hover {
    background-color: #385a42;
    color: white;
}