/* --- HERO ESPECÍFICO DE FORMACIÓN --- */
.training-hero {
    min-height: 45vh;
    background: linear-gradient(rgba(7, 28, 66, 0.4), rgba(7, 28, 66, 0.4)), 
                url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?q=80&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
}

/* --- CLÁUSULA LEGAL COMPARTIDA --- */
.legal-notice-box {
    border-left: 4px solid var(--accent-yellow-dark);
}

.font-xs {
    font-size: 10px;
    padding: 3px 6px;
    vertical-align: middle;
}

/* --- REDISEÑO DE TABS DE BOOTSTRAP (ESTILO PREMIUM CORPORATIVO) --- */
.custom-training-tabs .nav-link {
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(7, 28, 66, 0.02);
    transition: all 0.2s ease-in-out;
}

.custom-training-tabs .nav-link:hover {
    background: #f8fafc;
    color: var(--primary-blue-light);
    border-color: #cbd5e1;
}

.custom-training-tabs .nav-link.active {
    background-color: var(--primary-blue) !important;
    color: white !important;
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(7, 28, 66, 0.15);
}

/* --- DETALLES DE LAS TARJETAS DE PROGRAMAS --- */
.program-list-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(7, 28, 66, 0.06) !important;
}

.bg-primary-soft {
    background-color: rgba(7, 28, 66, 0.04);
}

.card-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Enlaces limpios para los listados de carreras */
.program-items-links li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: #475569;
    font-weight: 500;
}

.program-items-links li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-yellow-dark);
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    top: -1px;
}

/* --- AJUSTES DE RESPONSIVO MÓVIL --- */
@media (max-width: 767px) {
    .custom-training-tabs {
        flex-direction: column;
        width: 100%;
    }
    .custom-training-tabs .nav-link {
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }
    .training-hero {
        min-height: auto;
        padding: 50px 0;
    }
}