/* Página de capacitación — colores alineados con .home-five (inicio / contacto Althemis):
   --primary-color: #08C16A, --heading-color, --base-color, --lighter-color */

/* Fichas ayuda y soporte (inicio de página) */
.training-support-cards {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.training-support-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 23, 38, 0.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: var(--heading-color, #001726);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.training-support-card:hover {
    text-decoration: none;
    color: var(--heading-color, #001726);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: rgba(0, 23, 38, 0.12);
}

.training-support-card:focus-visible {
    outline: 3px solid rgba(8, 193, 106, 0.45);
    outline-offset: 2px;
}

.training-support-card__circle {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    line-height: 1;
}

.training-support-card--ai .training-support-card__circle {
    background: #ede9fe;
    color: #6d28d9;
}

.training-support-card--whatsapp .training-support-card__circle {
    background: #d1fae5;
    color: #16a34a;
}

.training-support-card--whatsapp .training-support-card__circle .fab {
    font-size: 1.5rem;
}

.training-support-card--videos .training-support-card__circle {
    background: #dbeafe;
    color: #1d4ed8;
}

.training-support-card--email .training-support-card__circle {
    background: #ffedd5;
    color: #ea580c;
}

.training-support-card__label {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.training-help-intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    scroll-margin-top: 100px;
}

.training-help-intro .section-title h2 {
    color: var(--heading-color, #001726);
}

.training-help-intro p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--base-color, #696969);
}

.training-section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--base-color, #696969);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.training-section-rule {
    border: 0;
    height: 3px;
    /* Degradado coherente con el verde Althemis (.home-five) */
    background: linear-gradient(
        90deg,
        var(--primary-color, #08c16a) 0%,
        rgba(8, 193, 106, 0.2) 100%
    );
    border-radius: 2px;
    margin: 0 0 40px;
}

.training-category-block {
    margin-bottom: 36px;
}

.training-category-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--heading-color, #001726);
    margin-bottom: 16px;
}

.training-category-count {
    font-weight: 600;
    color: var(--base-color, #696969);
    opacity: 0.85;
}

.training-video-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-video-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.45;
    color: var(--heading-color, #001726);
}

.training-video-list .training-item-media-icon {
    flex: none;
    margin-top: 2px;
    color: var(--primary-color, #08c16a);
    opacity: 0.88;
    font-size: 15px;
    line-height: 1.2;
}

.training-video-list a {
    color: var(--primary-color, #08c16a);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.training-video-list a:hover {
    text-decoration: underline;
    color: #069852;
}

.training-video-list .is-placeholder {
    color: var(--heading-color, #001726);
    opacity: 0.82;
    cursor: default;
    font-weight: 500;
    border-bottom: 1px dashed rgba(8, 193, 106, 0.45);
}

.training-see-all {
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
}

.training-see-all button {
    background: none;
    border: 0;
    padding: 0;
    color: var(--primary-color, #08c16a);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.training-see-all button:hover {
    text-decoration: underline;
    color: #069852;
}

@media (max-width: 991px) {
    .training-category-block {
        margin-bottom: 28px;
    }
}
