.job-detalles {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease;
    padding: 20px;

}

.regreso {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 24px;
    color: #007bff;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
}

.cotenedor-imagen {
    flex: 2;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 20px;
}

.imagen-job {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: fadeInZoom 1s ease-out;
}

.contenedor-info {
    flex: 3;
    color: #333;
}

.title {
    color: #004080;
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.info {
    margin-bottom: 15px;
}

.info .label {
    font-weight: bold;
    font-size: 18px;
    color: #4b4b4b !important;
}

.desc {
    font-size: 16px;
    color: #777;
}

.responsabilidades {
    font-size: 15px;
    line-height: 1.6;
    color: #777;
}

.contacto {
    color: #007bff;
    text-decoration: underline;
    font-size: 16px;
}

@media (max-width: 600px) {
    .cotenedor-imagen .imagen-job {
        display: none;
    }

    .contenedor-info {
        text-align: center;
        max-width: 600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        flex: none; /* Quita el flex para que se centre */
    }
    .job-detalles {
        display: flex;
        justify-content: center;
        align-items: center;
    }

}