.trabaja-vacantes-section .container {
    max-width: 1400px; 
    width: 95%;
}

.vacantes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
}

.vacante-card {
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

.vacante-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.1);
    border-bottom: 4px solid var(--rojo-intra);
}

.vacante-img-box {
    width: 100%;
    height: 240px; 
    background-color: #e2e8f0; 
    overflow: hidden;
}

.vacante-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.vacante-card:hover .vacante-img-box img {
    transform: scale(1.05); 
}

.vacante-content {
    padding: 35px 25px;
}

.vacante-content h3 {
    font-size: 1.4rem;
    color: var(--azul-intra);
    font-weight: 700;
    margin-bottom: 15px;
}

.vacante-content p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    letter-spacing: -0.01em;
    word-spacing: -0.03em;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.terminos-texto-caja {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 12px;
    max-height: 120px; 
    overflow-y: auto;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.terminos-check-container {
    display: flex;
    align-items: center; 
    gap: 10px;
    background-color: #f1f5f9;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.terminos-check-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--rojo-intra); 
    margin: 0;
}

.terminos-check-container .check-label {
    font-size: 1.15rem !important;
    color: var(--azul-intra) !important;
    font-weight: 700 !important;
    cursor: pointer;
    margin: 0;
    text-transform: none; 
}

@media (max-width: 1300px) {
    .vacantes-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px; 
    }
}

@media (max-width: 600px) {
    .vacantes-grid { 
        grid-template-columns: 1fr; 
    }
    .vacante-img-box {
        height: 250px; 
    }
}