/* Estilos específicos para Careers - extraídos de careers_mock.html */

/* Cookie Banner - Removido, ahora se maneja en cookie-banner.css */

/* Job Application Section */
.job-application {
    width: 98%;
    margin: 0 auto;
    margin-top: 175px;
    margin-bottom: 50px;
    border-radius: 22px;
}
/* Careers Box */
.careers-box {
    width: 749px;
    height: 245px;
    background-color: #e8effc;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 67px;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 100px;
}

.careers-box img {
    width: 242px;
    height: 174px;
}

.careers-box span {
    color: #002266;
    font-size: 16px;
    width: 302px;
    font-weight: 400;
    line-height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .job-application {
        flex-direction: column;
        text-align: center;
    }
    
    .job-info {
        padding-right: 0;
    }
    
    .job-form {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .job-application {
        padding: 40px 20px;
    }
    
    .job-info h2 {
        font-size: 36px;
    }
    
    .job-form {
        padding: 30px 20px;
    }
    
    /* Cookie styles moved to cookie-banner.css */
    
    .careers-box {
        position: relative;
        margin: 20px auto;
        bottom: auto;
        right: auto;
    }
}

@media (max-width: 480px) {
    .job-info h2 {
        font-size: 28px;
    }
    
    .job-form {
        padding: 20px 15px;
    }
    
    .careers-box {
        max-width: 280px;
        padding: 15px;
    }
}
