/* Contenedor general */
.empleo-contenedor {
    padding: 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Columna izquierda */
.empleo-izquierda {
    max-width: 900px;
    width: 90%;
}

/* Logo + título */
.empleo-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.empleo-logo {
    height: 100px;
    margin-right: 20px;
}

.empleo-titulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.empleo-titulo .subtitulo {
    font-family: title, sans-serif;
    margin: 0;
    font-size: 32px;
    line-height: 1;
}

.empleo-titulo .titulo {
    font-family: title, sans-serif;
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}

/* Detalle en dos columnas */
.empleo-detalle {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.empleo-col {
    flex: 1;
}

.col-titulo {
    font-weight: bold;
    margin-bottom: 10px;
}

.empleo-col ul {
    font-size: 13px;
    padding-left: 20px;
    margin: 0;
}

/* Botones alineados */
.empleo-botones {
    display: flex;
    justify-content: center;
    /* <- centra horizontalmente */
    gap: 30%;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .empleo-detalle {
        flex-direction: column;
        gap: 20px;
    }

    .empleo-botones {
        flex-direction: column;
        align-items: center;
    }

    .empleo-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .empleo-logo {
        margin: 0 0 15px 0;
    }
}

.linea-roja-grande {
    width: 100%;
    height: 4px;
    background-color: #de2345;
    margin: 20px 0 40px 0;
    border-radius: 2px;
}

/* Estructura general */
.empleo-contenedor {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 5%;
    gap: 40px;
}

/* Columna izquierda: texto */
.empleo-izquierda {
    flex: 1;
    min-width: 300px;
    z-index: 2;
}

/* Columna derecha: imagen decorativa */
.empleo-derecha {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 500px;
}

.empleo-derecha {
    max-width: 252px;
    /* Ancho ajustado porque la imagen tiene márgenes transparentes laterales */
}

.empleo-imagen img.empleo-img-full {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Versión móvil: convertir la imagen en fondo */
@media screen and (max-width: 900px) {
    .empleo-contenedor {
        flex-direction: column;
        position: relative;
        background-image: url('/recursos/empleo/trabaja_con_nosotros.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .empleo-derecha {
        display: none;
    }

    .empleo-izquierda {
        background-color: rgba(255, 255, 255, 0.1);
        /* fondo semitransparente para mejorar legibilidad */
        padding: 20px;
        border-radius: 12px;
    }
}