/* ======= SECCIÓN GENERAL ======= */
.careers-value {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.careers-value h2, .job-openings h2 {
    color: var(--dark-color);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ======= GRID DE CARDS ======= */
.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* ======= CARD ======= */
.value-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

/*.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(200, 40, 140, 0.25);
}
*/
/* ======= ICONO ======= */
.card-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* ======= TEXTO ======= */
.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* ======= SECCIÓN ======= */
.job-openings {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* ======= GRID ======= */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* ======= CARD ======= */
.job-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(200, 40, 140, 0.25);
}

/* ======= TEXTO ======= */
.job-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.job-meta i {
    color: var(--primary-color);
}

.job-description {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

/* ======= LISTA ======= */
.job-requirements {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.job-requirements li {
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
}

.job-requirements i {
    color: var(--primary-color);
    font-weight: bold;
    padding-left: 10px;
}

/* ======= BOTÓN ======= */
.job-apply {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 30px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.job-apply:hover {
    background: #000;
}
