.corporate-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}

.corporate-hero .title {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.corporate-hero .subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.corporate-table-box {
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

/* Tabla */
.corporate-table {
    background: transparent;
}

.corporate-table thead th {
    background: #0f172a;
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.corporate-table tbody tr {
    transition: all 0.2s ease;
}

.corporate-table tbody tr:hover {
    background: #f8fafc !important;
}

.corporate-table td {
    vertical-align: middle;
    padding: 1rem;
}

/* Título del evento */
.event-title {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
}

/* Icono */
.event-icon {
    border-radius: 8px;
}

/* Categoría */
.category-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #475569;
}

.category-item .material-symbols-outlined {
    font-size: 18px;
    color: #2563eb;
}

/* Horas */
.hours-badge {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Estados */
.corporate-status {
    font-weight: 600;
    border-radius: 20px;
    padding: 0.4rem 0.9rem;
}

.certification-card {
    border-radius: 14px;
    border-left: 5px solid #3273dc;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: all .25s ease;
}

.certification-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.material-symbols-outlined {
    vertical-align: middle;
}